/* =============================================
   MEDIA.CSS
   Brand: #fe6e00 orange, #1a1a2e navy
   ============================================= */

/* ---- Page Hero (shared) ---- */
.page-hero {
    background: #1a1a2e;
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    border-bottom: 3px solid #fe6e00;
}
.page-hero-container { max-width: 700px; margin: 0 auto; }
.page-hero-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fe6e00;
    margin-bottom: 0.75rem;
}
.page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.page-hero-subtitle {
    font-size: 1.05rem;
    color: #b0b6c8;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Shared ---- */
.section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fe6e00;
    margin-bottom: 0.6rem;
}
.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.25;
}
.pf-filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
}
.pf-no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1rem;
}
.pf-reset-btn {
    background: none;
    border: none;
    color: #fe6e00;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: underline;
    padding: 0;
}

/* ---- Filter Bar ---- */
.media-filter-section {
    background: #f7f7fb;
    border-bottom: 1px solid #e8e8f0;
    padding: 1.25rem 1.5rem;
}
.media-filter-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.pf-filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    background: #ffffff;
    border: 1.5px solid #e8e8f0;
    color: #555;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.filter-btn:hover,
.filter-btn:focus-visible {
    border-color: #fe6e00;
    color: #fe6e00;
    background: #fff8f2;
}
.filter-btn.active {
    background: #fe6e00;
    border-color: #fe6e00;
    color: #ffffff;
    font-weight: 600;
}

/* ---- Shared container ---- */
.media-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- Featured Article ---- */
.media-featured-section {
    background: #ffffff;
    padding: 3rem 1.5rem 0;
}
.media-featured-card {
    background: #1a1a2e;
    border-radius: 14px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}
.media-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #fe6e00;
}
.media-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(254,110,0,0.15);
    border: 1px solid #fe6e00;
    color: #fe6e00;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    width: fit-content;
}
.media-featured-date {
    font-size: 0.8rem;
    color: #9aa0b8;
    font-weight: 500;
}
.media-featured-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    max-width: 760px;
}
.media-featured-excerpt {
    font-size: 0.95rem;
    color: #9aa0b8;
    line-height: 1.75;
    max-width: 720px;
}
.media-featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.media-source {
    font-size: 0.82rem;
    color: #9aa0b8;
    font-weight: 500;
}
.media-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fe6e00;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}
.media-read-more:hover,
.media-read-more:focus-visible {
    gap: 0.65rem;
    text-decoration: underline;
}

/* ---- Media Grid ---- */
.media-grid-section {
    background: #ffffff;
    padding: 3rem 1.5rem 5rem;
}
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ---- Media Card ---- */
.media-card {
    background: #ffffff;
    border: 1px solid #e8e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.media-card:hover {
    box-shadow: 0 6px 24px rgba(254,110,0,0.09);
    transform: translateY(-3px);
    border-color: #fe6e00;
}
.media-card.hidden { display: none; }

.media-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Type badges */
.media-type-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
}
.media-type-news      { background:#e8f4ff; color:#1a4ab5; }
.media-type-interview { background:#fff3e8; color:#c45200; }
.media-type-podcast   { background:#f0e8ff; color:#6c3483; }
.media-type-report    { background:#e8fff3; color:#0a6e3f; }
.media-type-press     { background:#f0f0f8; color:#3a3a6e; }

.media-date {
    font-size: 0.78rem;
    color: #888;
    font-weight: 500;
}
.media-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.45;
    flex: 1;
}
.media-card-excerpt {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.65;
}
.media-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f5;
}
.media-publication {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #888;
    font-weight: 500;
}
.media-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fe6e00;
    text-decoration: none;
    transition: text-decoration 0.2s;
}
.media-link:hover,
.media-link:focus-visible { text-decoration: underline; }

/* ---- Press Kit ---- */
.presskit-section {
    background: #f7f7fb;
    padding: 5rem 1.5rem;
}
.presskit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.presskit-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
    margin: 0.75rem 0 1.5rem;
}
.presskit-downloads {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.presskit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    border: 1.5px solid #e8e8f0;
    color: #1a1a2e;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    width: fit-content;
}
.presskit-btn:hover,
.presskit-btn:focus-visible {
    border-color: #fe6e00;
    color: #fe6e00;
    background: #fff8f2;
}

/* Press contact box */
.presskit-contact {
    background: #ffffff;
    border: 1px solid #e8e8f0;
    border-top: 4px solid #fe6e00;
    border-radius: 12px;
    padding: 2rem;
}
.presskit-contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}
.presskit-contact-desc {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.presskit-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}
.presskit-contact-item a {
    color: #1a1a2e;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.presskit-contact-item a:hover,
.presskit-contact-item a:focus-visible {
    color: #fe6e00;
    text-decoration: underline;
}
.presskit-response {
    font-size: 0.82rem;
    color: #888;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f5;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .media-grid      { grid-template-columns: repeat(2, 1fr); }
    .presskit-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
    .media-grid              { grid-template-columns: 1fr; }
    .media-filter-container  { flex-direction: column; align-items: flex-start; }
    .media-featured-card     { padding: 1.5rem; }
    .media-grid-section      { padding: 2.5rem 1.25rem 4rem; }
}
