/* ========================================
   BLOG PAGE — Apple Newsroom Style
   SF Pro / Inter, clean white, generous spacing
   ======================================== */

/* ─── Blog page: navbar scrolls away (not sticky) ─── */
.navbar {
    position: absolute !important;
    background: #ffffff !important;
}

/* ─── Apple-Style Sticky Sub-Nav ─── */
.newsroom-subnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
}

.newsroom-subnav.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.subnav-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subnav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1d1d1f;
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: color 0.2s;
}

.subnav-brand:hover {
    color: #424245;
}

.subnav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.subnav-link {
    font-size: 0.8rem;
    font-weight: 400;
    color: #aeaeb2;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 0;
    transition: color 0.2s;
    white-space: nowrap;
}

.subnav-link:hover {
    color: #6e6e73;
}

.subnav-link.active {
    color: #1d1d1f;
    font-weight: 600;
}

.subnav-search {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 400;
    color: #424245;
    text-decoration: none;
    padding: 7px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 100px;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

.subnav-search:hover {
    border-color: #86868b;
    color: #1d1d1f;
}

.subnav-search i {
    font-size: 0.7rem;
}

/* ─── Newsroom AI Search Overlay ─── */
.newsroom-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.45);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.3s;
}

.newsroom-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.newsroom-search-panel {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow-y: auto;
}

.newsroom-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    margin: 0 20px;
}

.newsroom-search-icon {
    color: #86868b;
    font-size: 1rem;
    flex-shrink: 0;
}

.newsroom-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
    color: #1d1d1f;
    background: transparent;
    letter-spacing: -0.01em;
}

.newsroom-search-bar input::placeholder {
    color: #86868b;
}

.newsroom-search-close {
    background: none;
    border: none;
    color: #0071e3;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.15s;
    white-space: nowrap;
}

.newsroom-search-close:hover {
    background: rgba(0, 113, 227, 0.08);
}

.newsroom-search-suggestions {
    padding: 20px 24px 8px;
}

.newsroom-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.newsroom-quick-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 4px;
    white-space: nowrap;
}

.newsroom-quick-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.85);
    color: #1d1d1f;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.newsroom-quick-chip:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #0071e3;
}

.newsroom-search-results {
    padding: 12px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.newsroom-result-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 4px 4px;
}

.newsroom-result-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    text-decoration: none;
    color: #1d1d1f;
    transition: all 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.newsroom-result-item:hover {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.newsroom-result-thumb {
    width: 72px;
    height: 54px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f5f5f7;
}

.newsroom-result-content {
    flex: 1;
    min-width: 0;
}

.newsroom-result-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.3;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsroom-result-snippet {
    font-size: 0.8rem;
    color: #6e6e73;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsroom-result-meta {
    font-size: 0.7rem;
    color: #86868b;
    margin-top: 4px;
}

.newsroom-ai-answer {
    margin: 0 20px 8px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    border-left: 3px solid #0071e3;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.newsroom-ai-answer .ai-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #0071e3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.newsroom-ai-answer .ai-text {
    font-size: 0.9rem;
    color: #1d1d1f;
    line-height: 1.6;
}

/* AI typing cursor */
.ai-cursor {
    color: #0071e3;
    font-weight: 300;
    animation: aiCursorBlink 0.6s ease-in-out infinite;
}

.ai-cursor-done {
    animation: aiCursorFade 0.5s ease-out forwards;
}

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

@keyframes aiCursorFade {
    to { opacity: 0; }
}

/* AI typing dots — inline in label */
.ai-typing-dots {
    display: inline-flex;
    gap: 3px;
    align-items: center;
}

.ai-typing-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0071e3;
    animation: aiDotBounce 1.2s ease-in-out infinite;
}

.ai-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.ai-typing-dots span:nth-child(3) { animation-delay: 0.3s; }

.ai-typing-dots.ai-dots-done span {
    animation: none;
    opacity: 1;
}

@keyframes aiDotBounce {
    0%, 60%, 100% { opacity: 0.25; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.2); }
}

/* Quick chip as button */
.newsroom-quick-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.85);
    color: #1d1d1f;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.newsroom-search-empty {
    text-align: center;
    padding: 32px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.newsroom-search-empty .hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
}

/* ─── Apple-Style Hero: Centered Logo + "Newsroom" ─── */
.blog-hero {
    position: relative;
    padding-top: calc(var(--nav-height, 64px) + 80px);
    padding-bottom: 80px;
    text-align: center;
    background: #fff;
    border-bottom: none;
    overflow: hidden;
    /* Sticky hero — stays fixed while video scrolls over */
    position: sticky;
    top: 0;
    z-index: 1;
}

.blog-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    /* Will be animated by JS on scroll */
    transition: none;
    will-change: transform, opacity;
}

/* Main "Newsroom" title — Apple "Stories" style with inline logo */
.blog-hero-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", sans-serif;
    font-size: clamp(3.2rem, 8vw, 5.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #1d1d1f;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.12em;
    opacity: 0;
    animation: heroTitleRise 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

/* Logo mark inline inside title — like Apple  icon */
.blog-hero-logo {
    display: inline-block;
    height: 0.72em;
    width: auto;
    vertical-align: 0.02em;
    margin-right: 0.15em;
    flex-shrink: 0;
}

/* Subtitle — Apple's bold tagline style */
.blog-hero-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 700;
    line-height: 1.42;
    color: #1d1d1f;
    max-width: 620px;
    margin: 0 auto;
    opacity: 0;
    animation: heroSubtitleRise 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* ─── Hero Animations — Apple dramatic rise from below ─── */
@keyframes heroTitleRise {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.96);
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroSubtitleRise {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Apple-Style Hero Video Section ─── */
.blog-video-section {
    background: #fff;
    padding: 0 20px 56px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: heroFadeUp 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.blog-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #1a1a2e 100%);
    background-size: 400% 400%;
    animation: videoShimmer 3s ease infinite;
    aspect-ratio: 16 / 9;
    border-radius: 24px !important;
    -webkit-border-radius: 24px !important;
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

@keyframes videoShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.blog-video-wrapper iframe,
.blog-video-wrapper > div:not(img) {
    position: absolute;
    top: -60px;
    left: -4px;
    width: calc(100% + 8px) !important;
    height: calc(100% + 120px) !important;
    border: none;
    pointer-events: none;
    display: block;
    filter: contrast(1.15) brightness(1.12) saturate(1.2);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    z-index: 1;
    opacity: 0 !important;
    transition: opacity 0.8s ease;
}

/* Force-hide the YouTube player container and any iframe until revealed by JS */
#blogHeroVideo,
#blogHeroVideo iframe {
    opacity: 0 !important;
    transition: opacity 0.8s ease;
}
#blogHeroVideo.video-ready,
#blogHeroVideo.video-ready iframe {
    opacity: 1 !important;
}

/* ─── Article-style text below video (Apple Newsroom) ─── */
.blog-video-story {
    max-width: 1000px;
    margin: 0 auto;
    padding: 36px 24px 0;
    background: #fff;
    text-align: center;
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}

.blog-video-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: #bf4800;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.blog-video-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.025em;
    line-height: 1.12;
    margin: 0 0 12px;
}

.blog-video-date {
    font-size: 0.92rem;
    color: #86868b;
    margin: 0;
    font-weight: 400;
}

/* ─── Typography Reset ─── */
.blog-hero,
.blog-hero *,
.newsroom-section,
.newsroom-section *,
.blog-post-hero,
.blog-post-hero *,
.blog-post-content,
.blog-post-content * {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ─── Scroll reveal animation for sections below hero ─── */
.newsroom-section,
.story-feature-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.newsroom-section.revealed,
.story-feature-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Blog card stagger fade-in ─── */
.blog-card {
    opacity: 0;
    transform: translateY(24px);
    animation: cardReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-card:nth-child(2) { animation-delay: 0.12s; }
.blog-card:nth-child(3) { animation-delay: 0.19s; }
.blog-card:nth-child(4) { animation-delay: 0.26s; }
.blog-card:nth-child(5) { animation-delay: 0.33s; }
.blog-card:nth-child(6) { animation-delay: 0.40s; }
.blog-card:nth-child(7) { animation-delay: 0.47s; }
.blog-card:nth-child(8) { animation-delay: 0.54s; }
.blog-card:nth-child(9) { animation-delay: 0.61s; }
.blog-card:nth-child(10) { animation-delay: 0.68s; }

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Category Tabs (Apple filter bar) ─── */
.blog-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 0;
}

.blog-tab {
    padding: 10px 18px 12px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    color: #6e6e73;
    transition: all 0.2s ease;
    letter-spacing: 0;
    margin-bottom: -1px;
}

.blog-tab.active {
    background: transparent;
    border-color: transparent;
    border-bottom-color: #1d1d1f;
    color: #1d1d1f;
    font-weight: 600;
}

.blog-tab:hover {
    color: #1d1d1f;
    border-color: transparent;
    border-bottom-color: #86868b;
}

/* ─── Newsroom Section ─── */
.newsroom-section {
    background: #fff;
    padding: 0 0 40px;
    position: relative;
    z-index: 2;
}

.newsroom-section .container {
    max-width: 1040px;
}

/* ─── Blog Grid (Apple Newsroom 2-col grid) ─── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin: 0 auto 56px;
    max-width: 980px;
    padding: 0;
}

.blog-grid .blog-card {
    overflow: visible;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    display: flex;
    flex-direction: column;
}

.blog-grid .blog-card:hover {
    opacity: 1;
    background: transparent !important;
    box-shadow: none !important;
}

.blog-grid .blog-image,
.blog-grid .blog-image-slider {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    box-shadow: none;
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f7;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-grid .blog-card:hover .blog-image,
.blog-grid .blog-card:hover .blog-image-slider {
    transform: scale(1.02);
}

.blog-grid .blog-content {
    padding: 14px 0 0 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.blog-grid .blog-category {
    display: inline-block;
    padding: 3px 10px;
    border: none;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff !important;
    margin-bottom: 8px;
}

.blog-grid .blog-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.022em;
    color: #1d1d1f;
    margin-bottom: 6px;
    margin-top: 0;
}

.blog-grid .blog-date {
    font-size: 0.82rem;
    color: #86868b;
    font-weight: 400;
}

.blog-grid .blog-content p {
    display: none;
}

.blog-grid .blog-meta {
    margin-top: 0;
}

/* ─── Bottom Blog Grid — Apple feature card slider (clone) ─── */
.blog-slider-wrapper {
    position: relative;
    overflow: visible;
}

.blog-grid-bottom {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 0;
}

.blog-grid-bottom::-webkit-scrollbar {
    display: none;
}

.blog-grid-bottom .blog-card {
    flex: 0 0 calc(28.5% - 12px);
    min-width: 280px;
    height: 640px;
    scroll-snap-align: start;
    background: #f5f5f7;
    border: none;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: none;
    cursor: pointer;
}

.blog-grid-bottom .blog-card:hover {
    transform: none;
    box-shadow: none;
    opacity: 1;
}

/* Text at top of card */
.blog-grid-bottom .blog-content {
    padding: 28px 28px 12px;
    text-align: left;
    flex-shrink: 0;
    order: -1;
}

.blog-grid-bottom .blog-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.025em;
    color: #1d1d1f;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-grid-bottom .blog-category {
    font-size: 0.7rem;
    margin-bottom: 10px;
    padding: 3px 10px;
    background: none !important;
    color: #1d1d1f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-grid-bottom .blog-meta {
    display: none;
}

/* Image fills remaining space — full edge cover */
.blog-grid-bottom .blog-image {
    flex: 1 1 auto;
    aspect-ratio: unset !important;
    border-radius: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    min-height: 0;
    max-width: none;
    background-size: cover !important;
    background-position: center !important;
}

.blog-grid-bottom .blog-image-slider {
    flex: 1 1 auto;
    aspect-ratio: unset !important;
    border-radius: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    min-height: 0;
    max-width: none;
}

.blog-grid-bottom .blog-card:hover .blog-image {
    transform: none;
}

/* + button at bottom of each card */
.blog-grid-bottom .blog-card::after {
    content: '+';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #424245;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    color: #fff;
    z-index: 2;
}

.blog-grid-bottom .blog-card {
    position: relative;
}

/* Slider navigation arrows — hidden, auto-scroll handles navigation */
.slider-arrow {
    display: none !important;
}

/* ─── Regular Card ─── */
.blog-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    border-color: transparent;
    transform: none;
    box-shadow: none;
    opacity: 1;
}

.blog-card a {
    text-decoration: none;
    color: inherit;
}

.blog-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f5f5f7;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-image {
    transform: scale(1.015);
}

/* Sliding image carousel for multi-image blog cards */
.blog-image-slider {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.blog-image-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.blog-image-slider .slide.active {
    opacity: 1;
}

.blog-card:nth-child(2n) .blog-image,
.blog-card:nth-child(3n) .blog-image {
    background-color: #f5f5f7;
}

.blog-content {
    padding: 18px 2px 0 2px;
}

/* Category label — Apple-style colored pill badge */
.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: #1d7a1d;
    border: none;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 12px;
}

.blog-read-time {
    font-size: 0.75rem;
    color: #86868b;
    margin-left: 0;
    display: none;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #1d1d1f;
    letter-spacing: -0.025em;
}

.blog-content p {
    font-size: 0.9rem;
    color: #6e6e73;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.88rem;
    color: #6e6e73;
    gap: 0;
    margin-top: 4px;
}

.blog-author {
    font-weight: 400;
    color: #86868b;
}

.blog-read-more {
    display: none;
}

/* Date styling (Apple Newsroom format) */
.blog-date {
    font-size: 0.85rem;
    color: #86868b;
    font-weight: 400;
}

/* ─── Featured Quote Card (Apple-style) ─── */
.quote-card {
    grid-column: 1 / -1;
    background: #f5f5f7;
    border-radius: 20px;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.quote-card .quote-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #bf4800;
}

.quote-card blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1d1d1f;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0;
    border: none;
}

.quote-card .quote-author {
    font-size: 0.95rem;
    color: #6e6e73;
    font-weight: 400;
}

.quote-card .quote-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #06c;
    text-decoration: none;
    margin-top: 4px;
}

.quote-card .quote-link:hover {
    text-decoration: underline;
}

/* ─── Pagination — Apple "View Archive" link ─── */
.blog-pagination {
    display: flex;
    justify-content: center;
    padding: 48px 0 16px;
}

.view-archive-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #06c;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
}

.view-archive-link:hover {
    text-decoration: underline;
}

.archive-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.view-archive-link:hover .archive-arrow {
    transform: translateX(3px);
}

/* ─── Topics — Apple inline links below divider ─── */
.topics-inline-section {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
}

.topics-divider {
    height: 1px;
    background: #d2d2d7;
    margin-bottom: 24px;
}

.topics-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.topic-pill {
    display: inline-block;
    padding: 7px 18px;
    border: 2px solid #e8e8ed;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    background: #fff;
    color: #1d1d1f;
}
/* Color rotation for topic pills */
.topic-pill:nth-child(1) { border-color: #0071e3; color: #0071e3; } /* All - blue */
.topic-pill:nth-child(2) { border-color: #ff6b35; color: #ff6b35; } /* orange */
.topic-pill:nth-child(3) { border-color: #25D366; color: #25D366; } /* green */
.topic-pill:nth-child(4) { border-color: #af52de; color: #af52de; } /* purple */
.topic-pill:nth-child(5) { border-color: #ff3b30; color: #ff3b30; } /* red */
.topic-pill:nth-child(6) { border-color: #0A66C2; color: #0A66C2; } /* linkedin blue */
.topic-pill:nth-child(7) { border-color: #ff9500; color: #ff9500; } /* amber */
.topic-pill:nth-child(8) { border-color: #30b0c7; color: #30b0c7; } /* teal */
.topic-pill:nth-child(9) { border-color: #ff2d55; color: #ff2d55; } /* pink */
.topic-pill:nth-child(10) { border-color: #5856d6; color: #5856d6; } /* indigo */
.topic-pill:nth-child(n+11) { border-color: #64d2ff; color: #007aff; } /* fallback */

.topic-pill:hover {
    transform: translateY(-1px);
    filter: brightness(0.9);
}
/* Active pill fills with its border color */
.topic-pill.active {
    color: #fff !important;
}
.topic-pill:nth-child(1).active { background: #0071e3; border-color: #0071e3; }
.topic-pill:nth-child(2).active { background: #ff6b35; border-color: #ff6b35; }
.topic-pill:nth-child(3).active { background: #25D366; border-color: #25D366; }
.topic-pill:nth-child(4).active { background: #af52de; border-color: #af52de; }
.topic-pill:nth-child(5).active { background: #ff3b30; border-color: #ff3b30; }
.topic-pill:nth-child(6).active { background: #0A66C2; border-color: #0A66C2; }
.topic-pill:nth-child(7).active { background: #ff9500; border-color: #ff9500; }
.topic-pill:nth-child(8).active { background: #30b0c7; border-color: #30b0c7; }
.topic-pill:nth-child(9).active { background: #ff2d55; border-color: #ff2d55; }
.topic-pill:nth-child(10).active { background: #5856d6; border-color: #5856d6; }
.topic-pill:nth-child(n+11).active { background: #007aff; border-color: #007aff; }

/* ─── Section overrides for Apple white bg ─── */
.section {
    background: #fff;
}

/* ─── Archive Link (Apple style) ─── */
.archive-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #06c;
    text-decoration: none;
    margin-top: 16px;
    transition: color 0.2s;
}

.archive-link:hover {
    text-decoration: underline;
}

.archive-link i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.archive-link:hover i {
    transform: translateX(3px);
}


/* ─── Featured Story Card (Apple Newsroom quote + image) ─── */
.story-feature-section {
    background: #fff;
    padding: 0 20px 64px;
    position: relative;
    z-index: 2;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.story-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f5f7;
    border-radius: 24px;
    overflow: hidden;
    min-height: 520px;
}

.story-feature-text {
    padding: 56px 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.story-feature-category {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    background: #bf4800;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 24px;
}

.story-feature-quote {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: #1d1d1f;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    padding: 0;
    border: none;
}

.story-feature-author {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.4;
    margin: 0 0 28px;
}

.story-feature-btn {
    display: inline-block;
    width: fit-content;
    padding: 10px 22px;
    background: #1d1d1f;
    color: #fff;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 16px;
}

.story-feature-btn:hover {
    background: #424245;
}

.story-feature-subtitle {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.4;
    margin: 0;
}

.story-feature-image {
    overflow: hidden;
}

.story-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .story-feature-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .story-feature-text {
        padding: 36px 28px 32px;
    }

    .story-feature-quote {
        font-size: 1.3rem;
    }

    .story-feature-image {
        aspect-ratio: 4 / 3;
    }
}

/* ========================================
   BLOG POST PAGE — Apple Article Style
   ======================================== */

.blog-post-hero {
    padding-top: calc(var(--nav-height, 64px) + 80px);
    padding-bottom: 24px;
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
}

.blog-post-content {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 80px;
    background: #fff;
}

.blog-post-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 48px 0 16px;
    color: #1d1d1f;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.blog-post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 36px 0 12px;
    color: #1d1d1f;
    letter-spacing: -0.01em;
}

.blog-post-content p {
    font-size: 1.05rem;
    color: #1d1d1f;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.003em;
}

.blog-post-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-post-content li {
    list-style: disc;
    font-size: 1rem;
    color: #1d1d1f;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ─── Back link ─── */
.blog-post-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #06c;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 32px;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post-back:hover {
    text-decoration: underline;
}

/* ─── Featured image ─── */
.blog-post-featured {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
}

/* ─── Tag pill ─── */
.blog-post-tag {
    display: inline-block;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #bf4800;
    margin-right: 12px;
    margin-bottom: 10px;
}

/* ─── Title ─── */
.blog-post-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem) !important;
    font-weight: 700;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
    color: #1d1d1f;
    letter-spacing: -0.025em;
}

/* ─── Meta bar ─── */
.blog-post-meta-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #86868b;
    font-size: 0.88rem;
    margin-bottom: 40px;
    padding-bottom: 0;
    border-bottom: none;
    flex-wrap: wrap;
}

.blog-post-meta-bar .author {
    font-weight: 600;
    color: #1d1d1f;
}

/* ─── Body content ─── */
.blog-post-body {
    line-height: 1.85;
    color: #1d1d1f;
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 32px 0;
}

.blog-post-body a {
    color: #06c;
    text-decoration: underline;
}

.blog-post-body blockquote {
    border-left: 3px solid #1d1d1f;
    padding: 16px 24px;
    margin: 32px 0;
    background: #f5f5f7;
    border-radius: 0 12px 12px 0;
    font-style: normal;
    font-size: 1.15rem;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.6;
}

.blog-post-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-body th,
.blog-post-body td {
    padding: 12px 16px;
    border: 1px solid #d2d2d7;
    text-align: left;
    font-size: 0.92rem;
}

.blog-post-body th {
    background: #f5f5f7;
    font-weight: 600;
    color: #1d1d1f;
}

/* ─── CTA box ─── */
.blog-post-cta {
    background: #f5f5f7;
    border: none;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    margin-top: 56px;
}

.blog-post-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #1d1d1f;
    font-weight: 700;
}

.blog-post-cta p {
    color: #6e6e73;
    margin-bottom: 20px;
}

.blog-post-cta .cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #1d1d1f;
    color: #fff;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
}

.blog-post-cta .cta-btn:hover {
    background: #000;
    transform: translateY(-1px);
    opacity: 1;
}

/* ─── Share bar ─── */
.blog-post-share {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #d2d2d7;
    align-items: center;
    flex-wrap: wrap;
}

.blog-post-share span {
    font-weight: 600;
    font-size: 0.88rem;
    color: #6e6e73;
}

.blog-post-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f7;
    border: 1px solid #d2d2d7;
    color: #6e6e73;
    font-size: 0.92rem;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

/* Colorful brand-specific share buttons (by ID) */
#shareTwitter {
    background: #000;
    border-color: #000;
    color: #fff;
}
#shareTwitter:hover {
    background: #333;
    border-color: #333;
    transform: scale(1.1);
}

#shareLinkedin {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #fff;
}
#shareLinkedin:hover {
    background: #004182;
    border-color: #004182;
    transform: scale(1.1);
}

#shareWhatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}
#shareWhatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: scale(1.1);
}

#shareCopy {
    background: #FF6B35;
    border-color: #FF6B35;
    color: #fff;
}
#shareCopy:hover {
    background: #e05520;
    border-color: #e05520;
    transform: scale(1.1);
}

.blog-post-share a:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ─── Loading ─── */
.blog-post-loading {
    text-align: center;
    padding: 140px 0 80px;
    background: #fff;
}

.blog-post-loading .spinner {
    width: 32px;
    height: 32px;
    border: 2px solid #d2d2d7;
    border-top-color: #1d1d1f;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto;
}

.blog-post-error {
    text-align: center;
    padding: 140px 0 80px;
    background: #fff;
}

.blog-post-error h2 {
    font-size: 1.4rem;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.blog-post-error p {
    color: #6e6e73;
    margin-bottom: 24px;
}

.blog-post-error a {
    color: #06c;
    font-weight: 600;
}


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1068px) {
    .blog-hero-inner,
    .newsroom-section .container {
        max-width: 100%;
        padding: 0 32px;
    }
    .blog-post-hero,
    .blog-post-content {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding-top: calc(var(--nav-height, 64px) + 40px);
        padding-bottom: 40px;
    }

    .blog-hero-title {
        font-size: clamp(2.8rem, 11vw, 4rem);
    }

    .blog-hero-subtitle {
        font-size: 1.05rem;
    }

    /* Sub-nav mobile: hide extra links, keep brand + search */
    .subnav-link:not(.active) {
        display: none;
    }

    .subnav-brand {
        font-size: 1.1rem;
    }

    .subnav-search {
        font-size: 0.72rem;
        padding: 6px 12px;
    }

    /* Newsroom search overlay — mobile */
    .newsroom-search-panel {
        padding-top: 20px;
    }

    .newsroom-search-bar {
        margin: 0 12px;
        padding: 12px 16px;
        border-radius: 12px;
    }

    .newsroom-search-bar input {
        font-size: 0.95rem;
    }

    .newsroom-search-suggestions {
        padding: 16px 16px 4px;
    }

    .newsroom-quick-links {
        gap: 6px;
    }

    .newsroom-quick-chip {
        font-size: 0.76rem;
        padding: 5px 12px;
    }

    .newsroom-search-results {
        padding: 10px 12px 20px;
    }

    .newsroom-result-thumb {
        width: 56px;
        height: 42px;
    }

    .newsroom-ai-answer {
        margin: 0 12px 8px;
        padding: 14px 16px;
    }

    .blog-video-section {
        padding: 0 16px 32px;
    }

    .blog-video-wrapper {
        border-radius: 16px;
    }

    .blog-video-title {
        font-size: 1.4rem;
    }

    .blog-video-story {
        padding: 20px 4px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-grid .blog-image,
    .blog-grid .blog-image-slider {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }

    .blog-grid .blog-content h3 {
        font-size: 1.25rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .blog-grid .blog-content {
        padding: 12px 0 0;
    }

    .blog-grid .blog-category {
        display: none;
    }

    .blog-grid .blog-date {
        font-size: 0.75rem;
    }

    .blog-grid .blog-content p {
        display: none;
    }

    .blog-grid-bottom .blog-card {
        flex: 0 0 78vw;
        min-width: 280px;
        height: 520px;
        border-radius: 20px;
    }

    .blog-grid-bottom .blog-content {
        padding: 22px 20px 8px;
    }

    .blog-grid-bottom .blog-content h3 {
        font-size: 1.1rem;
        -webkit-line-clamp: 3;
    }

    .blog-grid-bottom .blog-category {
        font-size: 0.6rem;
        padding: 3px 8px;
        margin-bottom: 6px;
    }

    .blog-grid-bottom .blog-image {
        flex: 1 1 auto !important;
        width: 100% !important;
        min-height: 0 !important;
        aspect-ratio: unset !important;
        background-size: cover !important;
        background-position: center !important;
        border-radius: 0 !important;
        margin: 0 !important;
        max-width: none !important;
    }

    .blog-grid-bottom .blog-card::after {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
        bottom: 10px;
        right: 10px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .slider-arrow.prev { left: -4px; }
    .slider-arrow.next { right: -4px; }

    .blog-tabs {
        gap: 0;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .blog-tabs::-webkit-scrollbar {
        display: none;
    }

    .blog-tab {
        padding: 8px 14px 10px;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .blog-post-hero,
    .blog-post-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .blog-post-title {
        font-size: 1.6rem !important;
    }

    .blog-post-cta {
        padding: 32px 24px;
    }

    .quote-card {
        padding: 32px 24px;
    }

    .quote-card blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 2.4rem;
    }

    .blog-post-title {
        font-size: 1.4rem !important;
    }

    .blog-grid-bottom .blog-card {
        flex: 0 0 82vw;
        min-width: 260px;
        height: 480px;
        border-radius: 18px;
    }

    .blog-grid-bottom .blog-content h3 {
        font-size: 1rem;
    }
}

/* ========================================
   APPLE-STYLE VERTICAL STORY LIST
   Matches apple.com/newsroom/apple-stories
   ======================================== */
.apple-story-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.apple-story-card {
    display: flex;
    align-items: stretch;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid #d2d2d7;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.apple-story-card:last-child {
    border-bottom: 1px solid #d2d2d7;
}

.apple-story-card:hover {
    opacity: 0.85;
}

.apple-story-card:nth-child(even) {
    flex-direction: row-reverse;
}

.apple-story-image {
    flex: 0 0 420px;
    min-height: 280px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
}

.apple-story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
}

.apple-story-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6e6e73;
    margin-bottom: 10px;
}

.apple-story-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.025em;
    line-height: 1.18;
    margin: 0 0 14px;
}

.apple-story-summary {
    font-size: 0.95rem;
    color: #6e6e73;
    line-height: 1.55;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.apple-story-date {
    font-size: 0.78rem;
    color: #86868b;
    letter-spacing: -0.01em;
}

/* ── Feature quote break (Apple-style wide card with image) ── */
.apple-story-quote-break {
    background: #f5f5f7;
    border-radius: 22px;
    padding: 0;
    margin: 40px 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 380px;
}

.apple-quote-content {
    flex: 1;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apple-quote-image {
    flex: 0 0 45%;
    min-height: 100%;
}

.apple-story-quote-break .apple-story-quote-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #bf4800;
    margin-bottom: 18px;
}

.apple-story-quote-break blockquote {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.22;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    padding: 0;
    border: none;
    font-style: normal;
}

.apple-story-quote-break .apple-story-quote-author {
    font-size: 0.85rem;
    color: #6e6e73;
    line-height: 1.5;
    margin: 0 0 20px;
}

.apple-story-quote-break .apple-story-quote-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0066cc;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.apple-story-quote-break .apple-story-quote-link:hover {
    text-decoration: underline;
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
    .apple-story-card {
        flex-direction: column !important;
        gap: 20px;
        padding: 28px 0;
    }

    .apple-story-image {
        flex: none;
        width: 100%;
        min-height: 200px;
        border-radius: 14px;
    }

    .apple-story-title {
        font-size: 1.25rem;
    }

    .apple-story-summary {
        font-size: 0.88rem;
    }

    .apple-story-quote-break {
        flex-direction: column;
        padding: 0;
        border-radius: 16px;
        margin: 24px 0;
    }

    .apple-quote-content {
        padding: 28px 24px;
    }

    .apple-quote-image {
        flex: none;
        width: 100%;
        min-height: 220px;
        border-radius: 0;
    }

    .apple-story-quote-break blockquote {
        font-size: 1.2rem;
    }
}