/* World Political Parties - Channel V6 shared styles (extracted from frontier-v6.html) */
/* ===== Channel V6 - Grand Hero + Left/Right Layout ===== */
.channel-hero-v6 {
    position: relative;
    min-height: 520px;
    background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 30%, #1e293b 70%, #334155 100%);
    color: #fff;
    overflow: hidden;
}
.channel-hero-v6::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/photo-1451187580459-43490279c0fa.jpg') center/cover;
    opacity: 0.08;
}
.channel-hero-v6::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 25% 30%, rgba(220,38,38,0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 70%, rgba(220,38,38,0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(220,38,38,0.15) 0%, transparent 50%);
}
.hero-v6-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 24px 48px;
}
.hero-v6-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.hero-v6-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}
.hero-v6-back:hover { color: #fff; }
.hero-v6-back svg { width: 16px; height: 16px; }
.hero-v6-channel-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(220,38,38,0.9) 0%, rgba(185,28,28,0.9) 100%);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-v6-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-v6-left {}
.hero-v6-title {
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 24px;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-v6-desc {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 0 36px;
}
.hero-v6-stats {
    display: flex;
    gap: 48px;
}
.stat-v6 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-num-v6 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
    text-shadow: 0 0 40px rgba(220,38,38,0.4);
}
.stat-label-v6 {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Right: Featured Card */
.hero-v6-right {}
.featured-card-v6 {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}
.featured-label-v6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    margin-bottom: 20px;
}
.featured-title-v6 {
    font-family: var(--font-heading, Georgia, serif);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 16px;
}
.featured-title-v6 a {
    color: #fff;
    text-decoration: none;
}
.featured-title-v6 a:hover {
    color: #fca5a5;
}
.featured-excerpt-v6 {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0 0 20px;
}
.featured-meta-v6 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
}
.featured-meta-v6 .author {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* Sub-column pills bar */
.subcol-pills-v6 {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.subcol-pills-inner-v6 { max-width: 1400px; margin: 0 auto; padding: 16px 24px; }
.subcol-pills-list-v6 { display: flex; gap: 12px; }
.subcol-pill-v6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #64748b;
    background: #f1f5f9;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
}
.subcol-pill-v6:hover { background: #e2e8f0; color: #334155; }
.subcol-pill-v6.active { background: #dc2626; color: #fff; }
.subcol-pill-v6 svg { width: 16px; height: 16px; opacity: 0.8; }

/* Main layout */
.channel-content-v6 { max-width: 1400px; margin: 0 auto; padding: 40px 24px; }
.layout-v6 { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }

/* Left: Article list */
.content-header-v6 {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid #e2e8f0;
}
.content-title-v6 {
    font-family: var(--font-heading, Georgia, serif);
    font-size: 1.5rem; font-weight: 700; color: #0f172a;
    display: flex; align-items: center; gap: 12px;
}
.content-title-v6::before { content: ''; width: 4px; height: 28px; background: #dc2626; border-radius: 2px; }
.content-filter-v6 { display: flex; gap: 8px; }
.filter-btn-v6 {
    padding: 8px 16px; font-size: 0.875rem; font-weight: 500; color: #64748b;
    background: #f1f5f9; border: none; border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
.filter-btn-v6:hover, .filter-btn-v6.active { background: #dc2626; color: #fff; }

.article-list-v6 { display: flex; flex-direction: column; gap: 20px; }
.article-item-v6 {
    display: grid; grid-template-columns: 220px 1fr; gap: 24px;
    padding: 24px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
    transition: all 0.25s;
}
.article-item-v6:hover { border-color: #dc2626; box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.article-thumb-v6 { width: 220px; height: 140px; border-radius: 8px; overflow: hidden; }
.article-thumb-v6 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-item-v6:hover .article-thumb-v6 img { transform: scale(1.05); }
.article-body-v6 { display: flex; flex-direction: column; gap: 10px; }
.article-tag-v6 {
    display: inline-block; width: fit-content; padding: 5px 14px;
    background: rgba(220,38,38,0.08); color: #dc2626; font-size: 0.6875rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border-radius: 4px;
}
.article-title-v6 {
    font-family: var(--font-heading, Georgia, serif);
    font-size: 1.25rem; font-weight: 700; line-height: 1.4; margin: 0;
}
.article-title-v6 a { color: #0f172a; text-decoration: none; }
.article-title-v6 a:hover { color: #dc2626; }
.article-excerpt-v6 {
    font-size: 0.9375rem; color: #64748b; line-height: 1.7; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.article-meta-v6 { display: flex; align-items: center; gap: 16px; margin-top: auto; font-size: 0.875rem; color: #94a3b8; }
.article-meta-v6 .author { color: #475569; font-weight: 500; }
.article-views-v6 { display: flex; align-items: center; gap: 5px; margin-left: auto; }

/* Pagination */
.pagination-v6 {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    margin-top: 48px; padding-top: 32px; border-top: 1px solid #e2e8f0;
}
.page-btn-v6 {
    min-width: 44px; height: 44px; padding: 0 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; font-weight: 500; color: #64748b; background: #fff;
    border: 1px solid #e2e8f0; border-radius: 8px; cursor: pointer; transition: all 0.2s;
}
.page-btn-v6:hover:not(:disabled) { border-color: #dc2626; color: #dc2626; }
.page-btn-v6.active { background: #dc2626; border-color: #dc2626; color: #fff; }
.page-btn-v6:disabled { opacity: 0.4; cursor: not-allowed; }
.page-numbers { display: inline-flex; gap: 6px; }
.page-group { display: block; }
.page-group[hidden] { display: none; }

/* Right: Sidebar */
.sidebar-v6 { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 90px; }
.side-card-v6 { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.side-card-head-v6 {
    display: flex; align-items: center; gap: 10px; padding: 18px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); border-bottom: 1px solid #e2e8f0;
    font-family: var(--font-heading, Georgia, serif); font-size: 1rem; font-weight: 700; color: #0f172a;
}
.side-card-head-v6 svg { width: 18px; height: 18px; color: #dc2626; }
.side-card-body-v6 { padding: 20px; }

/* About */
.side-about-v6 p { font-size: 0.9375rem; color: #64748b; line-height: 1.7; margin: 0 0 16px; }
.side-topics-v6 { display: flex; flex-wrap: wrap; gap: 8px; }
.side-topic-v6 {
    padding: 6px 12px; font-size: 0.75rem; font-weight: 500; color: #475569;
    background: #f1f5f9; border-radius: 4px; transition: all 0.2s;
}
.side-topic-v6:hover { background: #dc2626; color: #fff; }

/* Hot news */
.hot-list-v6 { display: flex; flex-direction: column; gap: 0; }
.hot-item-v6 {
    display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f1f5f9;
    text-decoration: none; color: inherit; transition: all 0.2s;
}
.hot-item-v6:last-child { border-bottom: none; }
.hot-item-v6:hover { background: #f8fafc; margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
.hot-item-v6:hover .hot-title-v6 { color: #dc2626; }
.hot-rank-v6 {
    flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    font-size: 0.8125rem; font-weight: 800; color: #fff; background: #cbd5e1; border-radius: 6px;
}
.hot-rank-v6.top1 { background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); }
.hot-rank-v6.top2 { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.hot-rank-v6.top3 { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.hot-title-v6 { font-size: 0.875rem; font-weight: 500; color: #334155; line-height: 1.5; margin: 0; }
.hot-meta-v6 { font-size: 0.75rem; color: #94a3b8; margin-top: 4px; }

/* Editors picks */
.pick-item-v6 { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f1f5f9; text-decoration: none; color: inherit; }
.pick-item-v6:last-child { border-bottom: none; }
.pick-thumb-v6 { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.pick-thumb-v6 img { width: 100%; height: 100%; object-fit: cover; }
.pick-title-v6 { font-size: 0.875rem; font-weight: 500; color: #334155; line-height: 1.5; margin: 0; }
.pick-item-v6:hover .pick-title-v6 { color: #dc2626; }

/* Subscribe - Clean standalone card */
.side-subscribe-v6 {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}
.subscribe-header-v6 {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 20px 24px;
    text-align: center;
}
.subscribe-header-v6 svg { width: 32px; height: 32px; color: #fff; margin-bottom: 10px; }
.subscribe-header-v6 h4 { font-family: var(--font-heading, Georgia, serif); font-size: 1.125rem; font-weight: 700; color: #fff; margin: 0; }
.subscribe-body-v6 { padding: 24px; }
.subscribe-body-v6 p { font-size: 0.9375rem; color: #64748b; line-height: 1.6; margin: 0 0 16px; }
.subscribe-input-v6 {
    width: 100%; padding: 12px 16px; font-size: 0.875rem;
    border: 1px solid #e2e8f0; border-radius: 6px; margin-bottom: 12px;
    box-sizing: border-box;
}
.subscribe-input-v6:focus { outline: none; border-color: #dc2626; }
.side-subscribe-btn-v6 {
    display: inline-block; width: 100%; padding: 12px 0;
    background: #0f172a; color: #fff;
    font-size: 0.9375rem; font-weight: 600; text-decoration: none; border-radius: 6px;
    transition: all 0.2s; text-align: center; border: none; cursor: pointer;
}
.side-subscribe-btn-v6:hover { background: #dc2626; }

/* Tab content */
.tab-content-v6 { display: none; }
.tab-content-v6.active { display: block; }

/* Responsive */
@media (max-width: 1100px) {
    .layout-v6 { grid-template-columns: 1fr; }
    .sidebar-v6 { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
    .side-subscribe-v6 { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
    .hero-v6-main { grid-template-columns: 1fr; gap: 40px; }
    .hero-v6-stats { flex-wrap: wrap; gap: 28px; }
    .article-item-v6 { grid-template-columns: 1fr; }
    .article-thumb-v6 { width: 100%; height: 200px; }
    .sidebar-v6 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .hero-v6-inner { padding: 48px 16px 36px; }
    .subcol-pills-list-v6 { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
    .subcol-pill-v6 { white-space: nowrap; }
}
