/* ==========================================================================
   Resources CSS (Detail / Show Pages) - Mobile App Frame Edition
   ========================================================================== */

.page-container {
    padding-top: 10px;
    padding-bottom: 20px;
    min-height: 85vh;
    background-color: var(--bg-body);
}

/* Subpage Hero Section */
.page-hero {
    padding: 24px 0 18px;
    background: radial-gradient(circle at 50% 10%, rgba(245, 158, 11, 0.15) 0%, transparent 60%),
                linear-gradient(180deg, #0f1422 0%, #0a0d14 100%);
    text-align: center;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 20px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #cbd5e1;
}

.breadcrumb-nav a {
    color: var(--primary-light);
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.35);
}

.landing-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 10px;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    font-size: 0.75rem;
}

.hero-meta-item i {
    color: var(--primary-light);
}

/* Article Container */
.article-container {
    padding: 0 16px 30px;
}

.article-main-visual {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gold);
    margin-bottom: 20px;
    background: #090c14;
}

.article-main-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-body);
}

.article-body h2, .article-body h3 {
    margin: 24px 0 10px;
    color: #ffffff;
    font-weight: 800;
}

.article-body h2 {
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.25);
    padding-bottom: 8px;
    color: var(--primary-light);
}

.article-body h3 {
    font-size: 1.1rem;
}

.article-body p {
    margin-bottom: 14px;
}

.article-body ul, .article-body ol {
    margin: 14px 0;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 6px;
}

/* Ad Wrapper */
.ad-wrapper {
    margin: 20px auto;
}

.ad-container {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
}

/* Gallery Grid on Show page */
.news-grid-glow {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.news-card-glow {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-glow-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #090c14;
}

.news-glow-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-glow-content {
    padding: 14px 12px;
}

.news-glow-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.news-glow-content h3 a:hover {
    color: var(--primary-light);
}

.news-glow-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}

.read-more-glow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-light);
}
