/* ═══════════════════════════════════════════════════════════════════════════════
   EPISODE ONE — NETWORKS — final clean version
   ═══════════════════════════════════════════════════════════════════════════════ */

.networks-page {
    background: #111;
    min-height: 100vh;
    padding-bottom: 100px;
}

/* ── Browse header ───────────────────────────────────────────────────────────── */
.networks-header {
    background: #1a1a1a;
    border-bottom: 1px solid #242424;
    padding: 52px 0 40px;
}

.networks-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.networks-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 8px;
}

.networks-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: #f0ece4;
    line-height: 1.1;
    margin-bottom: 8px;
}

.networks-subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #666;
}

.networks-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 40px 0;
}

.networks-body--wide { max-width: 1200px; }

/* ── Network browse cards ────────────────────────────────────────────────────── */
.networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.network-card {
    background: #1a1a1a;
    border: 1px solid #242424;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
    overflow: hidden;
}

.network-card:hover { border-color: #D4AF37; }

.network-card-posters {
    display: flex;
    height: 100px;
    overflow: hidden;
    gap: 2px;
    background: #111;
}

.network-card-posters img {
    flex: 1;
    object-fit: cover;
    min-width: 0;
    filter: brightness(0.75);
    transition: filter 0.2s;
}

.network-card:hover .network-card-posters img { filter: brightness(0.9); }

.network-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.network-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #f0ece4;
    display: block;
}

.network-card-tone {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #666;
    font-style: italic;
    display: block;
}

.network-card-genres {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.network-card-genre-pill {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
    border: 1px solid #2a2a2a;
    padding: 3px 8px;
}

.network-card-count {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D4AF37;
    display: block;
    margin-top: 4px;
}

.network-card-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    display: block;
}

.networks-empty {
    padding: 60px 0;
    text-align: center;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #555;
}

/* ── Network detail header ───────────────────────────────────────────────────── */
.network-detail-header {
    background: #1a1a1a;
    border-bottom: 3px solid #D4AF37;
    padding: 0;
}

.network-detail-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 40px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.network-back-light {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}
.network-back-light:hover { color: #D4AF37; }

/* Stats — naked numbers, no box */
.network-header-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.network-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.network-stat-divider {
    width: 1px;
    height: 36px;
    background: #333;
    flex-shrink: 0;
}

.network-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #f0ece4;
    line-height: 1;
    font-size: 2.4rem;
}

.network-stat-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    white-space: nowrap;
}

.network-detail-header-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 40px 40px;
}

.network-detail-eyebrow {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 10px;
    display: block;
}

.network-detail-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    color: #f0ece4;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.network-detail-tone {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
    max-width: 560px;
}

/* ── Section titles ──────────────────────────────────────────────────────────── */
.network-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #f0ece4;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #242424;
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.network-section-count {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    color: #555;
}

.network-intel { margin-bottom: 56px; }

/* ── What They Buy — HBO-style white columns ─────────────────────────────────── */
.network-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.network-profile-card {
    background: #ffffff;
    border-radius: 0;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: none;
}

.network-profile-card--avoid { border: none; }
.network-profile-card:not(.network-profile-card--avoid) { border: none; }

.network-profile-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    margin: 0;
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.network-profile-title::before { display: none; }
.network-profile-card--avoid .network-profile-title { color: #aaa; }

.network-profile-text {
    font-family: 'Georgia', 'Cormorant Garamond', serif;
    font-size: 17px;
    color: #111;
    line-height: 1.7;
    font-weight: 400;
    margin: 24px 0 0;
}

@media (max-width: 900px) {
    .network-profile-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .network-profile-grid { grid-template-columns: 1fr; }
}

/* ── Genre tags ──────────────────────────────────────────────────────────────── */
.network-genres { margin-bottom: 48px; }

.network-genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.network-genre-tag {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    border: 1px solid #242424;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.network-genre-count {
    color: #D4AF37;
    font-size: 12px;
    font-weight: 700;
}

/* ── Shows section ───────────────────────────────────────────────────────────── */
.network-shows-section { margin-bottom: 56px; }

.network-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    max-height: 560px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a transparent;
    padding-right: 4px;
}

.network-shows-grid::-webkit-scrollbar { width: 4px; }
.network-shows-grid::-webkit-scrollbar-track { background: transparent; }
.network-shows-grid::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 2px; }

.network-show-card {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #1e1e1e;
    display: block;
    text-decoration: none;
}

.network-show-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.network-show-card:hover img { transform: scale(1.04); }

.network-show-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.network-show-no-image span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    color: #444;
    text-align: center;
}

.network-show-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
    gap: 3px;
}

.network-show-card:hover .network-show-overlay { opacity: 1; }

.network-show-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.network-show-creators {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    color: rgba(255,255,255,0.6);
}

.network-show-read-btn {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-top: 4px;
}

/* ── Catalog grid ────────────────────────────────────────────────────────────── */
.network-catalog-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    color: #555;
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 300;
}

.network-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
    max-height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a transparent;
    padding-right: 4px;
}

.network-catalog-grid::-webkit-scrollbar { width: 4px; }
.network-catalog-grid::-webkit-scrollbar-track { background: transparent; }
.network-catalog-grid::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 2px; }

.network-catalog-card {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #1a1a1a;
    display: block;
    text-decoration: none;
}

.network-catalog-card--archive {
    outline: 2px solid #D4AF37;
    outline-offset: -2px;
}

.network-catalog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    filter: brightness(0.7);
}

.network-catalog-card--archive img { filter: brightness(0.85); }
.network-catalog-card:hover img { transform: scale(1.04); filter: brightness(1); }

.network-catalog-no-poster {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.network-catalog-no-poster span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    color: #333;
    text-align: center;
}

.network-catalog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px;
    gap: 2px;
}

.network-catalog-card:hover .network-catalog-overlay { opacity: 1; }

.network-catalog-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.network-catalog-year {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    color: rgba(255,255,255,0.5);
}

.network-catalog-badge {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-top: 3px;
}

/* ── Inline filter tabs ──────────────────────────────────────────────────────── */
.network-inline-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.network-filter-tab {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    background: transparent;
    border: 1px solid #242424;
    padding: 5px 12px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.network-filter-tab:hover { border-color: #D4AF37; color: #D4AF37; }

.network-filter-tab.active {
    border-color: #D4AF37;
    color: #D4AF37;
    background: rgba(212,175,55,0.08);
}

.network-filter-count {
    font-size: 9px;
    color: #D4AF37;
    font-weight: 700;
}

.network-filter-tab:not(.active) .network-filter-count { color: #444; }

/* ── Mobile ──────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .networks-header-inner,
    .networks-body { padding-left: 20px; padding-right: 20px; }
    .networks-title { font-size: 1.8rem; }
    .networks-grid { grid-template-columns: 1fr; }
    .network-detail-name { font-size: 3.5rem; }
    .network-detail-header-inner { padding: 20px 20px 16px; flex-direction: column; gap: 16px; }
    .network-detail-header-bottom { padding: 16px 20px 28px; }
    .network-header-stats { gap: 20px; }
    .network-profile-card { padding: 24px 20px; }
    .network-shows-grid { max-height: 400px; }
    .network-catalog-grid { max-height: 360px; }
}/* ── What They Buy — HBO-style rounded columns ───────────────────────────────── */
.network-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.network-profile-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Subtle inner texture — thin horizontal line near top */
.network-profile-card::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 32px;
    right: 32px;
    height: 1px;
    background: #e8e8e8;
}

/* Gold bar at bottom */
.network-profile-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E8C547, #D4AF37, #B8960C);
    border-radius: 0 0 8px 8px;
}

.network-profile-card--avoid::after {
    background: linear-gradient(90deg, #D4AF37, #B8960C);
}

.network-profile-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #B8960C;
    margin: 0;
    display: block;
    padding-bottom: 20px;
}

.network-profile-title::before { display: none; }
.network-profile-card--avoid .network-profile-title { color: #B8960C; }

.network-profile-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.75;
    font-weight: 400;
    margin: 0;
    padding-bottom: 12px;
}

@media (max-width: 900px) {
    .network-profile-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .network-profile-grid { grid-template-columns: 1fr; }
}

/* ── Genre tags ──────────────────────────────────────────────────────────────── */
.network-genres { margin-bottom: 48px; }

.network-genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.network-genre-tag {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    border: 1px solid #242424;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.network-genre-count {
    color: #D4AF37;
    font-size: 12px;
    font-weight: 700;
}

/* ── Shows section ───────────────────────────────────────────────────────────── */
.network-shows-section { margin-bottom: 56px; }

.network-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    max-height: 560px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a transparent;
    padding-right: 4px;
}

.network-shows-grid::-webkit-scrollbar { width: 4px; }
.network-shows-grid::-webkit-scrollbar-track { background: transparent; }
.network-shows-grid::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 2px; }

.network-show-card {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #1e1e1e;
    display: block;
    text-decoration: none;
}

.network-show-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.network-show-card:hover img { transform: scale(1.04); }

.network-show-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.network-show-no-image span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    color: #444;
    text-align: center;
}

.network-show-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
    gap: 3px;
}

.network-show-card:hover .network-show-overlay { opacity: 1; }

.network-show-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.network-show-creators {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    color: rgba(255,255,255,0.6);
}

.network-show-read-btn {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-top: 4px;
}

/* ── Catalog grid ────────────────────────────────────────────────────────────── */
.network-catalog-intro {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    color: #555;
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 300;
}

.network-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
    max-height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a transparent;
    padding-right: 4px;
}

.network-catalog-grid::-webkit-scrollbar { width: 4px; }
.network-catalog-grid::-webkit-scrollbar-track { background: transparent; }
.network-catalog-grid::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 2px; }

.network-catalog-card {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #1a1a1a;
    display: block;
    text-decoration: none;
}

.network-catalog-card--archive {
    outline: 2px solid #D4AF37;
    outline-offset: -2px;
}

.network-catalog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    filter: brightness(0.7);
}

.network-catalog-card--archive img { filter: brightness(0.85); }
.network-catalog-card:hover img { transform: scale(1.04); filter: brightness(1); }

.network-catalog-no-poster {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.network-catalog-no-poster span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    color: #333;
    text-align: center;
}

.network-catalog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px;
    gap: 2px;
}

.network-catalog-card:hover .network-catalog-overlay { opacity: 1; }

.network-catalog-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.network-catalog-year {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    color: rgba(255,255,255,0.5);
}

.network-catalog-badge {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-top: 3px;
}

/* ── Inline filter tabs ──────────────────────────────────────────────────────── */
.network-inline-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.network-filter-tab {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    background: transparent;
    border: 1px solid #242424;
    padding: 5px 12px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.network-filter-tab:hover { border-color: #D4AF37; color: #D4AF37; }

.network-filter-tab.active {
    border-color: #D4AF37;
    color: #D4AF37;
    background: rgba(212,175,55,0.08);
}

.network-filter-count {
    font-size: 9px;
    color: #D4AF37;
    font-weight: 700;
}

.network-filter-tab:not(.active) .network-filter-count { color: #444; }

/* ── Mobile ──────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .networks-header-inner,
    .networks-body { padding-left: 20px; padding-right: 20px; }
    .networks-title { font-size: 1.8rem; }
    .networks-grid { grid-template-columns: 1fr; }
    .network-detail-name { font-size: 3.5rem; }
    .network-detail-header-inner { padding: 20px 20px 16px; flex-direction: column; gap: 16px; }
    .network-detail-header-bottom { padding: 16px 20px 28px; }
    .network-header-stats { gap: 20px; }
    .network-profile-card { padding: 24px 20px; }
    .network-shows-grid { max-height: 400px; }
    .network-catalog-grid { max-height: 360px; }
}

/* ── Unaired & Unproduced Pilots ─────────────────────────────────────────────── */
.unaired-pilots-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.unaired-pilot-card {
    background: #1a1a1a;
    border: 1px solid #242424;
    border-left: 3px solid #D4AF37;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.unaired-pilot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.unaired-pilot-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #f0ece4;
    display: block;
    line-height: 1.2;
}

.unaired-pilot-year {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    color: #555;
    display: block;
    margin-top: 3px;
}

.unaired-pilot-status {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.unaired-pilot-status--written   { color: #888; border: 1px solid #333; }
.unaired-pilot-status--filmed    { color: #D4AF37; border: 1px solid #D4AF37; }
.unaired-pilot-status--screened  { color: #7eb8f7; border: 1px solid #7eb8f7; }
.unaired-pilot-status--leaked    { color: #e07070; border: 1px solid #e07070; }

.unaired-pilot-creators {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0;
}

.unaired-pilot-creators a {
    color: #D4AF37;
    text-decoration: none;
}
.unaired-pilot-creators a:hover { text-decoration: underline; }

.unaired-pilot-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.unaired-pilot-intel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #242424;
    padding-top: 14px;
}

.unaired-pilot-intel-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: start;
}

.unaired-pilot-intel-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D4AF37;
    padding-top: 2px;
}

.unaired-pilot-intel-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    font-weight: 300;
}

.unaired-pilot-read-btn {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D4AF37;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.2s;
}

.unaired-pilot-read-btn:hover { color: #f0ece4; }

/* ── Add to bottom of networks.css ──────────────────────────────────────────── */

.networks-search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    padding: 12px 16px;
    max-width: 440px;
}

.networks-search-wrap svg {
    flex-shrink: 0;
    color: rgba(255,255,255,0.5);
}

#networks-search {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.3px;
}

#networks-search::placeholder {
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

.networks-search-count {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    white-space: nowrap;
}

.networks-no-results {
    text-align: center;
    padding: 80px 0;
    color: #888;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
}