/* ── News Detail Styles ───────────────────────────────────────────────── */
.news-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.news-detail-img {
    max-height: 600px;
    object-fit: cover;
}

.sidebar-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.news-list-img {
    height: 240px;
    object-fit: cover;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-left: 12px;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.share-btn:hover {
    opacity: 0.8;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.bg-facebook {
    background: #3b5998;
    border-color: #3b5998 !important;
}

.bg-dark {
    background: #000;
    border-color: #000 !important;
}

.bg-whatsapp {
    background: #25d366;
    border-color: #25d366 !important;
}

/* ── Sidebar ──────────────────────────────────────────────────────────── */
.sticky-sidebar {
    position: sticky;
    top: 130px;
}

/* ── News List Grid ───────────────────────────────────────────────────── */
.news-item-card {
    transition: transform 0.3s ease;
    border-radius: 10px !important;
}

.news-item-card:hover {
    transform: translateY(-5px);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2em;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.5em;
}

.transition-all {
    transition: all 0.3s ease;
}

.group:hover {
    background: #f8f9fa;
    border-color: var(--primary) !important;
    padding-left: 10px !important;
}

/* ── Helpers ─────────────────────────────────────────────────────────── */
.text-gold {
    color: #c9a84c !important;
}

.btn-gold {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
}

.btn-gold:hover {
    background: #b0913e;
    border-color: #b0913e;
    color: #fff;
}

.news-header-title {
    font-family: 'Playfair Display', serif;
}

.news-list-title {
    color: #0f2447;
}
