/* ---=== Press/News Page ===--- */
.press-full-page .section-header {
    margin-bottom: 4rem;
    text-align: left;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.article-card {
    background-color: var(--dark-blue-card, #0A142F);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--light-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.article-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-source {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-read-more {
    font-weight: 700;
    align-self: flex-start;
    margin-top: auto;
}

.article-read-more:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.news-rect-layout .article-grid {
    grid-template-columns: 1fr;
    gap: 2rem; 
}

.news-rect-layout .article-card {
    display: flex;
    flex-direction: row; 
    background: #FFFFFF; 
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-rect-layout .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.news-rect-layout .article-image {
    display: block; 
    flex: 0 0 320px;
    max-height: 280px;
}

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

.news-rect-layout .article-content {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
}

.news-rect-layout .article-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.news-rect-layout .article-source {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}
.news-rect-layout .article-excerpt {
    color: #555;
    flex-grow: 1;
}

.news-rect-layout .article-read-more {
    display: inline-block;
    margin-top: 1.5rem;
    align-self: flex-start;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-rect-layout .article-read-more:hover {
    color: var(--primary-color);
}

.news-rect-layout {
    background-color: var(--dark-bg);
    padding: 2rem 0;
}

.news-rect-layout .section-header {
    margin-bottom: 4rem;
}

.news-rect-layout .section-header h2 {
    color: var(--text-color);
}

@media (max-width: 992px) {
    .news-rect-layout .article-card {
        height: auto;
    }
    
    .news-rect-layout .article-image {
        flex: 0 0 250px;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .news-rect-layout .article-card {
        flex-direction: column;
    }
    
    .news-rect-layout .article-image {
       flex-basis: 200px;
    }
    
    .news-rect-layout .article-content {
        padding: 1.5rem;
    }
} 