/* =========================================
   NEW PRESS / NEWS SECTION STYLES
   ========================================= */

.press-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    /* Light gray background to make white cards pop */
}

/* Introduction Text */
.press-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* News Card */
.news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #c0c0c0;
    /* Visible Grey Border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    text-decoration: none;
    /* Try to act as a link if wrapper is a link, but we usually use read more */
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.1);
    /* Red tint shadow on hover */
    border-color: rgba(128, 0, 0, 0.2);
}

/* Card Header: Date & Source */
.news-header {
    padding: 25px 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.news-date {
    background-color: #f0f0f0;
    color: #555;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

.news-source {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

.news-source img {
    height: 20px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.news-card:hover .news-source img {
    opacity: 1;
}

/* Card Body */
.news-body {
    padding: 0 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-family: 'Lora', serif;
    /* Use serif for news headlines */
    font-size: 1.35rem;
    /* Large enough */
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #800000;
    /* Corporate Primary */
}

.news-summary {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Limit to 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Card Footer */
.news-footer {
    padding: 20px 25px;
    border-top: 1px solid #f5f5f5;
    background-color: #fafafa;
    display: flex;
    justify-content: flex-end;
    /* Align link to right */
    align-items: center;
}

.news-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #800000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: #a00000;
}

.news-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-title {
        font-size: 1.25rem;
    }
}