/* ====================================================
   RESOURCES & SHOW PAGE - MOBILE APP STYLES
   ==================================================== */

.content-section {
    padding: 30px 0 10px;
    min-height: 40vh;
}

/* Page Header */
.page-header {
    padding: 40px 16px 50px;
    background: radial-gradient(circle at center, rgba(30, 73, 118, 0.7) 0%, rgba(8, 23, 40, 0.95) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(253, 237, 180, 0.2);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 1.65rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.page-header-nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--butter-cream);
    background: rgba(9, 26, 47, 0.75);
    border: 1px solid rgba(253, 237, 180, 0.3);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.btn-back-home svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.btn-back-home:hover,
.btn-back-home:active {
    background: var(--gradient-gold);
    color: var(--cosmic-dark-900) !important;
    border-color: var(--butter-cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(245, 176, 39, 0.35);
}

.btn-back-home:hover svg {
    transform: translateX(-3px);
}

.article-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.page-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Article Detail (show.html) */
.article-detail {
    background: var(--gradient-card);
    padding: 24px 18px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(253, 237, 180, 0.2);
    margin-bottom: 30px;
}

.article-detail h2 {
    font-size: 1.3rem;
    color: var(--butter-cream);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.article-body {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-main);
}

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

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 18px auto;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(253, 237, 180, 0.25);
}

.article-body hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 237, 180, 0.3), transparent);
    margin: 20px 0;
}

/* Article List */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-item {
    display: flex;
    flex-direction: column;
    background: var(--gradient-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(253, 237, 180, 0.18);
    box-shadow: var(--shadow-sm);
}

.article-image {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    background: #06111f;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-content h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.35;
}

.article-content h3 a {
    color: #ffffff;
}

.article-content p {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 0.82rem;
    line-height: 1.55;
}