.comment__post {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.comment__post h4 {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: 1%;
    font-family: "SVN-Sigokae";
}

.box__list__cmt {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.list__comment {
    display: flex;
    flex-direction: column;
}

.list__comment>* {
    padding-top: 20px;
}

.list__comment>*+* {
    border-top: 1px solid #212121;
    margin-top: 20px;
}

.commnet__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commnet__item__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.commnet__item__info .user {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 146%;
    letter-spacing: 1%;
}

.commnet__item__info .date__update {
    color: #9E9E9E;
    font-weight: 400;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 145%;
    letter-spacing: 1%;

}

.commnet__item__info .user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.text__comment {
    color: #E0E0E0;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
}

.like__comment {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #9E9E9E;
    font-weight: 400;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 145%;
    letter-spacing: 1%;
}

.like-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.like-icon img {
    width: 16px;
    height: 16px;
}

.view__more__cmt {
    display: flex;
    margin: 0 auto;
    align-items: center;
    gap: 4px;
    color: #9E9E9E;
    font-weight: 500;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 2%;
    cursor: pointer;

}

.view__more__cmt img {
    width: 20px;
    height: 20px;
}

.comment-form {
    width: 100%;
    padding: 24px;
    border: 1px solid #212121;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.name__phone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.comment-form .name__phone input {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    background-color: #141414;
    border: 1px solid #212121;
    color: #ffffff;
}

.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #141414;
    border: 1px solid #212121;
    color: #ffffff;
}

.name__phone input::placeholder,
.comment-form textarea::placeholder {
    color: #757575;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
}

.comment-form button {
    background-color: #EE1C23;
    padding: 12px 20px;
    color: #FFFFFF;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 150%;
    border: none;
    letter-spacing: 2%;
    cursor: pointer;
}

.text-nocmt {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
}

.pending-comment {
    background-color: #131313;
    opacity: 0.85;
    margin-bottom: 15px;
}

.pending-comment .like__comment {
    pointer-events: none;
    opacity: 0.6;
}

.like__comment {
    cursor: pointer;
    user-select: none;
}

.like__comment:hover {
    opacity: 0.8;
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
}

.error-field {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.relate__post {
    background-color: #161616;

}

.relate__post .container {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
}

.relate__post .container h4 {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 136%;
    letter-spacing: 1%;
    font-family: "SVN-Sigokae";
}

.relate__post .container .posts__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 1024px) {
    .relate__post .container .posts__list {
        grid-template-columns: 1fr 1fr;
    }

}

@media screen and (max-width: 768px) {
    .name__phone {
        grid-template-columns: 1fr;
    }
    .relate__post .container h4 {
        font-size: 20px;
    }
    .relate__post .container .posts__list {
        grid-template-columns: 1fr;
    }

}