/* screen-podcasts – Landingpage für Podcast-Suchmaschine */

/* Änderungsprotokoll: 2026-06-22 | cursor-agent | @skill-css-rules, @skill-change-provenance | Landing-Statistiken und Features */
/* Änderungsprotokoll: 2026-06-22 | cursor-agent | @skill-css-rules, @skill-change-provenance | Hero-Split: Text neben kleinerer Grafik */
/* Änderungsprotokoll: 2026-06-22 | cursor-agent | @skill-css-rules, @skill-change-provenance | Themen-Statistik als kompakte Tabelle statt Kachel-Chaos */

.screen-podcasts {
    --podcasts-landing-rhythm-tight: 8px;
    --podcasts-landing-rhythm-inner: 12px;
    --podcasts-landing-rhythm-block: 16px;
    --podcasts-landing-rhythm-area: 24px;
    --podcasts-landing-rhythm-page: 40px;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: var(--podcasts-landing-rhythm-area) var(--podcasts-landing-rhythm-block) var(--podcasts-landing-rhythm-page);
    box-sizing: border-box;
}

.screen-podcasts-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--podcasts-landing-rhythm-page);
}

.screen-podcasts-hero-split {
    width: 100%;
}

/* Änderungsprotokoll: 2026-06-22 | cursor-agent | @skill-change-provenance | Hero-CTA direkt unter Hero-Split */
.screen-podcasts-hero-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--podcasts-landing-rhythm-area);
    width: 100%;
}

.screen-podcasts-hero-cta-wrap {
    padding-top: 0;
}

.screen-podcasts-hero-copy {
    display: flex;
    flex-direction: column;
    gap: var(--podcasts-landing-rhythm-area);
}

.screen-podcasts-hero-visual {
    width: 100%;
}

.screen-podcasts-hero-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 1.5px solid var(--glass-border-edge);
    box-shadow: var(--surface-shadow-glass);
    box-sizing: border-box;
}

.screen-podcasts-intro-block {
    display: flex;
    flex-direction: column;
    gap: var(--podcasts-landing-rhythm-inner);
    width: 100%;
    text-align: left;
}

.screen-podcasts-intro,
.screen-podcasts-intro-secondary {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--text-color-primary, inherit);
}

.screen-podcasts-stats-section,
.screen-podcasts-why-section,
.screen-podcasts-features-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--podcasts-landing-rhythm-area);
}

.screen-podcasts-stats-section .base-headline-h2,
.screen-podcasts-why-section .base-headline-h2,
.screen-podcasts-features-section .base-headline-h2 {
    text-align: center;
}

.screen-podcasts-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--podcasts-landing-rhythm-block);
}

.screen-podcasts-stat-card {
    padding: var(--podcasts-landing-rhythm-area);
    border-radius: 16px;
    border: 1.5px solid var(--glass-border-edge);
    background: var(--surface-glass-bg, rgba(255, 255, 255, 0.04));
    box-shadow: var(--surface-shadow-glass);
    text-align: center;
}

/* Änderungsprotokoll: 2026-06-22 | cursor-agent | @skill-change-provenance | KPI-Karten als Such-Links */
.screen-podcasts-stat-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.screen-podcasts-stat-card-link:hover {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.06);
}

.screen-podcasts-stat-value {
    margin: 0 0 var(--podcasts-landing-rhythm-tight);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.screen-podcasts-stat-label {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.9;
}

.screen-podcasts-topics-block {
    display: flex;
    flex-direction: column;
    gap: var(--podcasts-landing-rhythm-block);
    width: 100%;
}

.screen-podcasts-topics-block .base-headline-h3 {
    text-align: center;
}

.screen-podcasts-topics-table {
    width: 100%;
    border-radius: 14px;
    border: 1.5px solid var(--glass-border-edge);
    overflow: hidden;
    background: var(--surface-glass-bg, rgba(255, 255, 255, 0.03));
    box-shadow: var(--surface-shadow-glass);
    box-sizing: border-box;
}

.screen-podcasts-topics-table-head,
.screen-podcasts-topics-table-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 4.5rem 4.75rem;
    column-gap: var(--podcasts-landing-rhythm-inner);
    align-items: center;
    padding: 0 var(--podcasts-landing-rhythm-block);
    box-sizing: border-box;
}

.screen-podcasts-topics-table-head {
    min-height: 2.75rem;
    border-bottom: 1px solid var(--glass-border-edge);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.82;
}

.screen-podcasts-topics-table-row {
    min-height: 3rem;
    border-bottom: 1px solid var(--glass-border-edge);
}

.screen-podcasts-topics-table-row:last-child {
    border-bottom: none;
}

.screen-podcasts-topics-table-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

/* Änderungsprotokoll: 2026-06-22 | cursor-agent | @skill-change-provenance | Tabellenzeilen als Such-Links */
.screen-podcasts-topics-table-row-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.screen-podcasts-topics-table-row-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.screen-podcasts-topics-table-row-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

.screen-podcasts-topics-table-cell-area {
    padding: 0.65rem 0;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
}

.screen-podcasts-topics-table-cell-num {
    padding: 0.65rem 0;
    text-align: right;
    font-size: 1rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

.screen-podcasts-topics-table-head .screen-podcasts-topics-table-cell-num {
    text-align: right;
}

.screen-podcasts-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--podcasts-landing-rhythm-block);
}

/* Änderungsprotokoll: 2026-06-22 | cursor-agent | @skill-change-provenance | Warum-Bereich KI & Marketing */
.screen-podcasts-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--podcasts-landing-rhythm-block);
}

.screen-podcasts-why-card {
    padding: var(--podcasts-landing-rhythm-area);
    border-radius: 16px;
    border: 1px solid var(--glass-border-edge);
    background: var(--surface-glass-bg, rgba(255, 255, 255, 0.03));
    text-align: left;
}

.screen-podcasts-why-card .base-headline-h3 {
    margin-bottom: var(--podcasts-landing-rhythm-tight);
}

.screen-podcasts-why-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.screen-podcasts-feature-card {
    padding: var(--podcasts-landing-rhythm-area);
    border-radius: 16px;
    border: 1px solid var(--glass-border-edge);
    background: var(--surface-glass-bg, rgba(255, 255, 255, 0.03));
    text-align: left;
}

.screen-podcasts-feature-card .base-headline-h3 {
    margin-bottom: var(--podcasts-landing-rhythm-tight);
}

.screen-podcasts-feature-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.screen-podcasts-cta-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: var(--podcasts-landing-rhythm-tight);
}

.screen-podcasts-cta-button {
    min-width: min(100%, 320px);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 999px;
    box-shadow: var(--surface-shadow-glass);
}

/* Änderungsprotokoll: 2026-06-22 | cursor-agent | @skill-css-rules, @skill-change-provenance | Hero-Bild auf Intro-Höhe ausgerichtet */
@media (min-width: 768px) {
    .screen-podcasts-hero-split.base-content-hero-split {
        display: grid;
        grid-template-columns: minmax(0, 1fr) min(20rem, 35%);
        grid-template-rows: auto minmax(0, auto);
        align-items: stretch;
        column-gap: 2rem;
        row-gap: var(--podcasts-landing-rhythm-area);
    }

    .screen-podcasts-hero-copy.base-content-hero-split-copy {
        display: contents;
    }

    .screen-podcasts-hero-copy .base-headline-h1 {
        grid-column: 1;
        grid-row: 1;
    }

    .screen-podcasts-intro-block {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
    }

    .screen-podcasts-hero-visual.base-content-hero-split-visual {
        grid-column: 2;
        grid-row: 2;
        align-self: stretch;
        width: 100%;
        max-width: none;
        min-height: 0;
        justify-content: stretch;
        align-items: stretch;
    }

    .screen-podcasts-hero-image {
        width: 100%;
        height: 100%;
        min-height: 100%;
        aspect-ratio: unset;
        object-fit: cover;
    }
}

@media (min-width: 600px) {
    .screen-podcasts {
        padding-left: var(--podcasts-landing-rhythm-area);
        padding-right: var(--podcasts-landing-rhythm-area);
    }

    .screen-podcasts-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screen-podcasts-topics-table-head,
    .screen-podcasts-topics-table-row {
        grid-template-columns: minmax(0, 1fr) 5.5rem 5.75rem;
        column-gap: var(--podcasts-landing-rhythm-block);
        padding: 0 var(--podcasts-landing-rhythm-area);
    }

    .screen-podcasts-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screen-podcasts-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .screen-podcasts-topics-table-head,
    .screen-podcasts-topics-table-row {
        grid-template-columns: minmax(0, 1fr) 6.5rem 7rem;
    }
}
