.apollo-page {
    background: #f8fafc;
}

.apollo-top-strip {
    background: #0b2345;
    color: #cbd5e1;
    border-bottom: 3px solid #c8a15a;
    font-size: 13px;
}
.apollo-top-strip .container {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 8px 0;
}
.apollo-top-strip strong {
    color: #fff;
}

.apollo-subhero {
    background: linear-gradient(125deg, #0b2345, #174074);
    color: #f8fafc;
    padding: 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.apollo-subhero .eyebrow {
    display: inline-block;
    background: rgba(200, 161, 90, 0.2);
    color: #fcd34d;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.apollo-subhero h1 {
    margin: 0;
    font-size: clamp(26px, 4.2vw, 40px);
    line-height: 1.28;
}
.apollo-subhero p {
    margin: 8px 0 0;
    color: #dbeafe;
    max-width: 860px;
    line-height: 1.7;
}

.apollo-main {
    padding: 32px 0 54px;
}
.apollo-main-col .card-grid {
    grid-template-columns: 1fr;
    gap: 26px;
}
.apollo-main-col .apollo-post-card h3 {
    font-size: 29px;
    line-height: 1.35;
}
.apollo-main-col .apollo-post-card .post-summary {
    font-size: 17px;
}

.apollo-card {
    background: #fff;
    border-radius: 12px;
    border-top: 3px solid #c8a15a;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    padding: 24px;
}

.apollo-sidebar .card {
    border-top: 3px solid #0b2345;
}
.apollo-side-col {
    position: sticky;
    top: 84px;
    align-self: start;
}
.apollo-sidebar .card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.apollo-sidebar a {
    color: #1f2937;
}
.apollo-sidebar a:hover {
    color: #0b2345;
}

.apollo-category-list p {
    margin: 0 0 10px;
}
.apollo-category-list a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.apollo-list-head {
    text-align: center;
    margin-bottom: 22px;
}
.apollo-list-head h2 {
    margin: 0 0 8px;
    color: #0b2345;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.apollo-list-head .bar {
    width: 70px;
    height: 4px;
    margin: 0 auto 10px;
    border-radius: 2px;
    background: linear-gradient(90deg, #c8a15a, #e5c27c);
}
.apollo-list-head p {
    margin: 0;
    color: #64748b;
}

.apollo-post-card {
    border-top-color: #c8a15a;
    transition: transform .2s ease, box-shadow .2s ease;
}
.apollo-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.apollo-detail h1 {
    margin-top: 0;
    color: #0b2345;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.3;
}
.apollo-detail .post-summary {
    font-size: 17px;
}
.apollo-detail-content {
    white-space: pre-line;
    line-height: 1.86;
    color: #1f2937;
    font-size: 17px;
}
.apollo-related p {
    margin: 0 0 10px;
}
.apollo-related a {
    display: block;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 8px;
    padding: 9px 10px;
}
.apollo-related a:hover {
    border-color: #c8a15a;
}
.apollo-view-count {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 920px) {
    .apollo-main {
        padding-top: 22px;
    }
    .apollo-subhero {
        padding: 28px 0;
    }
    .apollo-main-col .apollo-post-card h3 {
        font-size: 23px;
    }
    .apollo-side-col {
        position: static;
    }
}

