
/* ── Entertainment Page ─────────────────────── */
.ent-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* ── Hero ── */
.ent-hero {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1a4e 50%, #0d2137 100%);
    color: #fff;
    border-radius: 0 0 8px 8px;
}
.ent-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 0.25rem;
}
.ent-hero-sub {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ── Featured Cards (top 2 with images) ── */
.ent-featured-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-rule);
}
.ent-featured {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.ent-featured-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a1a2e;
}
.ent-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ent-featured-body {
    padding: 0.8rem 1rem;
}
.ent-featured-body .ent-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}
.ent-featured-body h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.3rem;
}
.ent-featured-body h2 a {
    text-decoration: none;
    color: var(--color-text);
}
.ent-featured-body h2 a:hover {
    color: var(--color-accent);
}
.ent-featured-body .ent-summary {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ent-featured-body .ent-meta {
    display: flex;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--color-text-light);
}

/* ── Filter Pills ── */
.ent-filters {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.ent-filter {
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--color-text-secondary);
}
.ent-filter:hover {
    border-color: var(--pill-color, var(--color-accent));
    color: var(--pill-color, var(--color-accent));
}
.ent-filter.active {
    background: var(--pill-color, var(--color-accent));
    border-color: var(--pill-color, var(--color-accent));
    color: #fff;
}

/* ── Feed Cards ── */
.ent-feed {
    display: flex;
    flex-direction: column;
}
.ent-card {
    display: flex;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--color-border-light);
    align-items: flex-start;
}
.ent-card:last-child {
    border-bottom: none;
}
.ent-card-body {
    flex: 1;
    min-width: 0;
}
.ent-card .ent-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.15rem;
}
.ent-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.2rem;
}
.ent-card h3 a {
    text-decoration: none;
    color: var(--color-text);
}
.ent-card h3 a:hover {
    color: var(--color-accent);
}
.ent-card .ent-summary {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-bottom: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ent-card .ent-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--color-text-light);
}
.ent-source {
    font-weight: 600;
}
.ent-time {
    opacity: 0.7;
}
.ent-region::before {
    content: "\b7 ";
}
.ent-time::before {
    content: "\b7 ";
}

/* ── Thumbnail ── */
.ent-thumb {
    width: 100px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-bg-light);
}
.ent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Sources ── */
.ent-sources {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    color: var(--color-text-light);
    padding: 1rem 0 2rem;
    border-top: 1px solid var(--color-border-light);
    margin-top: 0.5rem;
}

/* ── Show More ── */
.ent-show-more {
    display: block;
    width: 100%;
    padding: 0.7rem;
    margin-top: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-bg-light);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.15s;
}
.ent-show-more:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* ── Empty ── */
.ent-empty {
    text-align: center;
    padding: 3rem;
    font-family: var(--font-sans);
    color: var(--color-text-light);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .ent-hero h1 { font-size: 1.8rem; }
    .ent-featured-section { grid-template-columns: 1fr; }
    .ent-featured-img { height: 180px; }
    .ent-thumb { width: 88px; height: 62px; }
}
@media (max-width: 480px) {
    .ent-hero { padding: 1.2rem 0.8rem 1rem; margin-bottom: 1rem; }
    .ent-hero h1 { font-size: 1.5rem; }
    .ent-hero-sub { font-size: 0.72rem; }
    .ent-featured-section { gap: 0.8rem; margin-bottom: 1rem; padding-bottom: 1rem; }
    .ent-featured-img { height: 130px; }
    .ent-featured-body { padding: 0.5rem 0.7rem; }
    .ent-featured-body h2 { font-size: 0.9rem; }
    .ent-featured-body .ent-summary { display: none; }
    .ent-featured-body .ent-meta { font-size: 0.6rem; }
    .ent-card h3 { font-size: 0.88rem; }
    .ent-card .ent-summary { display: none; }
    .ent-thumb { width: 72px; height: 52px; }
    .ent-filter { font-size: 0.62rem; padding: 0.25rem 0.6rem; }
}
