.news-page {
    background: radial-gradient(circle at top, rgba(255, 241, 176, 0.4), transparent 45%),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 65%);
    min-height: 100%;
}

.news-hero {
    background: linear-gradient(135deg, #fff7d1 0%, #fff1b0 100%);
    border-radius: 28px;
    padding: 32px 24px;
    margin-bottom: 40px;
    box-shadow: 0 18px 40px rgba(232, 185, 35, 0.12);
}

.news-hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6c5508;
    margin-bottom: 0.5rem;
}

.news-hero-title {
    font-size: clamp(1.8rem, 1.3rem + 1.4vw, 2.5rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: #1f1f1f;
}

.news-hero-subtitle {
    color: #6a5d2b;
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.1rem);
    margin-bottom: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 576px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.news-span-2 {
    grid-column: span 2;
}

.news-span-3 {
    grid-column: span 3;
}

.news-span-4 {
    grid-column: span 4;
}

.news-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.news-card .card-body {
    padding: 1.5rem;
}

.news-card-title {
    font-size: 1.05rem;
    line-height: 1.4;
}

.news-card-image {
    height: 200px;
    object-fit: cover;
}

.news-card-placeholder {
    height: 200px;
}

.news-card-text {
    font-size: 0.95rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #6b6b6b;
}

.news-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.news-badge {
    background-color: #fff3cd;
    color: #6c5508;
    border: 1px solid #f1df9a;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-card-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8a6a09;
}

.transition-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}

.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.btn-news {
    background-color: #e8b923;
    border-color: #e8b923;
    color: #1f1f1f;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(232, 185, 35, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-news:hover {
    background-color: #d9aa20;
    border-color: #d9aa20;
    color: #1f1f1f;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(232, 185, 35, 0.4);
}

.btn-news-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
}

.btn-news-text {
    font-weight: 600;
}

.news-spinner {
    display: none;
}

.news-detail-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.news-content-wrapper {
    max-width: 980px;
    width: 100%;
    padding: 0 1rem;
}

.breadcrumb-wrapper {
    margin-top: -22px;
}

.breadcrumb-news {
    background-color: #fff3cd;
    border: 1px solid #f1df9a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.breadcrumb-news .breadcrumb-item a {
    color: #6c5508;
    font-weight: 600;
}

.news-article {
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(1.5rem, 1rem + 1vw, 2.5rem);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.news-article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #d6a319 0%,
        #fff1a6 35%,
        #e8b923 55%,
        #fff7c7 75%,
        #d6a319 100%
    );
    background-size: 220% 100%;
    animation: goldShimmer 6s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(232, 185, 35, 0.35);
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.blog-post-title {
    font-size: clamp(1.6rem, 1.2rem + 1vw, 2.2rem);
    line-height: 1.25;
}

.blog-post-content {
    font-size: clamp(1rem, 0.95rem + 0.4vw, 1.15rem);
    line-height: 1.9;
}

.blog-post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.news-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: #6b6b6b;
    font-size: 0.95rem;
}

.news-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #f9f7ef;
    border: 1px solid #efe3b6;
    color: #5a4a12;
}

.news-detail-image {
    max-height: 420px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 575.98px) {
    .news-content-wrapper {
        padding: 0;
        max-width: 100%;
    }
    .news-detail-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .news-article {
        padding: 1.25rem;
        border-radius: 18px;
    }
    .breadcrumb-news {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}
