/* ============================================
   GP SINGLE TEMPLATES - MODERN DESIGN v2.0
   ============================================
   
   Inspired by Apple Newsroom + NAACP
   - Hero section with blurred background overlay
   - Title/meta above image
   - Featured image breaks out of dark zone
   - Clean content on light gray background
   - Gold + black pill system
   
   ============================================ */

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
    /* Colors - Primary */
    --gp-black: #000000;
    --gp-white: #FFFFFF;
    --gp-gold: #DFB859;
    --gp-gold-dark: #C9A64A;
    --gp-gold-light: rgba(223, 184, 89, 0.1);
    
    /* Colors - Grays */
    --gp-gray-50: #FAFAFA;
    --gp-gray-100: #F5F5F7;
    --gp-gray-200: #E5E5E5;
    --gp-gray-300: #D4D4D4;
    --gp-gray-400: #A3A3A3;
    --gp-gray-500: #737373;
    --gp-gray-600: #525252;
    --gp-gray-700: #404040;
    --gp-gray-800: #262626;
    --gp-gray-900: #171717;
    
    /* Colors - Semantic */
    --gp-bg-page: #F5F5F7;
    --gp-bg-card: #FFFFFF;
    --gp-border: #E5E5E5;
    
    /* Colors - Badges */
    --gp-green: #2D8540;
    --gp-red: #dc2626;
    --gp-blue: #3B82F6;
    
    /* Gradient */
    --gp-gradient: linear-gradient(135deg, #FF8E63 0%, #FF7EB0 50%, #9B6DFF 100%);
    
    /* Typography */
    --gp-font-heading: 'Trade Gothic Next', 'Arial Black', Helvetica, sans-serif;
    --gp-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --gp-space-1: 4px;
    --gp-space-2: 8px;
    --gp-space-3: 12px;
    --gp-space-4: 16px;
    --gp-space-5: 20px;
    --gp-space-6: 24px;
    --gp-space-8: 32px;
    --gp-space-10: 40px;
    --gp-space-12: 48px;
    --gp-space-16: 64px;
    
    /* Layout */
    --gp-container-max: 1200px;
    --gp-content-max: 700px;
    --gp-image-max: 900px;
    --gp-header-height: 64px;
    
    /* Borders */
    --gp-radius-sm: 4px;
    --gp-radius-md: 8px;
    --gp-radius-lg: 12px;
    --gp-radius-xl: 16px;
    --gp-radius-2xl: 24px;
    --gp-radius-full: 9999px;
    
    /* Shadows */
    --gp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --gp-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --gp-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --gp-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --gp-transition: 200ms ease;
    --gp-transition-slow: 400ms ease;
}

/* ============================================
   BASE RESET
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.gp-single {
    font-family: var(--gp-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gp-gray-900);
    background-color: var(--gp-bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* Hide Kadence theme elements */
body.gp-single .site-header,
body.gp-single #masthead,
body.gp-single .kadence-header,
body.gp-single .site-footer,
body.gp-single #colophon {
    display: none !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--gp-transition);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   HEADER (Dark, minimal)
   ============================================ */
.gp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--gp-header-height);
    background-color: var(--gp-black);
}

.gp-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: var(--gp-container-max);
    margin: 0 auto;
    padding: 0 var(--gp-space-6);
}

.gp-header__logo img,
.gp-header__logo svg {
    height: 40px;
    width: auto;
}

.gp-header__nav {
    display: flex;
    align-items: center;
    gap: var(--gp-space-8);
}

.gp-header__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-gray-400);
    transition: color var(--gp-transition);
}

.gp-header__link:hover {
    color: var(--gp-white);
}

.gp-header__actions {
    display: flex;
    align-items: center;
    gap: var(--gp-space-4);
}

.gp-header__signin {
    font-size: 14px;
    color: var(--gp-gray-400);
}

.gp-header__signin:hover {
    color: var(--gp-white);
}

.gp-header__signup {
    padding: 10px 20px;
    background: var(--gp-gradient);
    color: var(--gp-white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--gp-radius-md);
    transition: transform var(--gp-transition), box-shadow var(--gp-transition);
}

.gp-header__signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(155, 109, 255, 0.4);
}

.gp-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
}

.gp-header__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gp-white);
}

/* ============================================
   HERO SECTION (NAACP-inspired)
   ============================================ */
.gp-hero {
    position: relative;
    margin-top: var(--gp-header-height);
    padding: var(--gp-space-12) var(--gp-space-6) 0;
    background-color: var(--gp-gray-900);
    overflow: visible;
}

/* Blurred background image */
.gp-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.4);
    transform: scale(1.1);
    z-index: 0;
}

.gp-hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

/* Hero content wrapper */
.gp-hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--gp-image-max);
    margin: 0 auto;
    text-align: center;
}

/* Meta line (pill + date) */
.gp-hero__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gp-space-4);
    margin-bottom: var(--gp-space-5);
}

.gp-hero__meta-divider {
    color: var(--gp-gray-500);
    font-size: 14px;
}

/* Category pill */
.gp-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: var(--gp-radius-full);
}

.gp-pill--gold {
    background-color: var(--gp-gold);
    color: var(--gp-black);
}

.gp-pill--black {
    background-color: var(--gp-gray-800);
    color: var(--gp-white);
}

.gp-pill--outline {
    background-color: transparent;
    border: 1px solid var(--gp-gray-500);
    color: var(--gp-gray-300);
}

.gp-pill--breaking {
    background-color: var(--gp-red);
    color: var(--gp-white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Date */
.gp-hero__date {
    font-size: 14px;
    color: var(--gp-gray-400);
}

/* Title */
.gp-hero__title {
    font-family: var(--gp-font-heading);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gp-white);
    margin: 0 0 var(--gp-space-4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Subtitle */
.gp-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gp-gray-300);
    max-width: 650px;
    margin: 0 auto var(--gp-space-8);
}

/* Featured image container - breaks out of hero */
.gp-hero__image-wrapper {
    position: relative;
    max-width: var(--gp-image-max);
    margin: 0 auto;
    transform: translateY(60px);
}

.gp-hero__image {
    width: 100%;
    border-radius: var(--gp-radius-xl);
    overflow: hidden;
    box-shadow: var(--gp-shadow-xl);
}

.gp-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Image caption */
.gp-hero__caption {
    text-align: center;
    font-size: 13px;
    color: var(--gp-gray-500);
    font-style: italic;
    margin-top: var(--gp-space-3);
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.gp-content {
    position: relative;
    z-index: 1;
    padding: calc(60px + var(--gp-space-10)) var(--gp-space-6) var(--gp-space-16);
    background-color: var(--gp-bg-page);
}

.gp-content__inner {
    max-width: var(--gp-content-max);
    margin: 0 auto;
}

/* Reading time / author line */
.gp-content__byline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gp-space-4);
    margin-bottom: var(--gp-space-8);
    padding-bottom: var(--gp-space-6);
    border-bottom: 1px solid var(--gp-gray-200);
}

.gp-content__reading-time {
    font-size: 14px;
    color: var(--gp-gray-500);
}

.gp-content__author {
    display: flex;
    align-items: center;
    gap: var(--gp-space-3);
}

.gp-content__author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.gp-content__author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gp-gray-700);
}

/* ============================================
   ARTICLE BODY
   ============================================ */
.gp-article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gp-gray-800);
}

.gp-article-body > * + * {
    margin-top: var(--gp-space-6);
}

.gp-article-body p {
    margin: 0;
}

.gp-article-body p + p {
    margin-top: var(--gp-space-6);
}

.gp-article-body h2 {
    font-family: var(--gp-font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gp-gray-900);
    margin-top: var(--gp-space-12);
    margin-bottom: var(--gp-space-4);
}

.gp-article-body h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--gp-gray-900);
    margin-top: var(--gp-space-10);
    margin-bottom: var(--gp-space-3);
}

.gp-article-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gp-gray-900);
    margin-top: var(--gp-space-8);
    margin-bottom: var(--gp-space-2);
}

.gp-article-body a {
    color: var(--gp-gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gp-article-body a:hover {
    color: var(--gp-gold);
}

.gp-article-body strong {
    font-weight: 600;
    color: var(--gp-gray-900);
}

.gp-article-body em {
    font-style: italic;
}

/* Lists */
.gp-article-body ul,
.gp-article-body ol {
    padding-left: var(--gp-space-6);
}

.gp-article-body li {
    margin-bottom: var(--gp-space-2);
}

.gp-article-body li::marker {
    color: var(--gp-gold);
}

/* Images in content */
.gp-article-body img {
    border-radius: var(--gp-radius-lg);
    margin: var(--gp-space-8) 0;
}

.gp-article-body figure {
    margin: var(--gp-space-10) 0;
}

.gp-article-body figcaption {
    font-size: 14px;
    color: var(--gp-gray-500);
    text-align: center;
    margin-top: var(--gp-space-3);
    font-style: italic;
}

/* Blockquotes / Pull Quotes */
.gp-article-body blockquote,
.gp-pull-quote {
    position: relative;
    margin: var(--gp-space-10) 0;
    padding: var(--gp-space-6) var(--gp-space-8);
    background-color: var(--gp-gray-50);
    border-left: 4px solid var(--gp-gold);
    border-radius: 0 var(--gp-radius-lg) var(--gp-radius-lg) 0;
}

.gp-article-body blockquote p,
.gp-pull-quote__text {
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    color: var(--gp-gray-800);
    margin: 0;
}

.gp-article-body blockquote cite,
.gp-pull-quote__cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--gp-gray-600);
    margin-top: var(--gp-space-4);
}

.gp-pull-quote__cite::before {
    content: '— ';
}

/* Code blocks */
.gp-article-body pre {
    background-color: var(--gp-gray-900);
    color: var(--gp-gray-100);
    padding: var(--gp-space-6);
    border-radius: var(--gp-radius-lg);
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
}

.gp-article-body code {
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 0.9em;
    background-color: var(--gp-gray-100);
    padding: 2px 6px;
    border-radius: var(--gp-radius-sm);
}

.gp-article-body pre code {
    background: none;
    padding: 0;
}

/* Horizontal rule */
.gp-article-body hr {
    border: none;
    height: 1px;
    background-color: var(--gp-gray-200);
    margin: var(--gp-space-12) 0;
}

/* ============================================
   VIDEO EMBED (Podcasts)
   ============================================ */
.gp-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--gp-radius-xl);
    margin-bottom: var(--gp-space-8);
    box-shadow: var(--gp-shadow-lg);
}

.gp-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Podcast info card */
.gp-podcast-info {
    display: flex;
    align-items: flex-start;
    gap: var(--gp-space-6);
    padding: var(--gp-space-6);
    background-color: var(--gp-white);
    border-radius: var(--gp-radius-lg);
    margin-bottom: var(--gp-space-8);
    box-shadow: var(--gp-shadow-sm);
}

.gp-podcast-info__cover {
    width: 120px;
    height: 120px;
    border-radius: var(--gp-radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.gp-podcast-info__details {
    flex: 1;
}

.gp-podcast-info__show {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gp-gold-dark);
    margin-bottom: var(--gp-space-2);
}

.gp-podcast-info__episode {
    font-size: 14px;
    color: var(--gp-gray-500);
    margin-bottom: var(--gp-space-3);
}

.gp-podcast-info__guest {
    display: flex;
    align-items: center;
    gap: var(--gp-space-3);
    margin-top: var(--gp-space-4);
}

.gp-podcast-info__guest-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.gp-podcast-info__guest-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gp-gray-800);
}

.gp-podcast-info__guest-title {
    font-size: 13px;
    color: var(--gp-gray-500);
}

/* Audio player */
.gp-audio-player {
    width: 100%;
    margin: var(--gp-space-6) 0;
}

.gp-audio-player audio {
    width: 100%;
    border-radius: var(--gp-radius-md);
}

/* ============================================
   RELATED TAGS
   ============================================ */
.gp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gp-space-2);
    margin-top: var(--gp-space-12);
    padding-top: var(--gp-space-8);
    border-top: 1px solid var(--gp-gray-200);
}

.gp-tags__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gp-gray-500);
    margin-right: var(--gp-space-2);
    align-self: center;
}

.gp-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--gp-radius-full);
    transition: all var(--gp-transition);
}

.gp-tag--gold {
    background-color: var(--gp-gold);
    color: var(--gp-black);
}

.gp-tag--gold:hover {
    background-color: var(--gp-gold-dark);
}

.gp-tag--black {
    background-color: var(--gp-gray-800);
    color: var(--gp-white);
}

.gp-tag--black:hover {
    background-color: var(--gp-gray-700);
}

/* ============================================
   SHARE SECTION
   ============================================ */
.gp-share {
    display: flex;
    align-items: center;
    gap: var(--gp-space-4);
    margin-top: var(--gp-space-10);
    padding-top: var(--gp-space-6);
    border-top: 1px solid var(--gp-gray-200);
}

.gp-share__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-gray-500);
}

.gp-share__buttons {
    display: flex;
    gap: var(--gp-space-2);
}

.gp-share__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gp-gray-100);
    color: var(--gp-gray-600);
    transition: all var(--gp-transition);
}

.gp-share__btn:hover {
    background-color: var(--gp-gray-200);
    color: var(--gp-gray-900);
}

.gp-share__btn--copied {
    background-color: var(--gp-green);
    color: var(--gp-white);
}

.gp-share__btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   RELATED POSTS
   ============================================ */
.gp-related {
    margin-top: var(--gp-space-16);
    padding: var(--gp-space-12) var(--gp-space-6);
    background-color: var(--gp-white);
}

.gp-related__inner {
    max-width: var(--gp-container-max);
    margin: 0 auto;
}

.gp-related__title {
    font-family: var(--gp-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gp-gray-900);
    margin: 0 0 var(--gp-space-8);
}

.gp-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gp-space-6);
}

.gp-related__card {
    display: flex;
    flex-direction: column;
    background-color: var(--gp-bg-page);
    border-radius: var(--gp-radius-lg);
    overflow: hidden;
    transition: transform var(--gp-transition), box-shadow var(--gp-transition);
}

.gp-related__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gp-shadow-lg);
}

.gp-related__card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.gp-related__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--gp-transition-slow);
}

.gp-related__card:hover .gp-related__card-image img {
    transform: scale(1.05);
}

.gp-related__card-content {
    padding: var(--gp-space-5);
}

.gp-related__card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gp-gold-dark);
    margin-bottom: var(--gp-space-2);
}

.gp-related__card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--gp-gray-900);
    margin: 0 0 var(--gp-space-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gp-related__card-date {
    font-size: 13px;
    color: var(--gp-gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.gp-footer {
    background-color: var(--gp-black);
    padding: var(--gp-space-8) var(--gp-space-6);
}

.gp-footer__inner {
    max-width: var(--gp-container-max);
    margin: 0 auto;
    text-align: center;
}

.gp-footer__text {
    font-size: 14px;
    color: var(--gp-gray-500);
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.gp-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background-color: var(--gp-black);
    padding: var(--gp-space-6);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.gp-mobile-nav.is-open {
    transform: translateX(0);
}

.gp-mobile-nav__close {
    position: absolute;
    top: var(--gp-space-4);
    right: var(--gp-space-4);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gp-white);
}

.gp-mobile-nav__close svg {
    width: 24px;
    height: 24px;
}

.gp-mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: var(--gp-space-4);
    padding-top: var(--gp-space-16);
}

.gp-mobile-nav__link {
    font-size: 20px;
    font-weight: 600;
    color: var(--gp-white);
}

/* ============================================
   BACK LINK
   ============================================ */
.gp-back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--gp-space-2);
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-gray-400);
    margin-bottom: var(--gp-space-6);
    transition: color var(--gp-transition);
}

.gp-back-link:hover {
    color: var(--gp-white);
}

.gp-back-link svg {
    width: 16px;
    height: 16px;
}

/* Position back link in hero */
.gp-hero .gp-back-link {
    position: absolute;
    top: var(--gp-space-6);
    left: var(--gp-space-6);
    z-index: 2;
}

/* ============================================
   RESPONSIVE: Tablet (< 1024px)
   ============================================ */
@media (max-width: 1023px) {
    .gp-header__nav {
        display: none;
    }
    
    .gp-header__toggle {
        display: flex;
    }
    
    .gp-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE: Mobile (< 768px)
   ============================================ */
@media (max-width: 767px) {
    .gp-hero {
        padding: var(--gp-space-8) var(--gp-space-4) 0;
    }
    
    .gp-hero__title {
        font-size: 26px;
    }
    
    .gp-hero__subtitle {
        font-size: 16px;
    }
    
    .gp-hero__image-wrapper {
        transform: translateY(40px);
    }
    
    .gp-hero__meta {
        flex-direction: column;
        gap: var(--gp-space-2);
    }
    
    .gp-hero__meta-divider {
        display: none;
    }
    
    .gp-content {
        padding: calc(40px + var(--gp-space-8)) var(--gp-space-4) var(--gp-space-12);
    }
    
    .gp-article-body {
        font-size: 17px;
    }
    
    .gp-article-body h2 {
        font-size: 24px;
    }
    
    .gp-article-body h3 {
        font-size: 20px;
    }
    
    .gp-article-body blockquote p,
    .gp-pull-quote__text {
        font-size: 18px;
    }
    
    .gp-related__grid {
        grid-template-columns: 1fr;
    }
    
    .gp-share {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--gp-space-3);
    }
    
    .gp-podcast-info {
        flex-direction: column;
        text-align: center;
    }
    
    .gp-podcast-info__cover {
        margin: 0 auto;
    }
    
    .gp-podcast-info__guest {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE: Small Mobile (< 480px)
   ============================================ */
@media (max-width: 479px) {
    .gp-hero__title {
        font-size: 22px;
    }
    
    .gp-hero__image-wrapper {
        transform: translateY(30px);
        margin-left: calc(-1 * var(--gp-space-4));
        margin-right: calc(-1 * var(--gp-space-4));
        max-width: calc(100% + var(--gp-space-8));
    }
    
    .gp-hero__image {
        border-radius: 0;
    }
    
    .gp-content {
        padding-top: calc(30px + var(--gp-space-6));
    }
    
    .gp-content__byline {
        flex-direction: column;
        gap: var(--gp-space-2);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .gp-header,
    .gp-footer,
    .gp-share,
    .gp-related,
    .gp-back-link,
    .gp-mobile-nav {
        display: none !important;
    }
    
    .gp-hero {
        margin-top: 0;
        background: none;
        padding: var(--gp-space-6);
    }
    
    .gp-hero__bg {
        display: none;
    }
    
    .gp-hero__title {
        color: var(--gp-black);
    }
    
    .gp-hero__image-wrapper {
        transform: none;
    }
    
    .gp-content {
        padding-top: var(--gp-space-6);
    }
}
