/* News Section Styles */
.news-section {
    padding: 60px 0;
    background-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0F4B91;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.news-card__image {
    height: 200px;
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.05);
}

.news-card__content {
    padding: 20px;
}

.news-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.news-card__category {
    background: #0F4B91;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.news-card__date {
    font-size: 14px;
    color: #666;
}

.news-card__title {
    margin-bottom: 15px;
}

.news-card__title a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__title a:hover {
    color: #0F4B91;
}

.news-card__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.news-card__link {
    color: #0F4B91;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-card__link:hover {
    color: #1E5BA8;
}

.news-section__footer {
    text-align: center;
}

/* Placeholder Card Styles */
.news-card--placeholder {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px dashed rgba(13, 60, 115, 0.3);
    cursor: default;
}

.news-card--placeholder:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-card--placeholder .news-card__content {
    text-align: center;
    padding: 40px;
}

.news-card__title--coming-soon {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.6;
}

/* Events Section Styles */
.events-section {
    padding: 60px 0;
    background-color: transparent;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.event-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.event-card:hover {
    background-color: #e9ecef;
}

.event-card__date {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #0F4B91;
    color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.event-card__day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.event-card__month {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 4px;
}

.event-card__content {
    flex: 1;
}

.event-card__title {
    margin-bottom: 8px;
}

.event-card__title a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.event-card__title a:hover {
    color: #0F4B91;
}

.event-card__location,
.event-card__time {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.event-card__location {
    margin-bottom: 4px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn--primary {
    background-color: #0F4B91;
    color: white;
}

.btn--primary:hover {
    background-color: #1E5BA8;
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
}