/* ==========================================
   NEWS PAGE SPECIFIC STYLES
   ========================================== */

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    text-align: start;
}

.breadcrumbs a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--theme-1);
}

.breadcrumbs span {
    margin: 0 10px;
    color: var(--white);
}

/* Page Header with Parallax */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../img/RickyMartinFoundation-Hero-img-2-1.jpg');
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    padding: 100px 20px 100px;
    text-align: center;
    color: var(--white);
}

.page-header .info {
    padding: 100px 20px 100px;
}

.page-subtitle {
    font-family: 'Shadows Into Light', cursive;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    color: var(--white);
    margin-bottom: 10px;
}

.page-title {
    font-family: 'Noto Serif', serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.page-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.5;
}

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

.news-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

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

.news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--theme-1);
}

.news-category {
    color: var(--theme-1);
    font-weight: 600;
}

.news-date {
    color: var(--theme-1);
}

.news-location {
    color: var(--theme-1);
}

.news-title {
    font-family: 'Shadows Into Light', cursive;
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-0);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--theme-2);
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    font-family: 'Shadows Into Light', cursive;
    font-size: 18px;
    color: var(--theme-1);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--theme-3);
}

/* Featured News */
.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 20px;
}

.news-card.featured .news-image {
    height: 100%;
    min-height: 400px;
}

.news-card.featured .news-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card.featured .news-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.news-card.featured .news-excerpt {
    font-size: 16px;
    margin-bottom: 25px;
}

/* ==========================================
   NEWS PAGE RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .breadcrumbs {
        display: none;
    }

    .page-header {
        padding: 150px 20px 80px;
        margin-bottom: 60px;
        background-attachment: scroll;
    }

    .page-title {
        font-size: 32px;
    }

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

    .news-card.featured {
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-content {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 130px 15px 70px;
        margin-bottom: 40px;
        background-attachment: scroll;
    }

    .page-header .info {
        padding: 50px 10px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-description {
        font-size: 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .news-card.featured .news-image {
        height: auto;
        min-height: 250px;
    }

    .news-card.featured .news-content {
        padding: 30px 20px;
    }

    .news-card.featured .news-title {
        font-size: 22px;
    }

    .news-content {
        padding: 25px 20px;
    }

    .news-title {
        font-size: 18px;
    }

    .news-excerpt {
        font-size: 14px;
    }
}
