.acd-comments {
    --acd-comment-avatar-size: 52px;
    background: #06080d;
    color: #fff;
    padding: 8px;
}

.acd-comments__title {
    margin: 0;
    font-size: clamp(28px, 2.8vw, 46px);
    line-height: 1.1;
    color: #f5f5f5;
}

.acd-comments__list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.acd-comments__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.acd-comments__avatar img {
    width: var(--acd-comment-avatar-size);
    height: var(--acd-comment-avatar-size);
    border-radius: 999px;
    object-fit: cover;
    display: block;
}

.acd-comments__body {
    min-width: 0;
}

.acd-comments__author {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: clamp(18px, 1.7vw, 30px);
    line-height: 1.2;
    font-weight: 700;
}

.acd-comments__text {
    margin: 0;
    color: #d8d8d8;
    font-size: clamp(15px, 1.25vw, 23px);
    line-height: 1.32;
}

.acd-comments__text p {
    margin: 0;
}

.acd-comments__empty {
    margin: 22px 0 0;
    color: #d8d8d8;
}

.acd-comments__form-wrap {
    margin-top: 30px;
    border-top: 1px solid #2c2f36;
    padding-top: 28px;
}

.acd-comments__form-title {
    margin: 0;
    color: #f5f5f5;
    font-size: clamp(28px, 2.4vw, 44px);
    line-height: 1.1;
    font-weight: 700;
}

.acd-comments__form {
    margin-top: 18px;
}

.acd-comments__form p {
    margin: 0;
}

.acd-comments__guest-field + .acd-comments__guest-field {
    margin-top: 10px;
}

.acd-comments__guest-input {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 14px 16px;
    background: #1f2329;
    color: #fff;
}

.acd-comments__comment-inline {
    width: 100%;
    min-height: 114px;
    height: 114px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    background: #2b2d31;
    overflow: hidden;
    padding-right: 10px;
}

.acd-comments__comment-input {
    flex: 1 1 auto;
    width: 100%;
    border: 0;
    outline: 0;
    resize: none;
    min-height: 100%;
    height: 100%;
    padding: 20px 16px;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
}

.acd-comments__comment-input::placeholder,
.acd-comments__guest-input::placeholder {
    color: #d4d4d4;
}

.acd-comments__submit-wrap {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0 8px 10px;
    height: 64px;
}

.acd-comments__submit {
    width: 126px;
    min-width: 126px;
    height: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background-color: #B57E10;
    background-image: linear-gradient(
        90deg,
        #B57E10 0%,
        #F9DF7B 33%,
        #F9DF7B 55%,
        #B57E10 77%,
        #F9DF7B 100%
    );
    color: #151515;
    font-size: 30px;
    font-weight: 700;
    transition: filter 0.2s ease;
    padding: 0 18px;
}

.acd-comments__submit:hover {
    filter: brightness(1.05);
}

.acd-comments__must-login {
    margin-top: 16px;
}

@media (max-width: 767px) {
    .acd-comments__title {
        font-size: 32px;
    }

    .acd-comments__author {
        font-size: 20px;
    }

    .acd-comments__text {
        font-size: 16px;
    }

    .acd-comments__form-title {
        font-size: 30px;
    }

    .acd-comments__comment-input {
        font-size: 18px;
        min-height: 100%;
        padding: 16px 14px;
    }

    .acd-comments__submit {
        width: 110px;
        min-width: 110px;
        font-size: 22px;
        min-height: 44px;
    }
}
