/* MAIN.CSS - Master Stylesheet for Ranking the Presidents */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    line-height: 1.8;
    color: #333;
    background-color: #f9f7f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #1a365d;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Logo image */
.brand-mark {
    height: 28px;
    width: auto;
    vertical-align: middle;
    margin-right: .5rem;
}

/* Header layout */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo container */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: .5rem;   /* optional: adds breathing room from edge */
}

/* Logo link */
.logo a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center; /* keeps image + text aligned */
}


nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23ddd" width="1200" height="400"/><text x="600" y="200" text-anchor="middle" font-size="40" fill="%23999">Mount Rushmore Background</text></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

/* Simple page header variant (no hero image) */
.page-header.simple{
  background: linear-gradient(135deg, #8b0000, #b22222 60%, #c53030);
  color: #fff;
}
.page-header.simple .container{
  padding: 2.5rem 0;
}
.page-header.simple h1{ color:#fff; }
.page-header.simple p{ color:#ffe8e8; }


.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}




/* Article Header */
.article-header {
    background: linear-gradient(135deg, #1a365d 0%, #dc2626 50%, #1a365d 100%);
    color: white;
    padding: 2.5rem 0;  /* Reduced from 3rem to 2rem */
    margin-bottom: 2rem;
}

/* Hero variant for overview pages with background images */
.article-header.hero {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    padding: 6rem 0;  /* Keep this larger for hero images */
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main Content Layout */
main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin: 3rem auto;
}

.article-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin: 3rem auto;
}

/* Presidential Portrait Section */
.president-intro {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.president-portrait {
    width: 200px;
    min-height: 250px;
    max-height: 350px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: #f0f4f8;
    justify-self: center;
}

.president-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.president-portrait-placeholder {
    width: 200px;
    min-height: 250px;
    background: #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    border: 1px solid #e2e8f0;
    text-align: center;
    font-size: 0.9rem;
    justify-self: center;
}

.president-basics {
    padding-left: 1rem;
}

.president-basics h2 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.basic-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.basic-info div {
    padding: 0.75rem 0;
    line-height: 1.4;
}

.basic-info strong {
    color: #dc2626;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.article-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blog-post {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.featured-president {
    background: linear-gradient(to right, #e0f2fe, #fee2e2);
    border: 2px solid #dc2626;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Headings */
.content-section h2,
.article-content h2,
.blog-post h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dc2626;
}

.featured-president h2 {
    color: #dc2626;
    margin-bottom: 1rem;
    border-bottom: none;
}

.content-section h3,
.article-content h3 {
    color: #dc2626;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
}

.content-section p,
.article-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: bold;
}

/* Featured Links */
.featured-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.featured-links a {
    background: white;
    padding: 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    color: #1a365d;
    text-align: center;
    transition: background-color 0.3s;
}

.featured-links a:hover {
    background: #f0f4f8;
}

/* Categories List with Custom Bullets */
.category-list {
    list-style: none;
    padding-left: 0;
}

.category-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.25rem;
}

.category-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* Sidebar */
.sidebar,
.article-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sidebar h3,
.sidebar-widget h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Progress Bar */
.progress-bar {
    background: #e0e0e0;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    background: #2b6cb0;
    height: 100%;
    width: 4.4%;
    transition: width 0.3s;
}

/* Status Lists */
.status-list {
    list-style: none;
    padding-left: 0;
}

.status-list li {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
}

.status-complete {
    background: #d1fae5;
    color: #065f46;
}

.status-current {
    background: #fef3c7;
    color: #92400e;
}

.status-upcoming {
    background: #e0e7ff;
    color: #3730a3;
}

/* Enhanced Links and Tooltips */
.info-link {
    color: #2b6cb0;
    text-decoration: none;
    border-bottom: 1px dotted #2b6cb0;
    position: relative;
    cursor: help;
}

.info-link:hover {
    color: #1a365d;
    border-bottom-style: solid;
}

.tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a365d;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.4;
    width: 250px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1000;
    text-align: left;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1a365d;
}

.info-link:hover .tooltip {
    opacity: 1;
}

/* External Links */
a.external {
    color: #2b6cb0;
    text-decoration: none;
    border-bottom: 1px solid #2b6cb0;
}

a.external:hover {
    color: #1a365d;
}

a.external::after {
    content: ' ↗';
    font-size: 0.8em;
    vertical-align: super;
}
.contact-section {
    background: #f0f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: #2b6cb0;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.social-x {
    background: #000000;
    color: white;
}

.social-bluesky {
    background: #00a8e8;
    color: white;
}

.social-link:hover {
    opacity: 0.9;
}

/* Email Subscription */
.email-subscription {
    margin-top: 1rem;
}

.email-subscription input[type="email"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.email-subscription button {
    width: 100%;
    padding: 0.5rem;
    background: #2b6cb0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.email-subscription button:hover {
    background: #1a365d;
}

/* Social Sharing Section (replaces comments) */
.social-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.social-section h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.social-section p {
    margin-bottom: 1rem;
}

.discussion-info {
    background: #f0f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.discussion-info h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.discussion-info p {
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    line-height: 1.4;
}

.discussion-info a {
    color: #2b6cb0;
    text-decoration: none;
    word-break: break-all;
}

/* Article Navigation */
.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.article-nav a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-nav a:hover {
    color: #1a365d;
}

.article-nav span {
    color: #94a3b8;
    font-style: italic;
}

/* Footer */
footer {
    background: #1a365d;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Tables */
.data-table,
.scores-table,
.rankings-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.data-table th,
.scores-table th,
.rankings-table th {
    background: #1a365d;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: normal;
}

.data-table td,
.scores-table td,
.rankings-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.data-table tr:nth-child(even),
.scores-table tr:nth-child(even),
.rankings-table tr:nth-child(even) {
    background: #f8fafc;
}

/* Score Boxes */
.final-score-box {
    background: linear-gradient(135deg, #dbeafe 0%, #fee2e2 100%);
    border: 3px solid #dc2626;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.final-score-box h3 {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.overall-score {
    font-size: 3rem;
    font-weight: bold;
    color: #dc2626;
    margin: 1rem 0;
}

.score-category {
    font-size: 1.2rem;
    color: #92400e;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    main,
    .article-container {
        grid-template-columns: 1fr;
    }
    
    .president-intro {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .president-portrait,
    .president-portrait-placeholder {
        margin: 0 auto;
    }
    
    .president-basics {
        padding-left: 0;
    }
    
    .basic-info {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .featured-links {
        grid-template-columns: 1fr;
    }
    
    .article-content,
    .content-section {
        padding: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .overall-score {
        font-size: 2.5rem;
    }
    
    .article-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Poetry Widgets */
.haiku-widget, .limerick-widget {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    padding: 1.5rem;
}

.haiku-widget {
    background: linear-gradient(135deg, #f0f4f8, #e6fffa);
    border: 1px solid #81e6d9;
}

.limerick-widget {
    background: linear-gradient(135deg, #fffaf0, #fef5e7);  
    border: 1px solid #f6ad55;
}

.haiku-widget h3, .limerick-widget h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Haiku Styling */
.haiku {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.25rem;
    border-left: 4px solid #4fd1c7;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.haiku p {
    font-family: Georgia, serif;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    color: #2d3748;
    font-size: 0.95rem;
}

/* Limerick Styling */
.limerick {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.25rem;
    border-left: 4px solid #f6ad55;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.limerick p {
    font-family: 'Trebuchet MS', sans-serif;
    line-height: 1.4;
    margin: 0;
    color: #744210;
    font-size: 0.9rem;
}

/* Context Text */
.poem-context {
    font-size: 0.8rem;
    color: #718096;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .haiku-widget, .limerick-widget {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
    }
    
    .haiku p, .limerick p {
        font-size: 0.85rem;
    }
}

/* Enhanced Search Highlighting Styles */

/* Search term highlighting on pages */
.search-highlight-term {
    background: linear-gradient(45deg, #fef3c7, #fed7aa);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: bold;
    color: #92400e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.search-highlight-term:hover {
    background: linear-gradient(45deg, #fcd34d, #fb923c);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Search highlight notification */
.search-highlight-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #1a365d, #2b6cb0);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: slideInRight 0.3s ease-out;
    max-width: 300px;
}

.search-highlight-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.search-highlight-notification .clear-highlights-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.search-highlight-notification .clear-highlights-btn:hover {
    background: rgba(255,255,255,0.3);
}

.search-highlight-notification .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 2px;
    transition: background-color 0.3s;
    margin-left: auto;
}

.search-highlight-notification .close-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Animation for notification */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Improved search highlight in search results */
.search-highlight {
    background: linear-gradient(45deg, #fef3c7, #fed7aa);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-weight: bold;
    color: #92400e;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .search-highlight-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
    
    .search-highlight-notification .notification-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem;
    }
    
    .search-highlight-term {
        padding: 0.15rem 0.25rem;
        font-size: 0.95em;
    }
}

/* Pulse animation for first highlighted term */
@keyframes highlightPulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(251, 191, 36, 0.3);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
        transform: scale(1);
    }
}

/* Animation for notification */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Improved search highlight in search results */
.search-highlight {
    background: linear-gradient(45deg, #fef3c7, #fed7aa);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    font-weight: bold;
    color: #92400e;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* switching to chatgpt */
.search-highlight-term {
    background-color: yellow;
    padding: 0 2px;
    border-radius: 2px;
}

.search-coverage-note{
  margin-top:1rem;
  background:#fff7ed;
  border:1px solid #fdba74;
  color:#7c2d12;
  padding:0.75rem 1rem;
  border-radius:8px;
  font-size:0.95rem;
}
.search-coverage-note strong{ color:#c2410c; }

/* Hide filters by default */
.search-filters { display: none; }

/* Optional: toggle link */
.search-toggle {
  margin: .5rem 0 1rem;
  font-size: .95rem;
}
.search-toggle button{
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
  padding: .4rem .8rem;
  border-radius: 6px;
  cursor: pointer;
}
.search-toggle button:hover{ background:#dbeafe; }



/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .search-highlight-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
    
    .search-highlight-notification .notification-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .search-highlight-term {
        padding: 0.15rem 0.25rem;
    }
}


/* === Hero (images only, overlays OFF) === */
.page-header.simple{
  position: relative;
  color:#fff;
  background:
    /* gradient for title readability */
    linear-gradient(180deg, rgba(11,58,110,.70), rgba(11,58,110,.24)),

    /* overlays disabled
    url('images/overlays/ai-graph.svg?v=10') right -60px top -90px / 1800px auto no-repeat,
    url('images/overlays/ai-wave.svg?v=10') center bottom / 100% 42% no-repeat,
    */

    /* hero photo */
    var(--hero-url) center var(--hero-pos, 30%) / cover no-repeat;

  /* overlays disabled
  background-blend-mode: normal, normal, screen, normal;
  */
}
.page-header.simple .container{ position: relative; z-index: 1; }


/* === Poems widget === */
.sidebar-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}

.sidebar-card-title {
  font-family: var(--heading-font, Georgia, "Times New Roman", serif);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 .5rem;
  color: #0f172a;
}

.poetry-card + .poetry-card { margin-top: 1rem; }

.poetry-text div { line-height: 1.55; }

.poetry-context {
  margin-top: .5rem;
  font-size: .9rem;
  color: #64748b;
}

/* Poem Card Styles */
/* === Poems cards === */
.poem-card {
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.poem-card h3 {
  margin: 0 0 .6rem;
  font-weight: 700;
  font-size: 1.1rem;
}

/* lighter backgrounds */
.poem-card.haiku    { background: #f0fff4; border-left: 6px solid #38a169; } /* light green */
.poem-card.limerick { background: #fff7ed; border-left: 6px solid #dd6b20; } /* light orange */

.poem-text p    { margin: .25rem 0; line-height: 1.55; font-style: italic; }
.poem-context   { margin-top: .5rem; font-size: .9rem; color: #64748b; }

/* Restore side padding in simple hero */
.page-header.simple .container{
  padding: 2.5rem clamp(16px, 4vw, 48px);
}

/* (Optional) enforce gutters on all hero variants */
.page-header .container{
  padding-inline: clamp(16px, 4vw, 48px);
}

