/* Newsroom Page Styles - Company News Layout */

.newsroom-section {
    min-height: 100vh;
    padding: 140px 2rem 4rem;
    position: relative;
    background: #000000;
    background-image: 
        linear-gradient(rgba(255, 99, 71, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 99, 71, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    overflow: hidden;
}

.newsroom-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Header Section */
.newsroom-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.newsroom-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    font-family: 'Outfit', sans-serif;
}

.newsroom-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Outfit', sans-serif;
}

/* Featured News Card */
.newsroom-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 99, 71, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 0 20px rgba(255, 99, 71, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.newsroom-featured-card:hover {
    border-color: rgba(255, 99, 71, 0.6);
    box-shadow: 0 0 30px rgba(255, 99, 71, 0.4);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.featured-card-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newsroom-featured-card:hover .featured-image {
    transform: scale(1.05);
}

.featured-card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
}

.featured-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.featured-headline {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2rem 0;
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
}

.featured-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.newsroom-featured-card:hover .featured-read-more {
    color: #FF6347;
    gap: 1rem;
}

/* News Cards Grid */
.newsroom-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 99, 71, 0.3);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 99, 71, 0.15);
    min-height: 450px;
}

.news-card:hover {
    border-color: rgba(255, 99, 71, 0.6);
    box-shadow: 0 0 25px rgba(255, 99, 71, 0.3);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.news-card-branding {
    margin-bottom: 1.5rem;
}

.news-card-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF6347;
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
}

.news-card-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Outfit', sans-serif;
}

.news-card-headline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    color: #FF6347;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
    flex-grow: 1;
}

.news-card-event {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.news-card-metrics {
    margin-bottom: 1.5rem;
}

.metric-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Outfit', sans-serif;
}

.news-card-image {
    width: 100%;
    height: 200px;
    margin-top: auto;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .card-image {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .newsroom-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .newsroom-section {
        padding: 120px 1.5rem 3rem;
    }

    .newsroom-featured-card {
        grid-template-columns: 1fr;
    }

    .featured-card-image {
        min-height: 300px;
    }

    .featured-card-content {
        padding: 2rem;
    }

    .newsroom-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .newsroom-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .newsroom-title {
        font-size: 2rem;
    }

    .newsroom-description {
        font-size: 1rem;
    }

    .featured-card-content {
        padding: 1.5rem;
    }

    .featured-headline {
        font-size: 1.5rem;
    }

    .news-card {
        padding: 1.5rem;
    }

    .news-card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .newsroom-section {
        padding: 100px 1rem 2rem;
    }

    .newsroom-header {
        margin-bottom: 2rem;
    }

    .newsroom-title {
        font-size: 1.75rem;
    }

    .featured-card-image {
        min-height: 250px;
    }

    .featured-card-content {
        padding: 1.25rem;
    }

    .featured-headline {
        font-size: 1.25rem;
    }

    .news-card {
        padding: 1.25rem;
    }

    .news-card-image {
        height: 150px;
    }
}
