/* ============================================
   The Behavioral Review - Main Stylesheet
   Color Palette: White, Light Blue, Navy
   Typography: Serif headings, Sans-serif body
   ============================================ */

:root {
    --primary-white: #ffffff;
    --light-blue: #e8f0f8;
    --off-white: #f9fafb;
    --navy: #1a3a52;
    --navy-dark: #0f2438;
    --navy-light: #2d5a7a;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --border-color: #d4e0eb;
    --success-color: #4a9b6f;
    --gold: #b8982a;
}

/* ============================================
   Global Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    background-color: var(--primary-white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--navy-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Navigation/Masthead - Compact Academic Journal Style
   ============================================ */

.navbar {
    background-color: var(--off-white);
    border-bottom: 2px solid var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.75rem 20px;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 auto;
    min-width: 0;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.site-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    object-fit: contain;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    display: block;
}

.masthead-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.masthead-text h1 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--navy);
    font-weight: 700;
}

.masthead-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin: 0;
}

.nav-links a {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    padding-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--navy-light);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--navy);
}

/* ============================================
   Hero Section (Two Column Layout)
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(232, 240, 248, 0.5) 100%);
    padding: 3rem 20px;
    border-bottom: 1px solid var(--border-color);
}

/* Minimal single-column hero (new homepage design) */
.hero-section--minimal {
    padding: 2.85rem 20px 2.35rem;
}

.hero-section--minimal .hero-left {
    max-width: 710px;
}

.hero-section--minimal .hero-left h1 {
    font-size: 3.05rem;
    margin-bottom: 1.2rem;
}

.hero-section--minimal .hero-subtitle {
    max-width: 52ch;
    margin-bottom: 1.7rem;
}

/* Hero stats row */
.hero-stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-stat__number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Georgia', serif;
    line-height: 1;
}

.hero-stat__label {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Hero editorial tagline */
.hero-tagline {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left h1 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--navy-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-mission {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Award banner — full-width strip replacing sidebar card */
.homepage-award-section {
    padding-top: 0;
}

.award-banner {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.75rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.award-banner__body {
    flex: 1;
}

.award-banner__body h2 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.award-banner__body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    max-width: 640px;
}

/* Contact compact two-column layout */
.contact-compact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

/* Journal at a Glance Box */

.glance-box {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--off-white) 100%);
    padding: 1.75rem;
    border-radius: 4px;
    border: 2px solid var(--navy);
    box-shadow: 0 4px 8px rgba(26, 58, 82, 0.08);
}

.glance-box h3 {
    text-align: center;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 0.75rem;
    font-size: 1.2rem;
}

.glance-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
}

.glance-item:last-child {
    border-bottom: none;
}

.glance-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}

.glance-value {
    color: var(--text-dark);
    font-size: 0.9rem;
    text-align: right;
    max-width: 55%;
}

.glance-footer {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

.recruitment-banner {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    max-width: 540px;
    background-color: var(--primary-white);
    border-left: 4px solid var(--navy);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(26, 58, 82, 0.08);
}

/* ============================================
   Homepage Submission Sections
   ============================================ */

.publish-benefits,
.submit-disciplines {
    padding: 2.5rem 20px;
}

.publish-benefits {
    background-color: var(--primary-white);
}

.submit-disciplines {
    background-color: var(--light-blue);
}

.publish-benefits h2,
.submit-disciplines h2 {
    text-align: center;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.publish-benefits-content {
    max-width: 900px;
    margin: 0 auto;
}

.publish-benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.publish-benefits-list li,
.submission-field {
    background-color: var(--light-blue);
    border-left: 4px solid var(--navy);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    color: var(--text-dark);
}

.publish-benefits-list li {
    position: relative;
    padding-left: 3rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.publish-benefits-list li::before {
    content: '-';
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    color: var(--success-color);
    font-weight: 700;
}

.publish-benefits-note,
.submit-disciplines-intro {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
}

.submission-fields-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.submission-field {
    background-color: var(--primary-white);
    text-align: center;
    font-weight: 600;
    min-height: 100%;
}

/* ============================================
   Featured Topics Section
   ============================================ */

.featured-topics {
    padding: 2.5rem 20px;
    background-color: var(--light-blue);
}

.featured-topics h2 {
    text-align: center;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.topic-card {
    background-color: var(--primary-white);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--navy);
    border-top: 2px solid var(--navy);
    transition: box-shadow 0.3s ease;
}

.topic-card:hover {
    box-shadow: 0 4px 8px rgba(26, 58, 82, 0.1);
}

.topic-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    border: none;
    padding: 0;
}

.topic-card p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   Editorial Board Section
   ============================================ */

.editorial-board {
    padding: 2.5rem 20px;
    background-color: var(--primary-white);
}

.editorial-board h2 {
    text-align: center;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.board-member {
    background-color: var(--light-blue);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--navy);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.board-member:hover {
    box-shadow: 0 4px 8px rgba(26, 58, 82, 0.08);
}

.member-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.member-role {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* ============================================
   Featured Articles Section
   ============================================ */

.featured-articles {
    padding: 2.5rem 20px;
    background-color: var(--light-blue);
}

.featured-articles h2 {
    text-align: center;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.latest-publication-section {
    padding: 2.5rem 20px;
    background-color: var(--light-blue);
}

.latest-publication-section h2 {
    text-align: center;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background-color: var(--primary-white);
    border: 2px solid var(--navy);
    border-top: 4px solid var(--navy);
    padding: 1.75rem;
    border-radius: 4px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 8px 16px rgba(26, 58, 82, 0.12);
    transform: translateY(-3px);
}

.card-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.card-badge.criminology {
    background-color: var(--navy);
}

.card-badge.psychology {
    background-color: var(--navy-light);
}

.card-badge.criminal-justice {
    background-color: var(--success-color);
}

.article-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--navy);
    border: none;
    padding: 0;
}

.article-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--navy-light);
    padding-left: 0.5rem;
}

/* ============================================
   Review Process Section (7-Step Timeline)
   ============================================ */

.review-process {
    padding: 2.5rem 20px;
    background-color: var(--primary-white);
}

.review-process h2 {
    text-align: center;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background-color: var(--light-blue);
    border: 2px solid var(--navy);
    border-top: 4px solid var(--navy);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.process-step:hover {
    box-shadow: 0 4px 8px rgba(26, 58, 82, 0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--navy);
    color: var(--primary-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    border: none;
    padding: 0;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   Call to Action Section
   ============================================ */

.cta-final {
    background-color: var(--navy);
    color: var(--primary-white);
    padding: 2.5rem 20px;
    text-align: center;
}

.cta-final h2 {
    color: var(--primary-white);
    font-size: 2rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* ============================================
   Page Header (For inner pages)
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(232, 240, 248, 0.5) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 20px;
}

.page-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    text-align: center;
    margin: 0 auto;
    border: none;
    padding: 0;
    max-width: 1200px;
}

.page-content {
    padding: 3rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    border-bottom: 2px solid var(--navy);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.content-section > :last-child,
.about-section > :last-child,
.contact-box > :last-child,
.help-card > :last-child,
.faq-item > :last-child,
.contact-step > :last-child,
.social-card-body > :last-child,
.editor-info > :last-child {
    margin-bottom: 0;
}

.about-section {
    max-width: 880px;
    margin: 0 auto 3rem;
}

.about-section h3 {
    border-bottom: 2px solid var(--navy);
    padding-bottom: 0.75rem;
    margin-bottom: 1.35rem;
}

.standards-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.standards-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted, #555);
    margin-bottom: 1.25rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border-light, #dce3ec);
}

.standard-item {
    display: block;
    padding: 0.85rem 1rem 0.85rem 0;
    border-bottom: 1px solid var(--border-light, #dce3ec);
}

.standard-item:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid var(--border-light, #dce3ec);
}

.standard-item:nth-child(even) {
    padding-left: 1.5rem;
    padding-right: 0;
}

.standard-mark {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.15rem;
    line-height: 1;
}

.standard-body {
    flex: 1;
}

.standard-item h4 {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    border: none;
    padding: 0;
    line-height: 1.3;
}

.standard-item p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    color: var(--text-muted, #555);
}

@media (max-width: 640px) {
    .standards-grid {
        grid-template-columns: 1fr;
    }

    .standard-item:nth-child(odd) {
        padding-right: 0;
        border-right: none;
    }

    .standard-item:nth-child(even) {
        padding-left: 0;
    }
}

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 52rem;
}

.contact-box,
.help-card,
.faq-item,
.contact-step {
    background-color: var(--primary-white);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--navy);
    border-radius: 6px;
    padding: 1.35rem 1.45rem;
    box-shadow: 0 4px 14px rgba(26, 58, 82, 0.05);
}

.contact-box {
    background-color: var(--off-white);
}

.help-grid,
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.help-card h3,
.faq-item h4,
.contact-step h4 {
    border: none;
    padding: 0;
    margin-bottom: 0.55rem;
}

.contact-email {
    margin: 1rem 0 1.1rem;
}

.contact-email a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(26, 58, 82, 0.18);
    border-radius: 999px;
    background-color: var(--primary-white);
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
    overflow-wrap: anywhere;
}

.faq-item + .faq-item {
    margin-top: 1rem;
}

.contact-step {
    position: relative;
    padding-left: 4.35rem;
}

.contact-step-number {
    position: absolute;
    top: 1.35rem;
    left: 1.35rem;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background-color: var(--navy);
    color: var(--primary-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ============================================
   Awards & Recognition
   ============================================ */

.awards-intro {
    max-width: 860px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.awards-intro p {
    font-size: 1.08rem;
}

.awards-page .content-section h2 {
    border-bottom-color: #c8a34d;
}

.featured-award-card {
    background: linear-gradient(160deg, #ffffff 0%, #fbf8ef 100%);
    border: 1px solid #e5d7ae;
    border-top: 4px solid #c8a34d;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(26, 58, 82, 0.08);
    display: grid;
    grid-template-columns: minmax(160px, 200px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 1.2rem;
}

.featured-award-media {
    text-align: center;
}

.featured-award-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.award-label {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.featured-award-content h3 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    line-height: 1.08;
}

.award-institution {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.award-citation {
    margin-bottom: 1.25rem;
    max-width: 58ch;
}

.past-recipients-grid,
.future-awards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem 2.5rem;
}

.past-recipient-entry {
    border: none;
    border-top: 1px solid #d6c9a8;
    padding: 1.4rem 0 0;
    margin: 0;
    display: block;
    min-height: 100%;
}

.past-recipient-thumbnail {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: #f6f1e3;
    border: 1px solid #e0d0a0;
    box-shadow: 0 2px 10px rgba(26, 58, 82, 0.08);
}

.past-recipient-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.past-recipient-body {
    min-width: 0;
}

.past-recipient-entry h3 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.45rem, 2.3vw, 1.78rem);
    line-height: 1.12;
}

.past-recipient-entry .award-label {
    margin: 0 0 0.65rem;
    color: var(--gold);
    letter-spacing: 0.13em;
    font-size: 0.72rem;
}

.past-recipient-entry .award-institution {
    margin: 0 0 0.55rem;
    font-weight: 500;
}

.past-recipient-entry .award-title {
    margin: 0 0 0.8rem;
    color: var(--text-secondary, #555);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.past-recipient-entry .card-link {
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.past-recipient-entry .card-link:hover,
.past-recipient-entry .card-link:focus-visible {
    color: var(--navy);
    border-color: currentColor;
}

@media (max-width: 640px) {
    .past-recipient-entry {
        display: block;
    }
}

.past-recipient-card h3,
.future-award-card h3 {
    margin-bottom: 0.5rem;
}

.criteria-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
}

.criteria-item {
    border-top: 1px solid #d6c9a8;
    padding: 1.4rem 0 1.35rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 1rem;
    align-content: start;
}

.criteria-item h4 {
    font-weight: 700;
    margin: 0;
    color: var(--navy);
    font-size: 0.8rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    grid-column: 2;
}

.criteria-number {
    margin: 0;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    padding-top: 0.1rem;
}

.criteria-description {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-secondary, #555);
    grid-column: 2;
    max-width: 36ch;
}

/* ============================================
   Editorial Team Styles
   ============================================ */

.featured-editors {
    margin-bottom: 3rem;
}

.featured-editors h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(26, 58, 82, 0.18);
    padding-bottom: 0.9rem;
    margin-bottom: 2.25rem;
}

.editors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.editor-card {
    background: #fff;
    border: 1px solid rgba(26, 58, 82, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 18px;
    box-shadow: 0 4px 12px rgba(26, 58, 82, 0.04);
    transition: box-shadow 0.2s ease;
}

.editor-card:hover .editor-headshot img {
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.editor-headshot {
    width: 92px;
    height: 92px;
    overflow: hidden;
    background-color: var(--border-color);
    border-radius: 10px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.editor-headshot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: #fff;
    display: block;
    transition: opacity 0.2s ease;
}

.editor-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
}

.editor-info h3 {
    font-size: 1.16rem;
    color: var(--navy);
    margin-bottom: 0.2rem;
    border: none;
    padding: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.editor-title {
    font-size: 0.68rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.editor-credentials {
    font-size: 0.8rem;
    color: var(--navy-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.editor-bio {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.45;
    font-style: normal;
    margin: 0;
}

/* ============================================
   Team Section
   ============================================ */

.team-section {
    margin-bottom: 3rem;
}

.team-section h3 {
    border-bottom: 2px solid var(--navy);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-intro {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.team-member-card {
    background-color: var(--light-blue);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--navy);
}

.member-header h5 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    border: none;
    padding: 0;
}

.member-header .role {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-description {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* ============================================
   Values Grid
   ============================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-card {
    background-color: var(--light-blue);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--navy);
    text-align: center;
}

.value-card h5 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    border: none;
    padding: 0;
}

.value-card p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Content Cards and Boxes
   ============================================ */

.categories-grid,
.look-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.category-item,
.look-card {
    background-color: var(--light-blue);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--navy);
}

.category-item h4,
.look-card h4 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    border: none;
    padding: 0;
}

.category-item p,
.look-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ============================================
   Guideline Boxes
   ============================================ */

.guideline-box,
.endorsement-content {
    background-color: var(--light-blue);
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--navy);
    margin-bottom: 1.5rem;
}

.guideline-box h3 {
    color: var(--navy);
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.guideline-box p,
.endorsement-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   Lists
   ============================================ */

.checklist {
    list-style-position: inside;
    margin: 1.5rem 0;
}

.checklist li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--primary-white);
}

.btn-primary:hover {
    background-color: var(--navy-light);
    color: var(--primary-white);
}

/* ============================================
   Archive and Publication Cards
   ============================================ */

.archive-page .main-content {
    padding-top: 2.5rem;
}

.archive-page .content-section {
    margin-bottom: 2.5rem;
}

.archive-page .content-section h2 {
    margin-bottom: 1.1rem;
}

.archive-toolbar {
    margin-bottom: 0.9rem;
    padding: 1rem;
    background-color: rgba(232, 240, 248, 0.55);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.archive-filter-panel {
    display: grid;
    gap: 0.9rem;
}

.archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0;
}

.filter-btn {
    min-height: 40px;
    background-color: var(--primary-white);
    border: 1px solid var(--border-color);
    color: var(--navy);
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    font: inherit;
    font-size: 0.88rem;
    line-height: 1.1;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.filter-btn:hover,
.filter-btn--active {
    background-color: var(--navy);
    color: var(--primary-white);
    border-color: var(--navy);
}

.filter-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.16);
}

.publication-feed {
    display: grid;
    gap: 1.5rem;
}

.publication-card {
    background-color: var(--primary-white);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--navy);
    border-radius: 4px;
    padding: 1.75rem;
    box-shadow: 0 6px 16px rgba(26, 58, 82, 0.06);
}

.publication-card h3 {
    margin-bottom: 0.5rem;
    border: none;
    padding: 0;
}

.publication-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.publication-card p {
    font-size: 0.98rem;
    line-height: 1.7;
}


.publication-card-meta a,
.article-byline a,
.author-profile-card__name a {
    font-weight: 700;
}

.author-profile-link {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.author-profile-page {
    background-color: var(--off-white);
}

.author-profile-eyebrow {
    margin-bottom: 0.35rem;
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.author-profile-subtitle {
    max-width: 760px;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

.author-profile-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--light-blue);
    border-left: 4px solid var(--navy);
    border-radius: 4px;
    padding: 1.5rem;
}

.author-note-card .author-profile-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.author-profile-card--compact {
    gap: 1rem;
}

.author-profile-card__avatar {
    flex: 0 0 132px;
    max-width: 132px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--border-color);
}

.author-profile-card--compact .author-profile-card__avatar {
    flex-basis: 110px;
    max-width: 110px;
}

.author-profile-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-profile-card__content {
    min-width: 0;
}

.author-profile-card__name {
    border: 0;
    margin-bottom: 0.35rem;
    padding: 0;
}

.author-profile-card__institution,
.author-profile-linkedin {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.author-profile-linkedin {
    width: fit-content;
    color: #ffffff;
}

.author-profile-card__bio {
    margin-bottom: 0;
}

.archive-empty {
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   Archive — Statistics Bar
   ============================================ */

.archive-community-section {
    margin-bottom: 1.25rem;
    text-align: center;
}

.archive-community-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.55rem;
}

.archive-stats-bar {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-bottom: 0;
}

.archive-stat {
    flex: 1;
    max-width: 220px;
    min-width: 0;
    text-align: center;
    padding: 0.25rem 1.5rem;
    position: relative;
}

.archive-stat + .archive-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: var(--gold);
    opacity: 0.35;
}

.archive-stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Georgia', serif;
    line-height: 1.15;
}

.archive-stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* ============================================
   Archive — Search Bar
   ============================================ */

.archive-search-row {
    margin-bottom: 0.9rem;
}

.archive-search {
    width: 100%;
    min-height: 46px;
    padding: 0.65rem 1rem 0.65rem 2.7rem;
    font: inherit;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--primary-white);
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20' fill='%235a6c7d'%3E%3Cpath fill-rule='evenodd' d='M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0.9rem center;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.archive-search:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.12);
}

.archive-search::placeholder {
    color: var(--text-light);
}

/* ============================================
   Archive — Filter Panel & Secondary Filters
   ============================================ */

.archive-secondary-filters {
    display: grid;
    grid-template-columns: 180px minmax(220px, 1fr) minmax(220px, 1fr) auto;
    gap: 0.75rem;
    margin: 0;
    align-items: end;
}

.archive-filter-control,
.archive-filter-action {
    min-width: 0;
}

.archive-filter-label {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
}

.archive-select {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0.55rem 2.3rem 0.55rem 0.8rem;
    font: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    background-color: var(--primary-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='%235a6c7d'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.archive-select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.12);
}

.archive-clear-btn {
    min-height: 44px;
    padding: 0.55rem 1rem;
    border: 1px solid var(--navy);
    border-radius: 8px;
    background-color: transparent;
    color: var(--navy);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.archive-clear-btn:hover:not(:disabled) {
    background-color: var(--navy);
    color: var(--primary-white);
}

.archive-clear-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.16);
}

.archive-clear-btn:disabled {
    opacity: 0.55;
    cursor: default;
    color: var(--text-light);
    border-color: var(--border-color);
}

/* ============================================
   Archive — Results Count
   ============================================ */

.archive-results-count {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.1rem;
    font-weight: 600;
    min-height: 1.4em; /* prevent layout shift */
}

/* ============================================
   Archive — Editor's Picks
   ============================================ */

.archive-featured {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.archive-featured h2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.archive-featured h2::after {
    content: "\2605 Editor\2019s Selection";
    font-family: 'Arial', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    background-color: var(--navy);
    color: var(--primary-white);
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-style: normal;
}

/* ============================================
   Archive — Clickable Tag Buttons
   ============================================ */

.archive-tag-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.archive-tag-btn:hover {
    background-color: var(--navy);
    color: var(--primary-white);
    border-color: var(--navy);
}

.archive-tag-btn:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

/* ============================================
   Archive — Active Filter Pills
   ============================================ */

.archive-active-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.archive-active-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    background: rgba(26, 58, 82, 0.08);
    border: 1px solid rgba(26, 58, 82, 0.18);
    border-radius: 999px;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.archive-active-pill:hover {
    background: rgba(26, 58, 82, 0.15);
}

.archive-active-pill__x {
    font-size: 1rem;
    line-height: 1;
    font-weight: 400;
    opacity: 0.7;
}

.archive-active-pill--clear {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
    font-weight: 700;
}

.archive-active-pill--clear:hover {
    background: var(--navy);
    color: var(--primary-white);
}

/* ============================================
   Archive — Accordion (mobile only, hidden on desktop)
   ============================================ */

.archive-accordion {
    display: none; /* shown only on mobile via media query */
}

.archive-accordion-item {
    border-bottom: 1px solid rgba(26, 58, 82, 0.1);
}

.archive-accordion-item:first-child {
    border-top: 1px solid rgba(26, 58, 82, 0.1);
}

.archive-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
    background: none;
    border: none;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-align: left;
}

.archive-accordion-icon {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.archive-accordion-trigger[aria-expanded="true"] .archive-accordion-icon {
    transform: rotate(180deg);
}

.archive-accordion-panel {
    padding-bottom: 0.85rem;
}

/* ============================================
   Archive — Sticky Toolbar (mobile only)
   ============================================ */

.archive-sticky-bar {
    display: none; /* shown only on mobile */
}

/* ============================================
   Archive — Desktop-only elements (hidden on mobile)
   ============================================ */

.archive-filter-row--desktop,
.archive-secondary-filters--desktop {
    /* Visible on desktop by default */
}

.archive-mobile-actions {
    display: none; /* shown only on mobile */
}

/* ============================================
   Archive — Page Header (compact on mobile)
   ============================================ */

.page-header--compact {
    padding: 2rem 0 1.5rem;
}

.page-header--compact h1 {
    margin-bottom: 0.5rem;
}

.page-header--compact .page-header__intro {
    max-width: 58ch;
    margin: 0 auto;
}

/* ============================================
   Utility: Screen-reader only
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   Article Page Styles
   ============================================ */

.article-page {
    background-color: var(--off-white);
}

.article-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(232, 240, 248, 0.55) 100%);
    padding: 3.5rem 20px 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.article-shell {
    max-width: 860px;
    margin: 0 auto;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.article-byline {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.15rem;
}

.article-affiliation {
    color: var(--text-light);
    font-size: 0.98rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    color: var(--text-light);
    font-size: 0.92rem;
}

.article-category-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(26, 58, 82, 0.1);
    color: var(--navy);
    border: 1px solid rgba(26, 58, 82, 0.18);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.article-tag {
    display: inline-block;
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.article-main {
    padding: 2.5rem 20px 4rem;
}

.scholarly-article {
    background-color: var(--primary-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(26, 58, 82, 0.08);
    padding: 2.25rem;
}

.article-toc {
    background-color: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.05rem 1.4rem;
    margin: 0 auto 2.125rem;
    max-width: 540px;
}

.article-toc__heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    margin: 0 0 0.55rem;
    padding: 0;
    border: none;
}

.article-toc__list {
    margin: 0;
    padding-left: 1.4rem;
    list-style: decimal;
}

.article-toc__list li {
    margin-bottom: 0.28rem;
    line-height: 1.35;
}

.article-toc__list li:last-child {
    margin-bottom: 0;
}

.article-toc__list a {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.88rem;
    text-align: left;
    display: inline;
}

.article-toc__list a:hover {
    text-decoration: underline;
}

.article-intro {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.article-panel {
    background-color: var(--off-white);
    border-left: 4px solid var(--navy);
    padding: 1.25rem 1.35rem;
    border-radius: 4px;
}

.article-panel h2 {
    margin-bottom: 0.65rem;
    border: none;
    padding: 0;
    font-size: 1.25rem;
}

.article-pull-quote {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
}

.article-pull-quote p {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy);
}

.keywords-text {
    margin-bottom: 0;
    font-style: italic;
}

.article-section {
    margin-bottom: 2rem;
}

.article-section:last-child {
    margin-bottom: 0;
}

.article-related-feed {
    margin-top: 1rem;
}

.article-pagination {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.article-pagination__link {
    background-color: var(--off-white);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--navy);
    border-radius: 4px;
    padding: 1rem 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-pagination__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(26, 58, 82, 0.08);
}

.article-pagination__eyebrow {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.article-pagination__title {
    display: block;
    margin-top: 0.35rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.5;
}

.article-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-section h3 {
    font-size: 1.14rem;
    color: var(--navy);
    margin: 1.5rem 0 0.75rem;
}

.article-body p {
    font-size: 1.03rem;
    line-height: 1.85;
}

.article-figure {
    margin: 2rem auto 2rem;
    text-align: center;
}

.article-figure img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(26, 58, 82, 0.08);
}

.article-figure figcaption {
    margin-top: 0.65rem;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.article-body--uniform-figures .article-figure {
    width: min(100%, 700px);
    margin: 2rem auto;
    padding: 0;
}

.article-body--uniform-figures .article-figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #fff;
    display: block;
    margin: 0 auto;
}

.article-body--uniform-figures .article-figure figcaption {
    width: 100%;
    margin: 0.75rem auto 0;
    text-align: left;
}

.reference-list {
    padding-left: 1.25rem;
}

.reference-list li {
    margin-bottom: 0.85rem;
    line-height: 1.7;
}

.author-note-card,
.suggested-citation-box,
.coming-soon-box,
.what-card {
    background-color: var(--light-blue);
    border-left: 4px solid var(--navy);
    border-radius: 4px;
    padding: 1.5rem;
}

.what-coming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.main-content {
    padding: 3rem 0 4rem;
}

.footer {
    background-color: var(--navy-dark);
    color: rgba(255, 255, 255, 0.9);
    padding-top: 2.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-white);
    margin-bottom: 0.75rem;
    border: none;
    padding: 0;
}

.footer-section p,
.footer-section a,
.footer-section li {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li + li {
    margin-top: 0.45rem;
}

.logo-icon-footer {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    align-items: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    font-size: 0.88rem;
}

/* ============================================
   Social Media Section (Contact Page)
   ============================================ */

.social-connect-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.social-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background-color: var(--primary-white);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--navy);
    border-radius: 8px;
    padding: 1.4rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 58, 82, 0.07);
}

.social-card:hover {
    box-shadow: 0 6px 18px rgba(26, 58, 82, 0.13);
    transform: translateY(-3px);
    color: inherit;
}

.social-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-card-icon.linkedin {
    background-color: #0a66c2;
    color: #ffffff;
}

.social-card-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-card-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}

.social-card-body h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
    border: none;
    padding: 0;
}

.social-card-body p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.55;
    font-style: italic;
}

/* ============================================
   Follow Us Section (Homepage)
   ============================================ */

.follow-us-section {
    background-color: var(--light-blue);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0;
    text-align: center;
}

.follow-us-section h2 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.follow-us-section p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.97rem;
}

.follow-us-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.follow-us-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    color: #ffffff;
}

.follow-us-link:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.follow-us-link.linkedin {
    background-color: #0a66c2;
}

.follow-us-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.follow-us-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .hero-container,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .editors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .submission-fields-grid,
    .publish-benefits-list,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: calc(64px + env(safe-area-inset-top, 0px));
        left: 50%;
        transform: translateX(-50%);
        width: calc(100vw - 28px);
        max-width: 360px;
        min-width: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        background-color: var(--primary-white);
        border: 1px solid var(--border-color);
        border-radius: 6px;
        padding: 1rem;
        box-shadow: 0 10px 24px rgba(26, 58, 82, 0.12);
        display: none;
        z-index: 200;
        margin: 0;
    }

    .nav-links.nav-open {
        display: flex;
    }

    .featured-award-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================
   Mobile redesign — ≤ 768px
   ============================================ */

@media (max-width: 768px) {
    body {
        font-size: 1rem;
        line-height: 1.55;
    }

    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .navbar {
        padding: 0.5rem 16px;
    }

    .navbar-content {
        gap: 0.55rem;
    }

    .navbar-left {
        gap: 0.45rem;
    }

    .site-logo {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .masthead-text h1 {
        font-size: 0.92rem;
        margin-bottom: 0.05rem;
    }

    .masthead-tagline {
        font-size: 0.56rem;
        line-height: 1.2;
    }

    .nav-toggle {
        padding: 0.2rem;
    }

    .nav-links {
        top: calc(52px + env(safe-area-inset-top, 0px));
        left: 12px;
        right: 12px;
        transform: none;
        width: auto;
        gap: 0.25rem;
        border-radius: 8px;
        padding: 0.55rem 0.75rem;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        font-size: 0.84rem;
        padding: 0.5rem 0.2rem;
        min-height: 40px;
    }

    .hero-section {
        padding: 1.25rem 0 1.1rem;
    }

    .hero-container {
        gap: 1rem;
    }

    .hero-left h1 {
        font-size: 2rem;
        line-height: 1.16;
        margin-bottom: 0.45rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.55rem;
        line-height: 1.4;
    }

    .hero-mission {
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 0.8rem;
    }

    .recruitment-banner {
        margin-top: 0.65rem;
        padding: 0.62rem 0.75rem;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .glance-box {
        padding: 1rem;
    }

    .glance-box h3 {
        font-size: 1rem;
        margin-bottom: 0.65rem;
        padding-bottom: 0.45rem;
    }

    .glance-item {
        padding: 0.48rem 0;
    }

    .glance-label,
    .glance-value,
    .glance-footer {
        font-size: 0.85rem;
    }

    .btn {
        font-size: 0.95rem;
        letter-spacing: 0.03em;
        text-transform: none;
        min-height: 42px;
        padding: 0.55rem 0.95rem;
    }

    .hero-left .btn,
    .publication-card .btn,
    .cta-final .btn {
        width: 100%;
        text-align: center;
    }

    .publish-benefits,
    .submit-disciplines,
    .featured-articles,
    .latest-publication-section,
    .editorial-board,
    .review-process,
    .cta-final,
    .follow-us-section {
        padding: 1.2rem 0;
    }

    .publish-benefits h2,
    .submit-disciplines h2,
    .featured-articles h2,
    .latest-publication-section h2,
    .editorial-board h2,
    .review-process h2,
    .cta-final h2,
    .content-section h2 {
        margin-bottom: 0.85rem;
        padding-bottom: 0.45rem;
    }

    .publish-benefits-list,
    .submission-fields-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .publish-benefits-list li,
    .submission-field {
        padding: 0.7rem 0.75rem;
        font-size: 0.93rem;
        line-height: 1.4;
    }

    .publish-benefits-list li {
        padding-left: 2.3rem;
    }

    .publish-benefits-list li::before {
        left: 0.9rem;
        top: 0.72rem;
    }

    .publish-benefits-note,
    .submit-disciplines-intro {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .article-card {
        padding: 1rem;
        border-top-width: 3px;
    }

    .card-badge {
        padding: 0.35rem 0.65rem;
        margin-bottom: 0.65rem;
        font-size: 0.68rem;
    }

    .article-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .article-card p {
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 0.85rem;
    }

    .card-link {
        font-size: 0.9rem;
    }

    .publication-feed {
        gap: 0.8rem;
    }

    .publication-card {
        padding: 1rem;
        box-shadow: 0 3px 10px rgba(26, 58, 82, 0.07);
    }

    .publication-card h3 {
        font-size: 1.2rem;
        line-height: 1.32;
        margin-bottom: 0.38rem;
    }

    .publication-card-meta {
        font-size: 0.9rem;
        gap: 0.3rem 0.75rem;
        margin-bottom: 0.65rem;
    }

    .publication-card p {
        font-size: 1rem;
        line-height: 1.48;
        margin-bottom: 0.8rem;
    }

    .article-category-pill {
        font-size: 0.72rem;
        padding: 0.26rem 0.62rem;
        margin-bottom: 0.65rem;
    }

    .article-tags {
        gap: 0.3rem;
        margin-bottom: 0.65rem;
    }

    .article-tag {
        font-size: 0.72rem;
        padding: 0.18rem 0.48rem;
    }

    .main-content,
    .page-content {
        padding-top: 1.2rem;
        padding-bottom: 1.6rem;
    }

    .content-section,
    .about-section,
    .team-section {
        margin-bottom: 1.45rem;
    }

    .page-header {
        padding: 1.2rem 0 1rem;
    }

    .page-header h1,
    .page-header h2 {
        font-size: 1.65rem;
    }

    .coming-soon-box,
    .what-card,
    .category-item,
    .look-card,
    .guideline-box,
    .endorsement-content,
    .team-member-card,
    .board-member,
    .value-card,
    .process-step {
        padding: 0.95rem;
    }

    .archive-toolbar {
        padding: 1rem;
    }

    .archive-filters {
        flex-wrap: nowrap;
        gap: 0.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.15rem;
        scrollbar-width: thin;
    }

    .filter-btn {
        flex: 0 0 auto;
        min-height: 44px;
        font-size: 0.86rem;
        padding: 0.45rem 0.78rem;
    }

    .archive-stats-bar {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .archive-stat {
        max-width: 100%;
        width: 100%;
        padding: 0.55rem 1rem;
        position: relative;
    }

    .archive-stat + .archive-stat::before {
        top: 0;
        left: 15%;
        width: 70%;
        height: 1px;
        background-color: var(--gold);
        opacity: 0.35;
    }

    .archive-stat-value {
        font-size: 1.1rem;
    }

    .archive-stat-label {
        font-size: 0.7rem;
    }

    .archive-secondary-filters {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .archive-filter-action,
    .archive-clear-btn {
        width: 100%;
    }

    .archive-select {
        font-size: 0.95rem;
        padding: 0.55rem 2rem 0.55rem 0.75rem;
    }

    .archive-search {
        min-height: 44px;
        font-size: 1rem;
        padding: 0.68rem 1rem 0.68rem 2.7rem;
    }

    .article-hero {
        padding: 1.25rem 0 0.9rem;
    }

    .article-title {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .article-byline {
        font-size: 1rem;
        margin-bottom: 0.08rem;
    }

    .article-affiliation {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .article-meta {
        font-size: 0.9rem;
        gap: 0.35rem 0.7rem;
    }

    .article-main {
        padding: 1rem 0 1.5rem;
    }

    .scholarly-article {
        padding: 1rem;
        border-radius: 4px;
        box-shadow: 0 5px 14px rgba(26, 58, 82, 0.08);
    }

    .article-intro {
        gap: 0.8rem;
        margin-bottom: 1.15rem;
    }

    .article-toc {
        padding: 0.75rem 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .article-toc__list a {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .article-panel {
        padding: 0.85rem 0.9rem;
    }

    .article-panel h2 {
        font-size: 1.1rem;
        margin-bottom: 0.45rem;
    }

    .article-section {
        margin-bottom: 1.1rem;
    }

    .article-section h2 {
        font-size: 1.25rem;
        margin-bottom: 0.55rem;
    }

    .article-section h3 {
        font-size: 1.08rem;
        margin: 0.95rem 0 0.5rem;
    }

    .article-body p,
    .article-panel p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 0.85rem;
    }

    .reference-list {
        padding-left: 1.05rem;
    }

    .reference-list li {
        margin-bottom: 0.65rem;
        line-height: 1.55;
    }

    .article-pagination {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .article-pagination__link {
        padding: 0.75rem 0.82rem;
    }

    .footer {
        padding-top: 1.25rem;
    }

    .footer-content {
        gap: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .footer-section h4 {
        margin-bottom: 0.45rem;
    }

    .footer-section p,
    .footer-section a,
    .footer-section li {
        font-size: 0.88rem;
    }

    .footer-bottom {
        padding: 0.7rem 16px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .follow-us-section h2 {
        font-size: 1.25rem;
    }

    .follow-us-section p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .follow-us-icons {
        gap: 0.65rem;
        flex-direction: column;
    }

    .follow-us-link {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.58rem 0.9rem;
    }

    .author-profile-card,
    .author-note-card .author-profile-card {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .author-profile-card__avatar,
    .author-profile-card--compact .author-profile-card__avatar {
        flex-basis: auto;
        max-width: 116px;
    }

    .editors-grid {
        gap: 1.75rem 1.5rem;
    }

    .editor-headshot {
        max-height: 190px;
    }

    .editor-info h3 {
        font-size: 1rem;
    }

    .editor-bio {
        font-size: 0.73rem;
        line-height: 1.5;
    }

    .help-grid,
    .steps-container,
    .social-cards-grid,
    .values-grid,
    .what-coming-grid,
    .team-grid,
    .board-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .contact-box,
    .help-card,
    .faq-item,
    .contact-step,
    .social-card {
        padding: 0.95rem;
    }

    .contact-step {
        padding-top: 2.7rem;
        padding-left: 0.95rem;
    }

    .contact-step-number {
        top: 0.75rem;
        left: 0.95rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.85rem;
    }

    .contact-email {
        margin: 0.7rem 0 0.85rem;
    }

    .contact-email a {
        font-size: 0.95rem;
        padding: 0.55rem 0.85rem;
    }

    .social-card {
        gap: 0.75rem;
    }

    .social-card-icon {
        width: 38px;
        height: 38px;
    }

    .social-card-body h3 {
        font-size: 0.95rem;
    }

    .social-card-body p {
        font-size: 0.86rem;
    }

    /* New hero redesign — mobile */
    .hero-section--minimal {
        padding: 1.5rem 16px 1.25rem;
    }

    .hero-section--minimal .hero-left h1 {
        font-size: 1.85rem;
    }

    .hero-stats-row {
        gap: 1.25rem;
        margin-top: 1.1rem;
        padding-top: 1rem;
    }

    .hero-stat__number {
        font-size: 1.25rem;
    }

    /* Award banner — stack on mobile */
    .award-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    /* Contact compact layout — stack on mobile */
    .contact-compact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* ============================================
       Archive — Mobile Redesign (≤768px)
       ============================================ */

    /* Page header: less vertical whitespace */
    .archive-page .page-header--compact {
        padding: 1rem 0 0.85rem;
    }

    .archive-page .page-header--compact h1 {
        font-size: 1.8rem;
        margin-bottom: 0.35rem;
    }

    .archive-page .page-header--compact .page-header__intro {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    /* Stats: further reduced prominence */
    .archive-stats-bar {
        gap: 0;
        margin-bottom: 0.5rem;
    }

    .archive-stat-value {
        font-size: 1rem;
    }

    .archive-stat-label {
        font-size: 0.65rem;
    }

    /* "See what is new" link — hidden on mobile */
    .archive-see-new-link {
        display: none;
    }

    /* Toolbar */
    .archive-toolbar {
        padding: 0.85rem;
        margin-bottom: 0.7rem;
    }

    /* Search bar: primary visual element, slightly taller */
    .archive-search {
        min-height: 52px;
        font-size: 1rem;
        padding: 0.75rem 1.2rem 0.75rem 3rem;
        border: 1.5px solid rgba(26, 58, 82, 0.25);
        box-shadow: 0 2px 8px rgba(26, 58, 82, 0.1);
    }

    .archive-search:focus {
        border-color: var(--navy);
        box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.18), 0 2px 10px rgba(26, 58, 82, 0.1);
        outline: none;
    }

    /* Hide desktop-only filter rows */
    .archive-filter-row--desktop,
    .archive-secondary-filters--desktop {
        display: none;
    }

    /* Show mobile accordion wrapper */
    .archive-accordion {
        display: block;
        margin-top: 0.6rem;
    }

    /* Hide the legacy stub accordion items */
    .archive-accordion-item--hidden {
        display: none;
    }

    /* Single Filters toggle button */
    .archive-mobile-filters-toggle {
        display: flex;
    }

    .archive-mobile-filters-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.55rem 1rem;
        min-height: 42px;
        background: transparent;
        color: var(--navy);
        border: 1.5px solid rgba(26, 58, 82, 0.25);
        border-radius: 8px;
        font: inherit;
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        cursor: pointer;
        transition: background-color 0.15s ease, border-color 0.15s ease;
    }

    .archive-mobile-filters-btn:hover {
        background: rgba(26, 58, 82, 0.06);
        border-color: rgba(26, 58, 82, 0.4);
    }

    .archive-mobile-filters-btn[aria-expanded="true"] {
        background: rgba(26, 58, 82, 0.07);
        border-color: var(--navy);
    }

    .archive-mobile-filters-btn[aria-expanded="true"] .archive-accordion-icon {
        transform: rotate(180deg);
    }

    /* Filters expandable panel */
    .archive-mobile-filters-panel {
        border: 1px solid rgba(26, 58, 82, 0.12);
        border-radius: 10px;
        margin-top: 0.5rem;
        background: rgba(26, 58, 82, 0.02);
        overflow: hidden;
    }

    .archive-mobile-filters-inner {
        padding: 0.85rem 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .archive-mobile-filter-group {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    .archive-mobile-filter-group .archive-filter-label {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--navy);
        opacity: 0.7;
        margin-bottom: 0;
    }

    .archive-mobile-filter-group .archive-select {
        min-height: 44px;
    }

    /* Category chips inside filter panel */
    .archive-filters--mobile {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.4rem;
        padding-bottom: 0.25rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .archive-filters--mobile::-webkit-scrollbar {
        display: none;
    }

    .archive-filters--mobile .filter-btn {
        flex: 0 0 auto;
        scroll-snap-align: start;
        min-height: 34px;
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }

    .archive-filters--mobile .filter-btn--active {
        background-color: var(--navy);
        color: var(--primary-white);
        box-shadow: 0 2px 6px rgba(26, 58, 82, 0.25);
    }

    /* Clear Filters: hidden until filters are active */
    .archive-mobile-filter-group--clear {
        margin-top: 0.1rem;
    }

    .archive-clear-btn--mobile {
        display: none;
        width: auto;
        align-self: flex-start;
        padding: 0.45rem 1rem;
        font-size: 0.82rem;
        min-height: 38px;
        background: transparent;
        color: var(--navy);
        border: 1px solid rgba(26, 58, 82, 0.3);
        border-radius: 6px;
    }

    .archive-clear-btn--mobile.archive-clear-btn--visible {
        display: inline-flex;
    }

    /* Legacy mobile-actions div (no longer used, kept hidden) */
    .archive-mobile-actions {
        display: none;
    }

    /* Sticky toolbar */
    .archive-sticky-bar {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        background: rgba(255, 255, 255, 0.97);
        border-bottom: 1px solid rgba(26, 58, 82, 0.12);
        box-shadow: 0 2px 12px rgba(26, 58, 82, 0.1);
        padding: 0.55rem 0;
        transform: translateY(-110%);
        transition: transform 0.25s ease;
        pointer-events: none;
    }

    .archive-sticky-bar--visible {
        transform: translateY(0);
        pointer-events: auto;
    }

    .archive-sticky-bar__inner {
        display: flex;
        gap: 0.6rem;
        align-items: center;
    }

    .archive-sticky-search {
        flex: 1;
        min-height: 40px;
        font-size: 0.9rem;
        padding: 0.5rem 0.85rem 0.5rem 2.5rem;
        border: 1px solid rgba(26, 58, 82, 0.2);
        box-shadow: none;
    }

    .archive-sticky-filters-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.5rem 0.85rem;
        min-height: 40px;
        background: var(--navy);
        color: #fff;
        border: none;
        border-radius: 8px;
        font: inherit;
        font-size: 0.85rem;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Article cards: more spacing, better touch targets */
    .publication-feed {
        gap: 1.25rem;
    }

    .publication-card {
        padding: 1.25rem;
    }

    .publication-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.55rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .publication-card-meta {
        gap: 0.4rem 0.75rem;
        font-size: 0.85rem;
        margin-bottom: 0.55rem;
    }

    .publication-card p {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-top: 0.55rem;
    }

    .archive-tag-btn {
        min-height: 32px;
        padding: 0.3rem 0.6rem;
        font-size: 0.78rem;
    }

    /* Results count */
    .archive-results-count {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .archive-toolbar {
        padding: 0.85rem;
    }

    .archive-stats-bar {
        flex-direction: column;
        align-items: center;
    }

    .archive-search {
        font-size: 0.95rem;
    }

    .filter-btn {
        font-size: 0.82rem;
    }

    .archive-filter-label {
        font-size: 0.75rem;
    }

    .archive-select,
    .archive-clear-btn {
        font-size: 0.9rem;
    }

    .article-toc {
        padding: 0.6rem 0.8rem;
        margin-bottom: 1.875rem;
    }

    .article-toc__list {
        padding-left: 1.15rem;
    }

    .article-toc__list a {
        font-size: 0.82rem;
    }
}

/* ============================================
   2026 mobile-first publication refresh
   ============================================ */

:root {
    --space-1: 0.375rem;
    --space-2: 0.625rem;
    --space-3: 0.875rem;
    --space-4: 1.125rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 2.75rem;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-soft: 0 12px 32px rgba(15, 36, 56, 0.08);
    --shadow-card: 0 10px 24px rgba(15, 36, 56, 0.07);
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f8fb;
    font-size: 0.98rem;
    line-height: 1.6;
}

.container {
    max-width: 1180px;
    padding: 0 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.18;
    text-wrap: balance;
}

p,
li,
summary,
label,
input,
select,
button {
    overflow-wrap: anywhere;
}

.navbar {
    padding: 0.7rem 0;
    border-bottom-width: 1px;
    backdrop-filter: blur(10px);
    background: rgba(249, 250, 251, 0.94);
}

.navbar-content {
    gap: 0.75rem;
    align-items: center;
}

.navbar-left {
    gap: 0.6rem;
}

.site-logo {
    width: 38px;
    height: 38px;
    min-width: 38px;
}

.masthead-text h1 {
    font-size: 0.98rem;
}

.masthead-tagline {
    font-size: 0.58rem;
    line-height: 1.25;
}

.nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
}

.nav-links {
    position: fixed;
    top: calc(60px + env(safe-area-inset-top, 0px));
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.6rem;
    border: 1px solid rgba(26, 58, 82, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - 82px);
    overflow-y: auto;
}

.nav-links.nav-open {
    display: flex;
}

.nav-links a {
    display: block;
    min-height: 42px;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    font-size: 0.92rem;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--light-blue);
}

.hero-section,
.page-header {
    padding: var(--space-6) 0 var(--space-5);
    background: linear-gradient(180deg, rgba(232, 240, 248, 0.92) 0%, rgba(245, 248, 251, 0.88) 100%);
}

.hero-container,
.page-header__content,
.homepage-primary-layout,
.author-guidelines-layout,
.contact-primary-layout,
.two-column-section,
.cta-final__content {
    display: grid;
    gap: var(--space-4);
}

.hero-left h1,
.page-header h1,
.page-header h2 {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
    margin: 0;
}

.hero-eyebrow,
.page-header__eyebrow,
.section-eyebrow,
.feature-panel__eyebrow,
.author-profile-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.55rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-light);
}

.section-eyebrow--light {
    color: rgba(255, 255, 255, 0.78);
}

.hero-subtitle,
.page-header__intro,
.section-intro,
.author-profile-subtitle {
    max-width: 62ch;
    margin: 0;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.55;
}

.hero-mission {
    margin: 0;
    max-width: 58ch;
    font-size: 0.98rem;
    line-height: 1.6;
}

.hero-actions,
.cta-final__actions,
.contributor-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-chip,
.article-tag,
.filter-btn,
.archive-clear-btn,
.contact-email a {
    border-radius: 999px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.75rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(26, 58, 82, 0.1);
    font-size: 0.82rem;
    font-weight: 600;
}

.recruitment-banner,
.feature-panel,
.contact-primary-card,
.checklist-card,
.browse-card,
.compact-publication-card,
.contributor-card,
.timeline-step,
.accordion-item,
.social-follow-card,
.archive-toolbar,
.publication-card,
.author-profile-card,
.coming-soon-box,
.guideline-box,
.what-card,
.category-item,
.look-card,
.team-member-card,
.board-member,
.value-card,
.past-recipient-card,
.help-card,
.contact-box,
.contact-step,
.process-step,
.featured-award-card,
.future-award-card {
    border: 1px solid rgba(26, 58, 82, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    background: #ffffff;
}

.recruitment-banner,
.feature-panel,
.contact-primary-card,
.checklist-card,
.browse-card,
.compact-publication-card,
.contributor-card,
.timeline-step,
.accordion-item,
.social-follow-card,
.publication-card,
.author-profile-card,
.coming-soon-box,
.guideline-box,
.what-card,
.category-item,
.look-card,
.team-member-card,
.board-member,
.value-card,
.past-recipient-card,
.help-card,
.contact-box,
.contact-step,
.process-step,
.future-award-card {
    padding: var(--space-4);
}

.feature-panel--accent,
.contact-primary-card,
.publication-card,
.coming-soon-box,
.guideline-box,
.help-card,
.contact-box,
.contact-step,
.value-card,
.board-member,
.team-member-card,
.past-recipient-card,
.process-step,
.author-profile-card {
    border-left: 4px solid var(--navy);
}

.glance-box {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 58, 82, 0.14);
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.96);
}

.glance-box h3 {
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--border-color);
}

.glance-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(26, 58, 82, 0.08);
}

.glance-item:last-of-type {
    border-bottom: 0;
}

.glance-label,
.glance-footer,
.archive-filter-label,
.compact-publication-card__meta,
.contributor-card__institution {
    font-size: 0.82rem;
    color: var(--text-light);
}

.glance-value {
    font-size: clamp(1.2rem, 4vw, 1.75rem);
}

.main-content,
.page-content,
.archive-page .main-content {
    padding: var(--space-5) 0 var(--space-6);
}

.main-content--dense,
.page-content--dense {
    padding-top: var(--space-5);
}

.hero-section--minimal + .main-content--dense {
    padding-top: calc(var(--space-5) + 0.45rem);
}

.content-section,
.about-section,
.team-section {
    margin-bottom: var(--space-5);
}

.content-section h2,
.team-section h3,
.about-section h3 {
    margin-bottom: 0.9rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(26, 58, 82, 0.14);
}

.section-heading,
.section-heading--inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.section-heading h2,
.section-heading h3,
.section-heading--inline h2,
.section-heading--left h2 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: clamp(1.4rem, 4vw, 1.9rem);
}

.section-heading--left {
    margin-bottom: 0.85rem;
}

.section-link {
    font-size: 0.88rem;
    font-weight: 700;
}

.btn {
    min-height: 44px;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    text-transform: none;
}

.btn-primary {
    box-shadow: 0 10px 22px rgba(26, 58, 82, 0.18);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(26, 58, 82, 0.18);
    background: #ffffff;
    color: var(--navy);
    font-weight: 700;
}

.btn-secondary--light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: var(--light-blue);
}

.btn-secondary--light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.homepage-sidebar-stack,
.contributor-grid,
.compact-publication-grid,
.browse-grid,
.checklist-grid,
.help-grid--compact,
.social-follow-grid,
.values-grid,
.past-recipients-grid,
.what-coming-grid {
    display: grid;
    gap: 0.9rem;
}

.publication-feed {
    gap: 0.95rem;
}

.publication-card {
    padding: var(--space-4);
    border-left-width: 4px;
}

.publication-card--featured {
    padding: var(--space-5);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 255, 1) 100%);
}

.publication-card__header {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.publication-card h3 {
    margin: 0;
    font-size: clamp(1.2rem, 4vw, 1.7rem);
    border: 0;
    padding: 0;
}

.publication-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-light);
}

.publication-card__preview,
.compact-publication-card__summary,
.contributor-card__summary,
.browse-card p,
.checklist-card p,
.help-card p,
.feature-panel p,
.social-follow-card span span {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.92rem;
    line-height: 1.55;
}

.publication-card__footer {
    margin-top: 0.9rem;
}

.article-category-pill,
.compact-publication-card__category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: var(--light-blue);
    color: var(--navy);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.8rem;
}

.article-tag {
    padding: 0.28rem 0.55rem;
    background: rgba(232, 240, 248, 0.6);
    border: 1px solid rgba(26, 58, 82, 0.08);
    font-size: 0.72rem;
}

.compact-publication-card {
    display: grid;
    gap: 0.55rem;
    color: inherit;
}

.compact-publication-card h3,
.browse-card h3,
.checklist-card h3,
.contact-primary-card h2,
.feature-panel h3,
.timeline-step h3,
.contributor-card h3,
.social-follow-card strong {
    margin: 0;
    border: 0;
    padding: 0;
}

.compact-publication-card__category,
.compact-publication-card__meta {
    margin: 0;
}

.browse-card {
    display: grid;
    gap: 0.5rem;
    color: inherit;
}

.browse-card:hover,
.compact-publication-card:hover,
.social-follow-card:hover,
.contributor-card:hover,
.feature-panel:hover,
.publication-card:hover {
    transform: translateY(-2px);
}

.browse-card--static:hover {
    transform: none;
}

.compact-checklist {
    display: grid;
    gap: 0.7rem;
    padding-left: 0;
    list-style: none;
}

.compact-checklist li {
    position: relative;
    padding-left: 1.6rem;
    margin: 0;
}

.compact-checklist li::before {
    content: '•';
    position: absolute;
    left: 0.45rem;
    top: 0;
    color: var(--navy);
    font-weight: 700;
}

.compact-checklist--tight {
    gap: 0.55rem;
}

.timeline-list {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    list-style: none;
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
}

.timeline-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--navy);
    color: #ffffff;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-step p {
    margin: 0.3rem 0 0;
    color: var(--text-light);
}

.accordion-group {
    display: grid;
    gap: 0.7rem;
}

.accordion-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    padding-right: 1.75rem;
    position: relative;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: -0.05rem;
    font-size: 1.1rem;
}

.accordion-item[open] summary::after {
    content: '–';
}

.accordion-item p {
    margin: 0.75rem 0 0;
    color: var(--text-light);
}

.archive-stats-bar {
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.archive-stat {
    padding: 0.5rem 1rem;
}

.archive-toolbar {
    padding: 0.95rem;
    margin-bottom: 0.8rem;
    background: #ffffff;
}

.archive-filter-panel,
.archive-secondary-filters {
    display: grid;
    gap: 0.7rem;
    min-width: 0;
    width: 100%;
}

.archive-filter-row {
    min-width: 0;
}

.archive-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.1rem;
    scrollbar-width: thin;
    min-width: 0;
    max-width: 100%;
}

.filter-btn {
    min-height: 40px;
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    white-space: nowrap;
}

.archive-search,
.archive-select,
.archive-clear-btn {
    min-height: 44px;
    font-size: 0.92rem;
}

.archive-results-count {
    margin-bottom: 0.8rem;
}

.contact-email {
    margin: 0.85rem 0 1rem;
}

.contact-email a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.65rem 1rem;
    min-height: 44px;
    border: 1px solid rgba(26, 58, 82, 0.16);
    background: var(--off-white);
    font-size: 0.92rem;
    font-weight: 700;
}

.social-follow-card {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    color: inherit;
}

.social-follow-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-follow-card__icon svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: #ffffff;
}

.social-follow-card__icon.linkedin {
    background: #0a66c2;
}

.social-follow-card__icon.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 55%, #fcb045 100%);
}

.cta-final {
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin-top: var(--space-5);
}

.cta-final--compact h2 {
    font-size: clamp(1.45rem, 4vw, 2rem);
    margin-bottom: 0.7rem;
}

.cta-final--compact p {
    max-width: 58ch;
    margin: 0;
}

.cta-final--surface {
    background: linear-gradient(180deg, rgba(26, 58, 82, 0.95) 0%, rgba(15, 36, 56, 0.96) 100%);
}

.author-profile-page,
.article-page,
.archive-page {
    background: #f5f8fb;
}

.author-profile-card {
    gap: 1rem;
    align-items: flex-start;
}

.author-profile-card__avatar,
.author-profile-card--compact .author-profile-card__avatar {
    max-width: 108px;
    border-radius: 12px;
}

.article-hero {
    padding: var(--space-6) 0 var(--space-5);
}

.article-shell {
    max-width: 820px;
}

.article-main {
    padding: var(--space-5) 0 var(--space-6);
}

.scholarly-article {
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 58, 82, 0.1);
    box-shadow: var(--shadow-soft);
}

.footer {
    padding-top: var(--space-5);
}

.footer-content {
    gap: 1.4rem;
    padding-bottom: 1.2rem;
}

.footer-bottom {
    padding: 0.8rem 16px;
}

@media (min-width: 700px) {
    .container {
        padding: 0 20px;
    }

    .checklist-grid,
    .social-follow-grid,
    .help-grid--compact,
    .browse-grid,
    .contributor-grid,
    .compact-publication-grid,
    .values-grid,
    .past-recipients-grid,
    .what-coming-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 1.5rem;
    }

    .archive-stats-bar {
        flex-direction: row;
        align-items: stretch;
    }

    .archive-stat + .archive-stat::before {
        top: 10%;
        left: 0;
        width: 1px;
        height: 80%;
    }

    .archive-secondary-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 901px) {
    .site-logo {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .masthead-text h1 {
        font-size: 1.15rem;
    }

    .masthead-tagline {
        font-size: 0.66rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        max-height: none;
        overflow: visible;
    }

    .nav-links a {
        min-height: auto;
        padding: 0.2rem 0 0.35rem;
        border-radius: 0;
        background: transparent;
    }

    .nav-links a::after {
        display: block;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: transparent;
    }

    .hero-container,
    .homepage-primary-layout,
    .contact-primary-layout,
    .two-column-section,
    .author-guidelines-layout,
    .cta-final__content {
        grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
        gap: var(--space-5);
    }

    .contact-compact-layout {
        grid-template-columns: minmax(260px, 1fr) minmax(0, 1.5fr);
        gap: var(--space-5);
    }

    .author-guidelines-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compact-publication-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contributor-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .browse-grid--topics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .browse-grid--compact,
    .checklist-grid,
    .help-grid--compact,
    .social-follow-grid,
    .values-grid,
    .past-recipients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem 1.75rem;
        max-width: 1100px;
    }

    .archive-secondary-filters {
        grid-template-columns: minmax(0, 170px) minmax(0, 1fr) minmax(0, 1fr) minmax(0, max-content);
        align-items: end;
    }

    .archive-filter-action,
    .archive-clear-btn {
        width: auto;
    }

    .archive-clear-btn {
        max-width: 100%;
    }

    .publication-card--featured {
        padding: var(--space-6);
    }

    .publication-card__footer .btn {
        width: auto;
    }
}

@media (min-width: 1100px) {
    .hero-container {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
        gap: var(--space-6);
    }

    .page-header,
    .hero-section {
        padding: var(--space-7) 0 var(--space-6);
    }

    .browse-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   Homepage hero — minimal variant overrides
   ============================================ */

/* Short supporting description line below the journal title */
.hero-description {
    margin: 0 0 0.95rem;
    max-width: 46ch;
    font-size: 0.98rem;
    color: var(--navy-light);
    line-height: 1.68;
    font-weight: 400;
}

/* Secondary mission statement line — prominent but below the title */
.hero-mission-line {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    font-family: 'Georgia', serif;
}

/* Tagline is left-aligned within the minimal single-column hero */
.hero-section--minimal .hero-tagline {
    text-align: left;
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Inline archive link inside the tagline */
.hero-archive-link {
    display: inline-block;
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.82rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(90, 108, 125, 0.45);
    padding-bottom: 0.05rem;
}

.hero-archive-link:hover {
    color: var(--navy);
    border-bottom-color: currentColor;
}

.hero-section--minimal .hero-headline,
.hero-section--minimal .hero-left h1 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: clamp(2.55rem, 5.9vw, 3.1rem);
    line-height: 1.03;
}

.hero-section--minimal .hero-description {
    margin-bottom: 1rem;
}

.hero-section--minimal .hero-subtitle {
    margin: 0 0 1.75rem;
    max-width: 54ch;
    font-size: 1rem;
    line-height: 1.72;
    color: var(--text-light);
    font-weight: 400;
}

.hero-section--minimal .hero-actions {
    margin: 0 0 1.25rem;
    gap: 0.65rem;
}

.homepage-latest-section .section-heading--inline {
    margin-bottom: 0.72rem;
}

.homepage-latest-grid {
    gap: 1rem;
}

.homepage-latest-grid .compact-publication-card {
    height: 100%;
    gap: 0.72rem;
    padding: calc(var(--space-4) + 0.1rem);
}

.homepage-latest-grid .compact-publication-card h3 {
    font-size: 1.16rem;
    line-height: 1.35;
}

.homepage-latest-grid .compact-publication-card__meta {
    margin-top: 0.1rem;
}

.homepage-latest-grid .compact-publication-card__summary {
    margin-top: 0.2rem;
    line-height: 1.62;
}

@media (min-width: 901px) {
    .homepage-latest-grid .compact-publication-card:hover {
        transform: translateY(-1px);
    }
}

/* Disciplines list on About page */
.about-disciplines-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.3rem 1.5rem;
    margin: 0.75rem 0 1rem;
    padding-left: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

@media (min-width: 700px) {
    .about-disciplines-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Mobile hero improvements for the minimal variant */
@media (max-width: 768px) {
    .hero-section--minimal {
        padding: 1.6rem 0 1.45rem;
    }

    .hero-section--minimal + .main-content--dense {
        padding-top: var(--space-5);
    }

    /* Slightly smaller, less pill-like buttons inside the minimal hero on mobile */
    .hero-section--minimal .hero-actions .btn {
        border-radius: 8px;
        min-height: 42px;
        padding: 0.58rem 0.9rem;
        font-size: 0.88rem;
    }

    /* Keep actions compact to avoid visual dominance on smaller screens */
    .hero-section--minimal .hero-actions {
        gap: 0.5rem;
        margin-bottom: 0.95rem;
    }

    .hero-section--minimal .hero-actions .btn {
        width: auto;
        text-align: center;
    }

    .hero-section--minimal .hero-left h1,
    .hero-section--minimal .hero-headline {
        font-size: clamp(2.1rem, 8.2vw, 2.8rem);
        line-height: 1.06;
        margin-bottom: 0.95rem;
    }

    .hero-section--minimal .hero-description {
        max-width: 37ch;
        font-size: 0.9rem;
        margin-bottom: 0.72rem;
    }

    .hero-section--minimal .hero-mission-line {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .hero-section--minimal .hero-subtitle {
        max-width: 40ch;
        font-size: 0.92rem;
        line-height: 1.62;
        margin-bottom: 1.2rem;
    }

    .hero-section--minimal .hero-tagline {
        margin-top: 0;
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .homepage-latest-section .section-heading--inline {
        margin-bottom: 0.65rem;
    }

    .homepage-latest-grid {
        gap: 0.85rem;
    }

    .homepage-latest-grid .compact-publication-card {
        padding: var(--space-4);
    }

    .about-disciplines-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        list-style: none;
        gap: 0.65rem 1.25rem;
        margin: 0.75rem 0 0.95rem;
        padding: 0 0.2rem;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .about-disciplines-list li {
        position: relative;
        margin: 0;
        padding-left: 0.95rem;
    }

    .about-disciplines-list li::before {
        content: '•';
        position: absolute;
        left: 0;
        top: 0;
        color: var(--navy);
    }

    .about-disciplines-support {
        font-size: 0.9rem;
        color: var(--text-light);
    }
}

/* ============================================
   Mobile article page — premium editorial
   redesign (max-width: 768px)
   Overrides the 2026 refresh global rules
   for article pages only on small screens.
   ============================================ */

/* "+X more" tag toggle button — shared style */
.article-tag--more {
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
    background-color: transparent;
    border-color: rgba(26, 58, 82, 0.35);
    color: var(--navy);
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.article-tag--more:hover {
    background-color: rgba(26, 58, 82, 0.07);
    border-color: var(--navy);
}

@media (max-width: 768px) {
    /* --- Navbar: shave a few pixels so more content shows on load --- */
    .navbar {
        padding: 0.48rem 0;
    }

    .site-logo {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    /* Keep the dropdown aligned with the slimmer header */
    .nav-links {
        top: calc(50px + env(safe-area-inset-top, 0px));
    }

    /* --- Article hero: compact, 24 px side padding, rounded bottom edge --- */
    .article-hero {
        padding: 1.15rem 24px 1.15rem;
        border-radius: 0 0 28px 28px;
        border-bottom: none;
    }

    /* Category pill: clear separation before title */
    .article-category-pill {
        margin-bottom: 1.1rem;
    }

    /* Title: ~12% smaller so long titles land in 3-4 lines */
    .article-title {
        font-size: 1.62rem;
        line-height: 1.22;
        letter-spacing: -0.01em;
        margin-bottom: 1.15rem;
    }

    /* Author name: tight coupling to affiliation below */
    .article-byline {
        font-size: 1.01rem;
        margin-bottom: 0.2rem;
    }

    /* Degree + university on one compact line beneath the name */
    .article-affiliation {
        font-size: 0.88rem;
        line-height: 1.38;
        margin-bottom: 1rem;
    }

    /* Date + reading time only — hide the category (already shown as pill) */
    .article-hero .article-meta > span:first-child {
        display: none;
    }

    .article-meta {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.3rem 0.72rem;
        font-size: 0.87rem;
        margin-bottom: 1.15rem;
    }

    /* Tags row: tighter vertical gap before body */
    .article-tags {
        gap: 0.38rem;
        margin-bottom: 0;
    }

    /* Abstract card: larger radius, more padding, refined feel */
    .article-panel {
        padding: 1.3rem 1.4rem;
        border-radius: 10px;
    }

    /* Abstract heading: strong uppercase label */
    .article-panel h2 {
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--navy);
        margin-bottom: 0.7rem;
        padding: 0;
        border: none;
    }

    /* Body text: slightly larger + more open for phone reading */
    .article-body p,
    .article-panel p {
        font-size: 1.06rem;
        line-height: 1.78;
        margin-bottom: 1.1rem;
    }

    /* Article intro gap */
    .article-intro {
        gap: 1.05rem;
        margin-bottom: 1.6rem;
    }
}

/* ============================================
   Hero Two-Column Layout with Bulletin Archive
   ============================================ */

.hero-two-col {
    display: flex;
    align-items: stretch;
    gap: 2.4rem;
}

.hero-two-col .hero-left {
    flex: 1 1 0;
    min-width: 0;
}

/* Desktop bulletin archive panel */
.hero-bulletin-archive {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    border-left: 1px solid var(--border-color);
    padding-left: 1.5rem;
    max-height: 100%;
}

.hero-bulletin-mobile {
    display: none;
}

.bulletin-archive__eyebrow {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.01em;
    margin: 0;
}

.bulletin-archive__subtitle {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0 0 0.25rem;
    line-height: 1.5;
}

.bulletin-covers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.bulletin-cover-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.18rem;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    min-width: 0;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.bulletin-cover-link:hover {
    transform: translateY(-4px) scale(1.02);
}

.bulletin-cover-link:hover .bulletin-cover-img {
    box-shadow: 0 12px 30px rgba(26, 58, 82, 0.2);
    filter: brightness(1.04);
}

.bulletin-cover-img {
    width: 100%;
    max-width: 185px;
    height: auto;
    display: block;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(26, 58, 82, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.bulletin-cover-label {
    font-size: 0.73rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    margin-top: 0.15rem;
}

.bulletin-cover-cta {
    font-size: 0.72rem;
    color: var(--navy-light);
    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.01em;
    opacity: 0.8;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.bulletin-cover-link:hover .bulletin-cover-cta {
    opacity: 1;
    color: var(--navy);
}

/* Mobile carousel */
.bulletin-carousel {
    overflow: hidden;
    width: 100%;
}

.bulletin-carousel__track {
    display: flex;
    gap: 1rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

.bulletin-carousel__track .bulletin-cover-link {
    flex: 0 0 220px;
    width: 220px;
}

.bulletin-carousel__track .bulletin-cover-img {
    max-width: 220px;
    width: 220px;
}

.bulletin-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.bulletin-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

.bulletin-dot--active,
.bulletin-dot:focus-visible {
    background: var(--navy);
    outline: none;
}

/* Mobile: hide desktop archive, show carousel */
@media (max-width: 768px) {
    .hero-two-col {
        flex-direction: column;
    }

    .hero-bulletin-archive {
        display: none;
    }

    .hero-bulletin-mobile {
        display: block;
        padding: 1.2rem 20px 0.5rem;
        border-top: 1px solid var(--border-color);
        margin-top: 0.5rem;
    }

    .hero-bulletin-mobile .bulletin-archive__eyebrow {
        margin-bottom: 0.2rem;
    }

    .hero-bulletin-mobile .bulletin-archive__subtitle {
        margin-bottom: 0.75rem;
    }
}

/* ============================================
   Bulletin Pages
   ============================================ */

.bulletin-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.5rem 20px 4rem;
}

.bulletin-page__header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.bulletin-page__cover {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 24px rgba(26, 58, 82, 0.12);
    border: 1px solid var(--border-color);
}

.bulletin-page__volume {
    font-family: 'Georgia', serif;
    font-size: 1.75rem;
    color: var(--navy);
    font-weight: 700;
    margin: 0 0 0.25rem;
    text-align: center;
}

.bulletin-page__date {
    font-size: 0.88rem;
    color: var(--text-light);
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.bulletin-page__meta {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.bulletin-page__meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.bulletin-page__meta-number {
    font-family: 'Georgia', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.bulletin-page__meta-label {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bulletin-page__pages {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.bulletin-page__section-img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(26, 58, 82, 0.07);
}

.bulletin-page__section-label {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 0.75rem;
    font-family: 'Georgia', serif;
}

.bulletin-page__section-block {
    display: flex;
    flex-direction: column;
}

/* Only show the side-by-side bulletin archive at wider viewports */
@media (max-width: 899px) {
    .hero-bulletin-archive {
        display: none;
    }

    .hero-bulletin-mobile {
        display: block;
    }
}

@media (min-width: 900px) {
    .hero-bulletin-mobile {
        display: none;
    }

    .hero-bulletin-archive {
        display: flex;
    }

    .bulletin-covers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================
   Bulletin Cover Link — button reset
   ============================================ */
button.bulletin-cover-link {
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   Bulletin Viewer Overlay
   ============================================ */
/* ============================================
   Bulletin Viewer — Premium Digital Publication
   ============================================ */
.bv-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.bv-overlay.bv-visible {
    opacity: 1;
    pointer-events: all;
}

.bv-overlay[hidden] {
    display: none;
}

.bv-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 26, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.bv-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 96vw;
    background: transparent;
    overflow: visible;
}

/* Close button — top-right corner */
.bv-close {
    position: fixed;
    top: 1.1rem;
    right: 1.25rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 0.3rem 0.55rem;
    border-radius: 50%;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.bv-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

/* Stage — horizontal row with floating arrows flanking the image */
.bv-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
    padding: 0;
}

/* Floating side arrows */
.bv-arrow {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 2rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.bv-arrow:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: scale(1.08);
}

.bv-arrow:disabled {
    opacity: 0.2;
    cursor: default;
}

/* Image wrapper — fade transition */
.bv-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.bv-image-wrap.bv-fade-in {
    opacity: 1;
}

/* The bulletin page itself — floats naturally, fills ~90vh */
.bv-image {
    display: block;
    max-height: 90vh;
    max-width: calc(96vw - 8rem); /* leave room for arrows */
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.55), 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Indicator below image */
.bv-footer {
    margin-top: 0.9rem;
    text-align: center;
}

.bv-indicator {
    font-family: 'Georgia', serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .bv-stage {
        gap: 0.6rem;
    }

    .bv-arrow {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.5rem;
    }

    .bv-image {
        max-height: 85vh;
        max-width: calc(100vw - 5.5rem);
        border-radius: 4px;
    }

    .bv-close {
        top: 0.6rem;
        right: 0.75rem;
    }
}

/* ============================================
   Awards — Featured Card Refinements
   ============================================ */
.featured-award-card {
    background: linear-gradient(160deg, #ffffff 0%, #fbf8ef 100%);
    border: 1px solid #e0d0a0;
    border-top: 3px solid #c8a34d;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(26, 58, 82, 0.07);
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    max-width: 760px;
    margin: 0 auto;
    padding: 1.75rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.featured-award-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 58, 82, 0.12);
}

.featured-award-image {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    object-fit: contain;
    display: block;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(26, 58, 82, 0.1);
}

.featured-award-content h3 {
    font-size: 1.55rem;
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
}

.award-institution {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.award-citation {
    margin-bottom: 1.4rem;
    line-height: 1.7;
    color: var(--text-body, #444);
}

/* ============================================
   Awards — Past Recipient Cards Refinements
   ============================================ */
.past-recipient-card {
    background: #fdfaf2;
    border: 1px solid #e0d0a0;
    border-radius: 4px;
    padding: 1.5rem 1.4rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
}

.past-recipient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #c8a34d;
    border-radius: 4px 0 0 4px;
}

.past-recipient-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 82, 0.1);
}

.past-recipient-card h3 {
    font-size: 1.12rem;
    margin-bottom: 0.2rem;
    margin-top: 0.4rem;
}

.past-recipient-institution {
    color: var(--navy);
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
}

.past-recipient-card__meta {
    margin-bottom: 0;
}

/* ============================================
   Awards — Editorial Criteria Rows
   ============================================ */
.criteria-rows {
    margin-top: 2rem;
}

.criteria-row {
    padding: 1.4rem 0;
    border-top: 1px solid #e0d0a0;
}

.criteria-row:last-child {
    border-bottom: 1px solid #e0d0a0;
}

.criteria-row h4 {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.criteria-row p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--text-body, #555);
    max-width: 56ch;
}

@media (max-width: 640px) {
    .featured-award-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .featured-award-image {
        max-width: 180px;
    }
}

/* ============================================
   Mobile Compression Pass (max-width: 768px)
   Reduces overall page height ~35–45% on
   phones without touching tablet/desktop.
   ============================================ */

@media (max-width: 768px) {

    /* Body & paragraph rhythm */
    body {
        line-height: 1.5;
    }

    p {
        line-height: 1.5;
    }

    /* ── Hero ─────────────────────────────── */
    .hero-section {
        padding: 0.9rem 0 0.75rem;
    }

    .hero-section--minimal {
        padding: 1rem 16px 0.85rem;
    }

    .hero-section--minimal .hero-left h1,
    .hero-section--minimal .hero-headline {
        margin-bottom: 0.65rem;
    }

    .hero-section--minimal .hero-subtitle {
        margin-bottom: 0.75rem;
    }

    .hero-section--minimal .hero-actions {
        margin-bottom: 0.65rem;
    }

    .hero-stats-row {
        gap: 0.85rem;
        margin-top: 0.7rem;
        padding-top: 0.65rem;
    }

    .hero-tagline {
        margin-top: 0.55rem;
    }

    /* ── Page header ──────────────────────── */
    .page-header {
        padding: 0.9rem 0 0.75rem;
    }

    /* ── Main content / page content ─────── */
    .main-content,
    .page-content {
        padding-top: 0.85rem;
        padding-bottom: 1.1rem;
    }

    .main-content--dense,
    .page-content--dense {
        padding-top: 0.75rem;
    }

    /* ── Content sections & about sections ─ */
    .content-section,
    .about-section,
    .team-section {
        margin-bottom: 1rem;
    }

    .about-section {
        margin-bottom: 1rem;
    }

    .content-section h2,
    .about-section h3,
    .team-section h3 {
        margin-bottom: 0.6rem;
        padding-bottom: 0.4rem;
    }

    /* ── Homepage submission sections ────── */
    .publish-benefits,
    .submit-disciplines,
    .featured-articles,
    .latest-publication-section,
    .editorial-board,
    .review-process,
    .featured-topics,
    .cta-final,
    .follow-us-section,
    .homepage-latest-section,
    .homepage-award-section {
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .publish-benefits h2,
    .submit-disciplines h2,
    .featured-articles h2,
    .latest-publication-section h2,
    .editorial-board h2,
    .review-process h2,
    .featured-topics h2,
    .cta-final h2 {
        padding-bottom: 0.35rem;
        margin-bottom: 0.65rem;
    }

    /* ── Award banner ─────────────────────── */
    .award-banner {
        padding: 0.9rem 0;
        gap: 0.55rem;
    }

    /* ── Grids ────────────────────────────── */
    .topics-grid,
    .board-grid {
        gap: 0.65rem;
    }

    .board-member,
    .topic-card {
        padding: 0.8rem;
    }

    .articles-grid {
        gap: 0.6rem;
    }

    /* ── Article cards ────────────────────── */
    .article-card {
        padding: 0.85rem;
    }

    .article-card p {
        margin-bottom: 0.65rem;
    }

    /* ── Publication cards ────────────────── */
    .publication-card {
        padding: 0.9rem;
    }

    .publication-card__footer {
        margin-top: 0.65rem;
    }

    /* ── Process steps ────────────────────── */
    .process-steps {
        gap: 0.65rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .process-step {
        padding: 0.85rem;
    }

    /* ── CTA final ────────────────────────── */
    .cta-final {
        margin-top: 0.85rem;
        padding: 1rem;
    }

    .cta-final h2 {
        margin-bottom: 0.65rem;
    }

    .cta-final p {
        margin-bottom: 1rem;
    }

    /* ── Follow section ───────────────────── */
    .follow-us-section p {
        margin-bottom: 0.55rem;
    }

    /* ── Editorial board / featured editors ─ */
    .featured-editors {
        margin-bottom: 1.25rem;
    }

    .featured-editors h2 {
        margin-bottom: 1.1rem;
        padding-bottom: 0.6rem;
    }

    .editors-grid {
        gap: 1rem 1rem;
        max-width: 100%;
    }

    .editor-card {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        box-sizing: border-box;
    }

    .editor-headshot {
        width: 80px;
        height: 80px;
    }

    .editor-info {
        width: 100%;
    }

    .editor-info h3,
    .editor-title,
    .editor-credentials,
    .editor-bio {
        width: 100%;
        white-space: normal;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* ── Standards section ────────────────── */
    .standards-section {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }

    .standards-intro {
        font-size: 0.88rem;
        margin-bottom: 0.7rem;
        margin-top: 0;
        line-height: 1.5;
    }

    .standards-grid {
        border-top-width: 1px;
    }

    .standard-item {
        padding: 0.48rem 0 0.48rem 0;
    }

    .standard-item:nth-child(odd) {
        padding-right: 0.75rem;
        border-right: none;
    }

    .standard-item:nth-child(even) {
        padding-left: 0;
    }

    .standard-mark {
        font-size: 0.75rem;
        margin-top: 0.1rem;
    }

    .standard-item h4 {
        font-size: 0.875rem;
        margin-bottom: 0.1rem;
        line-height: 1.25;
    }

    .standard-item p {
        font-size: 0.83rem;
        line-height: 1.45;
    }

    /* ── Criteria list (awards page) ─────── */
    .criteria-list {
        margin-top: 1.1rem;
        gap: 0;
    }

    .criteria-item {
        padding: 0.9rem 0 0.85rem;
    }

    /* ── Past recipients grid ─────────────── */
    .past-recipients-grid,
    .future-awards-grid {
        gap: 1.1rem 1.5rem;
    }

    .past-recipient-entry {
        padding-top: 1rem;
    }

    /* ── Bulletin pages ───────────────────── */
    .bulletin-page {
        padding: 1.25rem 16px 2rem;
    }

    .bulletin-page__header {
        margin-bottom: 1.35rem;
        padding-bottom: 1.1rem;
    }

    .bulletin-page__cover {
        margin-bottom: 1.1rem;
    }

    .bulletin-page__pages {
        gap: 1.75rem;
    }

    /* ── Hero bulletin mobile strip ───────── */
    .hero-bulletin-mobile {
        padding: 0.75rem 16px 0.35rem;
        margin-top: 0.35rem;
    }

    .hero-bulletin-mobile .bulletin-archive__subtitle {
        margin-bottom: 0.5rem;
    }

    /* ── Contact compact ─────────────────── */
    .contact-compact-layout {
        gap: 1.1rem;
    }

    /* ── Section headings ────────────────── */
    .section-heading,
    .section-heading--inline,
    .section-heading--left {
        margin-bottom: 0.6rem;
    }

    /* ── Homepage latest section ─────────── */
    .homepage-latest-section .section-heading--inline {
        margin-bottom: 0.5rem;
    }

    .homepage-latest-grid {
        gap: 0.65rem;
    }

    /* ── Glance box ──────────────────────── */
    .glance-box {
        padding: 0.85rem;
    }

    .glance-box h3 {
        margin-bottom: 0.45rem;
        padding-bottom: 0.35rem;
    }

    .glance-item {
        padding: 0.38rem 0;
    }

    .glance-footer {
        margin-top: 0.6rem;
    }

    /* ── Recruitment banner ──────────────── */
    .recruitment-banner {
        margin-top: 0.5rem;
    }

    /* ── Footer ──────────────────────────── */
    .footer {
        padding-top: 0.9rem;
    }

    .footer-content {
        gap: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .footer-section h4 {
        margin-bottom: 0.3rem;
    }

    .footer-bottom {
        padding: 0.55rem 16px;
    }
}

/* ============================================
   Mobile-Only Improvements (max-width: 768px)
   About page – editor cards
   Awards page – recipients grid & criteria
   ============================================ */
@media (max-width: 768px) {

    /* ── About page: Editor cards ─────────── */
    .editor-card {
        flex-direction: row;
        align-items: flex-start;
        padding: 12px 14px;
        gap: 0.65rem;
    }

    .editor-headshot {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .editor-info {
        flex: 1;
        min-width: 0;
        gap: 0;
    }

    .editor-info h3 {
        font-size: 1rem;
        margin-bottom: 0.1rem;
        line-height: 1.2;
    }

    .editor-title {
        font-size: 0.65rem;
        margin-bottom: 0.15rem;
    }

    .editor-credentials {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .editor-bio {
        font-size: 0.77rem;
        line-height: 1.4;
        margin: 0;
    }

    .editors-grid {
        gap: 0.75rem;
    }

    .featured-editors {
        margin-bottom: 1rem;
    }

    .featured-editors h2 {
        margin-bottom: 0.85rem;
    }

    /* ── Awards page: Past recipients ─────── */
    .past-recipients-grid,
    .future-awards-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .past-recipient-entry {
        padding: 1.4rem 0 1.2rem;
        border-top: 1px solid #d6c9a8;
    }

    .past-recipient-entry h3 {
        font-size: 1.45rem;
        margin-bottom: 0.3rem;
    }

    .past-recipient-entry .award-label {
        margin-bottom: 0.5rem;
    }

    .past-recipient-entry .award-institution {
        margin-bottom: 0.45rem;
    }

    .past-recipient-entry .award-title {
        margin-bottom: 0.65rem;
    }

    /* ── Awards page: Criteria list ───────── */
    .criteria-list {
        grid-template-columns: 1fr;
        column-gap: 0;
        margin-top: 1.5rem;
    }

    .criteria-item {
        padding: 1.2rem 0 1.1rem;
    }

    .criteria-description {
        max-width: 100%;
    }

    /* ── Awards page: How Recipients section ─ */
    .awards-page .content-section p {
        line-height: 1.6;
    }
}

/* ============================================
   Archive — Desktop hero refinements (>768px)
   Spacing, composition, and stats prominence
   Mobile (≤768px) is untouched.
   ============================================ */
@media (min-width: 769px) {
    /* Tighter vertical padding on the compact header */
    .archive-page .page-header--compact {
        padding: 1.4rem 0 0.9rem;
    }

    /* Pull h1 margins tighter */
    .archive-page .page-header--compact h1 {
        margin-bottom: 0.35rem;
    }

    /* Intro sentence: centered, constrained, visually part of the header */
    .archive-page .page-header--compact .page-header__intro {
        text-align: center;
        max-width: 52ch;
        margin: 0 auto;
        font-size: 0.97rem;
    }

    /* Community section: less top gap, pulls it up into the hero */
    .archive-page .archive-community-section {
        margin-top: 0.6rem;
        margin-bottom: 0.85rem;
    }

    /* "Our Community" eyebrow: extend gold lines on each side */
    .archive-page .archive-community-eyebrow {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .archive-page .archive-community-eyebrow::before,
    .archive-page .archive-community-eyebrow::after {
        content: '';
        display: block;
        height: 1px;
        width: 5rem;
        background: var(--gold);
        opacity: 0.55;
    }

    /* Enlarge stats ~12% on desktop */
    .archive-page .archive-stat-value {
        font-size: 1.35rem;
    }

    .archive-page .archive-stat-label {
        font-size: 0.81rem;
    }

    /* Slightly more breathing room per stat cell */
    .archive-page .archive-stat {
        padding: 0.3rem 1.75rem;
    }
}

/* ============================================
   Recent Articles Page — Editorial Redesign
   ============================================ */

.recent-articles-page .page-header--compact {
    padding: 0.65rem 0 0.5rem;
}

.recent-articles-page .page-header__content {
    max-width: 740px;
    gap: 0.45rem;
    text-align: center;
    justify-items: center;
}

.recent-articles-page .page-header--compact h1 {
    font-size: clamp(1.7rem, 4vw, 2.35rem);
    margin-bottom: 0.15rem;
}

.recent-articles-page .page-header--compact .page-header__intro {
    max-width: 44ch;
}

.recent-articles-page .main-content--dense {
    padding-top: var(--space-2);
}

.recent-articles-page .content-section {
    margin-bottom: calc(var(--space-4) + 0.3rem);
}

.recent-articles-page .recent-featured-section {
    max-width: 100%;
}

.recent-articles-page .recent-featured-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
    gap: var(--space-4);
    align-items: stretch;
}

.recent-articles-page #recent-feed .publication-card--featured {
    border-left: none;
    border-top: 3px solid var(--navy);
    padding: var(--space-4);
    height: 100%;
}

.recent-articles-page #recent-feed .publication-card--featured .publication-card__header {
    gap: 0.55rem;
    margin-bottom: 0.7rem;
}

.recent-articles-page #recent-feed .publication-card--featured h3 {
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.recent-articles-page #recent-feed .publication-card__preview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--text-dark);
}

.recent-articles-page #recent-feed .publication-card__footer {
    margin-top: var(--space-3);
}

.recent-articles-page .collection-sidebar {
    display: grid;
    gap: 0.8rem;
    align-content: start;
    padding: var(--space-4);
    border: 1px solid rgba(26, 58, 82, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    background: #ffffff;
}

.recent-articles-page .collection-sidebar__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy-light);
}

.recent-articles-page .collection-sidebar__intro {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-dark);
}

.recent-articles-page .collection-sidebar__stats {
    display: grid;
    gap: 0.55rem;
    margin: 0;
}

.recent-articles-page .collection-sidebar__stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(26, 58, 82, 0.1);
}

.recent-articles-page .collection-sidebar__stat:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.recent-articles-page .collection-sidebar__stat dt {
    margin: 0;
    font-size: 0.79rem;
    letter-spacing: 0.02em;
    color: var(--text-light);
}

.recent-articles-page .collection-sidebar__stat dd {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
}

.recent-articles-page .collection-sidebar .btn {
    justify-self: start;
}

.recent-articles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.recent-articles-grid .compact-publication-card {
    gap: 0.5rem;
    grid-template-rows: auto minmax(3.2em, auto) auto minmax(0, 1fr);
    height: 100%;
    min-height: 250px;
    padding: var(--space-4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recent-articles-grid .compact-publication-card h3 {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-articles-grid .compact-publication-card__summary {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.89rem;
}

.recent-articles-grid .compact-publication-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 36, 56, 0.11);
}

.recent-articles-page .contributor-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.recent-articles-page .section-heading--centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0.95rem;
}

.recent-articles-page .section-heading--centered .section-intro {
    max-width: 50ch;
}

.recent-articles-page .contributor-card {
    display: grid;
    grid-template-rows: auto auto auto minmax(3.4em, auto) auto;
    gap: 0.42rem;
    height: 100%;
    min-height: 268px;
    padding: var(--space-4);
}

.recent-articles-page .contributor-card__name {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.15rem, 2.3vw, 1.35rem);
    line-height: 1.25;
    font-weight: 700;
    text-decoration: none;
}

.recent-articles-page .contributor-card__name:hover {
    text-decoration: underline;
}

.recent-articles-page .contributor-card__institution {
    margin: 0;
}

.recent-articles-page .contributor-card__descriptor {
    margin: 0;
    color: var(--text-light);
    font-size: 0.84rem;
    line-height: 1.45;
}

.recent-articles-page .contributor-card__summary {
    margin-top: 0.05rem;
    display: grid;
    gap: 0.18rem;
}

.recent-articles-page .contributor-card__summary-label {
    color: var(--text-light);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.recent-articles-page .contributor-card__summary-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.recent-articles-page .contributor-card__footer {
    margin-top: auto;
    padding-top: 0.6rem;
    gap: 0.45rem;
    display: grid;
    align-content: end;
}

.recent-articles-page .contributor-card .card-link {
    font-size: 0.84rem;
}

.recent-articles-page .cta-final--compact {
    margin-top: var(--space-4);
    margin-bottom: var(--space-3);
    padding: clamp(1.35rem, 3.5vw, 1.8rem);
}

.recent-articles-page .cta-final__content {
    gap: 0.55rem;
    max-width: 620px;
    margin: 0 auto;
    justify-items: center;
    text-align: center;
}

.recent-articles-page .cta-final--compact h2 {
    margin-bottom: 0.2rem;
    font-size: clamp(1.35rem, 3.4vw, 1.8rem);
}

.recent-articles-page .cta-final--compact p {
    max-width: 49ch;
    margin: 0;
}

.recent-articles-page .cta-final__actions {
    margin-top: 0.15rem;
    justify-content: center;
}

.recent-articles-page .footer {
    padding-top: var(--space-4);
}

/* Subtle hover on contributor cards */
.recent-articles-page .contributor-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recent-articles-page .contributor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 36, 56, 0.11);
}

@media (max-width: 980px) {
    .recent-articles-page .recent-featured-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .recent-articles-grid,
    .recent-articles-page .contributor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .recent-articles-grid,
    .recent-articles-page .contributor-grid {
        grid-template-columns: 1fr;
    }

    .recent-articles-page #recent-feed .publication-card--featured {
        padding: var(--space-4);
    }

    .recent-articles-page .collection-sidebar {
        padding: var(--space-4);
    }

    .recent-articles-page .contributor-card {
        padding: var(--space-4);
        min-height: 0;
    }

    .recent-articles-grid .compact-publication-card {
        height: auto;
        min-height: 0;
    }

    .recent-articles-grid .compact-publication-card h3 {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .recent-articles-grid .compact-publication-card__meta {
        white-space: normal;
        overflow: visible;
    }
}
