/* NC in Media Page Styles */

.media-hero {
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
    color: white;
    background-image: url('../ncmedia/nc.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.media-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(45, 45, 45, 0.7)50%, rgba(255, 255, 255, 1));
    z-index: 1;
}

.media-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.media-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.media-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.media-hero h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 900;
    color: #d4a373;
}

.media-hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 30px auto 0;
    opacity: 0.9;
    color: #4a371e;
}

/* Stories Section */
.media-stories-section {
    padding: 100px 10%;
    background: #ffffff;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 3px;
    background: #d4a373;
}

.media-stories-section h2 {
    font-size: 4rem;
    font-family: 'Oswald', sans-serif;
    color: #333;
}

.media-stories-section h2 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #4a7c59;
}

/* Filter Buttons */
.media-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid #e0e0e0;
    background: #fdfcf9;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #4a7c59;
    background: #f0f4f1;
}

.filter-btn.active {
    background: #4a7c59;
    background: #6b705c;
    color: white;
    border-color: #6b705c;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.media-card {
    background: #fcfbf8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.media-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.media-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-card:hover .media-card-img img {
    transform: scale(1.1);
}

.media-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d4a373;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.media-category-badge.research {
    background: #6b705c;
}

.media-category-badge.publication {
    background: #4a7c59;
}

.media-card-content {
    padding: 30px;
}

.media-publisher {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #d4a373;
    margin-bottom: 15px;
    display: block;
}

.media-card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #222;
}

.media-author {
    font-size: 14px;
    color: #888;
}

/* Podcast Section */
.podcast-section {
    padding: 100px 10%;
    background: #fdfcf9;
    border-top: 1px solid #eee;
}

.podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.podcast-card {
    background: #463d36;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    gap: 30px;
    color: white;
    transition: all 0.4s ease;
    cursor: pointer;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.podcast-thumb {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.podcast-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.podcast-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #d4a373;
    margin-bottom: 15px;
}

.podcast-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.podcast-host {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 25px;
}

.podcast-link {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d4a373;
    text-decoration: none;
}

/* Collaboration CTA */
.media-collab-section {
    padding: 100px 10%;
    background: #ffffff;
}

.collab-banner {
    background: #6b705c;
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.collab-banner::before,
.collab-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.collab-banner::before {
    top: -150px;
    right: -50px;
}

.collab-banner::after {
    bottom: -150px;
    left: -50px;
}

.collab-content {
    position: relative;
    z-index: 2;
}

.collab-banner h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.collab-banner p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.collab-btn {
    background: #d4a373;
    color: #222;
    padding: 15px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.collab-btn:hover {
    background: #c39262;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .media-hero h1 {
        font-size: 4rem;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .media-hero h1 {
        font-size: 3rem;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .podcast-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .collab-banner h2 {
        font-size: 2.5rem;
    }
}