/* ============================================================
   SHORT MOVIE REVIEWS — Homepage Styles
   ============================================================ */

body.home {
    background-color: #0f0e0c;
    color: #e8e4d9;
}

.smr-page {
    background-color: #0f0e0c;
    color: #e8e4d9;
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
}

/* --- Header ----------------------------------------------- */
.smr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 40px 18px;
    border-bottom: 0.5px solid rgba(232,228,217,0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(15,14,12,0.95);
    backdrop-filter: blur(6px);
}

.smr-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #e8e4d9;
    text-decoration: none;
}

.smr-logo em {
    color: #b8a97a;
    font-style: italic;
}

.smr-nav {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.smr-nav a {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(232,228,217,0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.smr-nav a:hover { color: #b8a97a; }

/* --- Section Labels --------------------------------------- */
.smr-section-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b8a97a;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.smr-section-label::after {
    content: '';
    flex: 1;
    height: 0.5px;
    background: rgba(184,169,122,0.25);
    max-width: 80px;
}

/* --- Hero ------------------------------------------------- */
.smr-hero {
    padding: 40px 40px 36px;
    border-bottom: 0.5px solid rgba(232,228,217,0.08);
    max-width: 1100px;
    margin: 0 auto;
}

.smr-hero-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 36px;
    align-items: start;
}

/* --- Hero poster as link --------------------------------- */
.smr-hero-poster {
    display: block;
    width: 200px;
    aspect-ratio: 2 / 3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.smr-hero-poster:hover { opacity: 0.88; }

.smr-hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.smr-hero-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 8px;
}

/* --- Hero title as link ---------------------------------- */
.smr-hero-title-link {
    text-decoration: none;
}

.smr-hero-title-link:hover .smr-hero-title {
    color: rgba(232,228,217,0.75);
}

.smr-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: #e8e4d9;
    margin: 0;
    transition: color 0.2s ease;
}

/* --- Hero meta ------------------------------------------- */
.smr-hero-meta {
    font-size: 14px;
    color: rgba(232,228,217,0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.smr-hero-meta .smr-meta-dot {
    margin: 0 8px;
    opacity: 0.4;
}

/* --- Hero verdict ---------------------------------------- */
.smr-hero-verdict {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(232,228,217,0.4);
    font-style: italic;
    border-left: 2px solid rgba(184,169,122,0.25);
    padding-left: 14px;
    margin: 0;
    max-width: 48ch;
}

/* --- Hero excerpt (legacy, hidden) ----------------------- */
.smr-hero-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(232,228,217,0.6);
    margin: 0;
    max-width: 50ch;
}

/* --- Read link ------------------------------------------- */
.smr-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b8a97a;
    text-decoration: none;
    border-bottom: 0.5px solid rgba(184,169,122,0.35);
    padding-bottom: 3px;
    width: fit-content;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.smr-read-link:hover {
    color: #d4c598;
    border-color: rgba(212,197,152,0.6);
}

/* --- Linked meta terms ----------------------------------- */
.smr-meta-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 0.5px solid rgba(232,228,217,0.2);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.smr-meta-link:hover {
    color: #b8a97a;
    border-color: rgba(184,169,122,0.5);
}

/* --- Grid ------------------------------------------------- */
.smr-grid-section {
    padding: 36px 40px 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.smr-grid-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(232,228,217,0.3);
    margin: 0 0 20px 0;
}

.smr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px 20px;
}

.smr-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.smr-card:hover { transform: translateY(-3px); }

.smr-card-poster-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 4px;
    overflow: hidden;
    background-color: #1c1b18;
}

.smr-card-poster-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.smr-card:hover .smr-card-poster-wrap img { transform: scale(1.03); }

.smr-card-score-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15,14,12,0.88);
    border: 0.5px solid rgba(184,169,122,0.35);
    border-radius: 3px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: #b8a97a;
    padding: 2px 8px;
    line-height: 1.5;
}

.smr-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: #e8e4d9;
    line-height: 1.3;
    margin: 0;
}

.smr-card-meta {
    font-size: 11px;
    color: rgba(232,228,217,0.3);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin: 0;
}

/* --- Pagination ------------------------------------------- */
.smr-pagination {
    padding: 0 40px 48px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.smr-pagination a,
.smr-pagination span {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(232,228,217,0.35);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.smr-pagination a:hover { color: #b8a97a; }
.smr-pagination .current { color: #b8a97a; }

/* --- Footer ----------------------------------------------- */
.smr-footer {
    border-top: 0.5px solid rgba(232,228,217,0.08);
    padding: 24px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.smr-footer-copy {
    font-size: 12px;
    color: rgba(232,228,217,0.2);
}

/* --- Taxonomy Archive Header ----------------------------- */
.smr-archive-header {
    padding: 48px 40px 36px;
    border-bottom: 0.5px solid rgba(232,228,217,0.08);
    max-width: 1100px;
    margin: 0 auto;
}

.smr-archive-eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b8a97a;
    margin: 0 0 12px 0;
}

.smr-archive-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: #e8e4d9;
    margin: 0 0 12px 0;
    line-height: 1.1;
}

.smr-archive-count {
    font-size: 12px;
    color: rgba(232,228,217,0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

/* --- Responsive ------------------------------------------- */
@media ( max-width: 768px ) {
    .smr-header,
    .smr-hero,
    .smr-grid-section,
    .smr-pagination,
    .smr-footer { padding-left: 20px; padding-right: 20px; }

    .smr-hero-inner { grid-template-columns: 140px 1fr; gap: 20px; }
    .smr-hero-poster { width: 140px; }
    .smr-hero-title { font-size: 26px; }
    .smr-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

@media ( max-width: 480px ) {
    .smr-nav { display: none; }

    .smr-hero-inner {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 16px;
        align-items: start;
    }

    .smr-hero-poster {
        width: 140px;
    }

    .smr-hero-title {
        font-size: 18px;
    }

    .smr-hero-meta {
        font-size: 12px;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .smr-hero-meta .smr-meta-dot {
        display: none;
    }

    .smr-hero-meta .smr-meta-group {
        display: block;
    }

    .smr-hero-verdict {
        display: none;
    }

    .smr-hero-excerpt {
        display: none;
    }

    .smr-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}