.dk-newsCommentsSection {
    margin-top: 2.5rem;
}

.dk-newsCommentsCard,
.dk-newsCommentFormCard,
.dk-newsCommentItem {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    padding: 1.5rem;
}

.dk-newsCommentsHeader,
.dk-newsCommentFormHeader {
    margin-bottom: 1.25rem;
}

.dk-sectionTitle,
.dk-cardTitle {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.dk-sectionIntro,
.dk-cardIntro {
    margin: 0;
    color: #667085;
}

.dk-newsCommentsActions,
.dk-newsCommentFormActions {
    display: flex;
    gap: 0.875rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.dk-newsCommentCreateWrap {
    margin-top: 1.5rem;
}

.dk-formGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.dk-formField--full {
    grid-column: 1 / -1;
}

.dk-label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.dk-input--full {
    width: 100%;
}

.dk-inputTextarea {
    min-height: 11rem;
}

.dk-fieldHint {
    margin-top: 0.35rem;
    font-size: 0.875rem;
    color: #667085;
}

.dk-inlineMessages {
    margin-bottom: 1rem;
}

.dk-newsCommentsList {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.dk-newsCommentMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.875rem;
    margin-bottom: 0.75rem;
    font-size: 0.925rem;
    color: #667085;
}

.dk-newsCommentAuthor {
    font-weight: 600;
    color: #101828;
}

.dk-newsCommentTitle {
    margin: 0 0 0.75rem;
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 700;
}

.dk-newsCommentText {
    color: #344054;
    line-height: 1.6;
}

.dk-btn-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 767px) {
    .dk-formGrid {
        grid-template-columns: 1fr;
    }

    .dk-newsCommentsCard,
    .dk-newsCommentFormCard,
    .dk-newsCommentItem {
        padding: 1.1rem;
        border-radius: 16px;
    }

    .dk-sectionTitle,
    .dk-cardTitle {
        font-size: 1.25rem;
    }
}