.hc-side-list > *:not(:last-child) {
    margin-bottom: 22px !important;
}

.hc-article + .hc-article {
    margin-top: 36px;
}

/* Eğer sonsuz yükleme ile eklenen haberler özel bir kapsayıcıda ise örn. .hc-infinite-list, ona da boşluk ekleyin */
.hc-infinite-list > *:not(:last-child) {
    margin-bottom: 36px !important;
}

/* Ana haber ile ilk lazy yüklenen haber arasına boşluk ekle */
#lazy-articles > article:first-child {
    margin-top: 36px;
}

/* ---------- Yorumlar ---------- */
.hc-comments {
    margin: 36px 0 8px;
    padding: 24px;
    background: var(--hc-card, #fff);
    border: 1px solid var(--hc-border, #e3e6ef);
    border-radius: 12px;
}
.hc-comments-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hc-primary);
    margin: 0 0 18px;
}
.hc-comments-count {
    color: var(--hc-muted, #6b7280);
    font-weight: 500;
    font-size: 1rem;
}
.hc-comment-alert {
    background: #e9f7ef;
    border: 1px solid #c3e6cb;
    color: #1e7e34;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: .9rem;
}
.hc-comment-form {
    margin-bottom: 24px;
}
.hc-comment-form-row {
    margin-bottom: 12px;
}
.hc-comment-input,
.hc-comment-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--hc-border, #d4d8e3);
    border-radius: 8px;
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.hc-comment-input:focus,
.hc-comment-textarea:focus {
    outline: none;
    border-color: var(--hc-primary);
    box-shadow: 0 0 0 3px rgba(107,13,47,.1);
}
.hc-comment-textarea {
    resize: vertical;
    min-height: 80px;
}
.hc-comment-submit {
    background: var(--hc-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 26px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: background .15s;
}
.hc-comment-submit:hover {
    background: #5a0b27;
}
.hc-comment-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hc-comment-empty {
    color: var(--hc-muted, #6b7280);
    font-style: italic;
    margin: 0;
}
.hc-comment-item {
    padding: 14px 16px;
    background: #faf9fc;
    border: 1px solid #ede8f2;
    border-radius: 8px;
}
.hc-comment-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    gap: 10px;
}
.hc-comment-author {
    font-weight: 700;
    color: var(--hc-text, #1a1f2b);
    font-size: .92rem;
}
.hc-comment-date {
    color: var(--hc-muted, #6b7280);
    font-size: .78rem;
    white-space: nowrap;
}
.hc-comment-body {
    color: #333a47;
    font-size: .92rem;
    line-height: 1.55;
    white-space: pre-wrap;
}
