.news-section {
    margin-bottom: 2rem;
}

/* Header with large title and NEWS tab */
.news-header {
    position: relative;
}

.news-main-title > a {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 0;
    margin-right: 120px; /* Space for NEWS tab */
    text-decoration: none;
    transition: color 0.3s ease;
}
.news-main-title > a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}
.news-tab {
    /*position: absolute;*/
    /*top: 0;*/
    /*right: 0;*/
    background-color: #989C9F;
    color: #fff;
    /* font-size: 110%; */
    font-size: 12px;
    text-align: center;
    padding-top: .9em;
    padding-bottom: 0.9em;
    margin-bottom: 12px;
    width: 141px;
    text-transform: uppercase;
}

/* News content */
.news-content {
    margin-top: 1.5rem;
}

.news-intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Main image */
.news-main-image {
    margin-top: 2rem;
}

.news-main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.placeholder-image {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Image caption */
.news-caption {
    margin-top: 1rem;
}

.news-caption p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
}

/* Recent news sidebar */
/*.recent-news-section {*/
/*    background: white;*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*    padding: 1.5rem;*/
/*}*/

.recent-news-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    flex-direction: column;
}

.recent-news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-news-image {
    flex-shrink: 0;
    /*width: 100px;*/
    /*height: 80px;*/
    border-radius: 8px;
    overflow: hidden;
}

.recent-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-thumb {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.recent-news-content {
    flex: 1;
}

.recent-news-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
}

.recent-news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-news-title a:hover {
    color: var(--secondary-color, #007bff);
}

/* Responsive design */
@media (max-width: 768px) {
    .news-main-title {
        font-size: 2rem;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .news-tab {
        position: static;
        margin-bottom: 1rem;
    }

    .news-intro-text {
        font-size: 1rem;
    }

    .recent-news-section {
        padding: 1.25rem;
        margin-top: 2rem;
    }

    .recent-news-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .recent-news-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .news-main-title {
        font-size: 1.75rem;
    }

    .news-tab-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
