/* Blog Page Styles */

:root {
    --color-bg: #ffffff;
    --color-ink: #0a0a0a;
    --color-ink-secondary: #555;
    --color-ink-muted: #999;
    --color-accent: #D14950;
    --color-accent-hover: #b93e45;
    --color-border: rgba(10, 10, 10, 0.08);
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-ink-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }



/* ===== Hero ===== */
.blog-hero {
    padding-top: 5rem;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}
.blog-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
}

.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.blog-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-accent);
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--color-ink-muted);
    font-weight: 400;
}

.blog-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--color-ink);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 1.4rem;
}

.blog-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-ink-secondary);
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 3rem;
}

.blog-hero-img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.blog-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.blog-hero-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-hero-text {
    flex: 1;
    min-width: 0;
}


/* ===== Modern Podcast Player ===== */
.blog-podcast {
    background: #fff;
    margin: 0;
    padding: 2rem 2rem;
    position: relative;
}

.blog-podcast-inner {
    width: 100%;
    max-width: 860px;
    margin: 0;
    background: #0a0a0a;
    border-radius: 16px;
    padding: 0.85rem 1.25rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Decorative gradient blob behind player */
.blog-podcast-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(209,73,80,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.podcast-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.podcast-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.podcast-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 2;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.podcast-accent-inline {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.38);
    font-weight: 300;
    line-height: 1;
    margin-left: 0.25rem;
}

.podcast-accent-inline strong {
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

.podcast-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(209,73,80,0.12);
    border: 1px solid rgba(209,73,80,0.3);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
}

.podcast-badge svg {
    flex-shrink: 0;
}

.podcast-pulse {
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.podcast-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.podcast-desc-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.65;
    max-width: 500px;
}

/* Waveform decorative bars */
.podcast-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
    flex-shrink: 0;
    opacity: 0.35;
}

.waveform-bar {
    width: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}
.waveform-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { height: 32px; animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { height: 16px; animation-delay: 0.15s; }
.waveform-bar:nth-child(7) { height: 28px; animation-delay: 0.25s; }
.waveform-bar:nth-child(8) { height: 14px; animation-delay: 0.35s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

/* Player card */
.podcast-player-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.podcast-player {
    width: 100%;
    accent-color: var(--color-accent);
    border-radius: 8px;
    outline: none;
}

video.podcast-player {
    border-radius: 12px;
    background: #000;
    display: block;
}

/* Aussie accent notice */
.podcast-accent-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.2rem;
    padding: 0.9rem 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 2px solid var(--color-accent);
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.podcast-accent-flag {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.podcast-accent-note p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.podcast-accent-note p strong {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ===== Article Body ===== */
.blog-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.blog-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-section-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.blog-section-label .line {
    width: 24px;
    height: 1px;
    background: var(--color-accent);
    flex-shrink: 0;
}

.blog-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--color-ink);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.blog-lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-ink);
    line-height: 1.85;
}

.blog-section p {
    font-size: 0.97rem;
    line-height: 1.9;
    font-weight: 300;
    color: var(--color-ink-secondary);
}

.blog-section p strong {
    color: var(--color-ink);
    font-weight: 600;
}

/* Stats row */
.blog-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--color-ink);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    margin-top: 0.5rem;
}

.blog-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.66rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* List */
.blog-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0;
}

.blog-list li {
    font-size: 0.92rem;
    color: var(--color-ink-secondary);
    font-weight: 400;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.65;
}

.blog-list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

/* ===== CTA Footer ===== */
.blog-footer {
    padding: 4rem 2rem;
    background: #fafafa;
    border-top: 1px solid var(--color-border);
}

.blog-footer-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.blog-footer-inner h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 0.5rem;
    letter-spacing: -0.015em;
}

.blog-footer-inner p {
    font-size: 0.9rem;
    color: var(--color-ink-secondary);
    font-weight: 300;
    max-width: 380px;
}

.blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}
.blog-cta:hover { background: var(--color-accent-hover); transform: translateY(-1px); }

/* ===== Pre-podcast intro text ===== */
.blog-pre-podcast {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}
.blog-pre-podcast-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.blog-pre-podcast-inner .blog-lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-ink);
    line-height: 1.85;
}
.blog-pre-podcast-inner p {
    font-size: 0.97rem;
    line-height: 1.9;
    font-weight: 300;
    color: var(--color-ink-secondary);
}
.blog-pre-podcast-inner p strong {
    color: var(--color-ink);
    font-weight: 600;
}

/* ===== Spotify-style Player ===== */
.sp-player {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.sp-thumb {
    flex-shrink: 0;
}

.sp-thumb-art {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
}

.sp-info {
    flex-shrink: 0;
    min-width: 140px;
}

.sp-track {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.sp-artist {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}

.sp-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 32px;
    flex-shrink: 0;
    opacity: 0.4;
}

.sp-controls {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    min-width: 200px;
}

.sp-play-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}
.sp-play-btn:hover {
    background: #e0e0e0;
    transform: scale(1.06);
}

.sp-progress-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 0;
}

.sp-progress-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.18);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: visible;
}
.sp-progress-track:hover .sp-progress-fill::after {
    opacity: 1;
}

.sp-progress-fill {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}
.sp-progress-fill::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: opacity 0.15s;
}

.sp-time {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    min-width: 28px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .blog-hero-inner { padding: 2rem 1.2rem 1.5rem; }
    .blog-hero-row { flex-direction: column; gap: 1.5rem; }
    .blog-hero-text { width: 100%; }
    .blog-podcast-inner { width: 100% !important; padding: 0.75rem 1rem; }
    .blog-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .blog-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .blog-body { padding: 2.5rem 1.2rem; gap: 2rem; }
    .blog-section h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
    .blog-stat-row { grid-template-columns: repeat(2, 1fr); }
    .blog-infographic { padding: 0 1.2rem 2rem; }
    .blog-footer { padding: 2.5rem 1.2rem; }
    .blog-footer-inner { flex-direction: column; gap: 1.2rem; }
    .podcast-player { max-width: 100%; }
    .podcast-header { flex-direction: column; }
    .podcast-waveform { display: none; }
    .blog-breadcrumb { display: none; }
    .blog-nav { gap: 0; }
    .sp-waveform { display: none; }
}
@media (max-width: 480px) {
    .blog-stat-row { grid-template-columns: 1fr 1fr; }
    .blog-body { padding: 2rem 1rem; }
    .blog-infographic { padding: 0 1rem 1.5rem; }
}
