/* ============================================
   GLOBALE WORDPRESS FIXES
   ============================================ */

.mh-breadcrumb,
.breadcrumb,
nav.breadcrumb,
.mh-breadcrumb-wrap {
    display: none !important;
}

.mh-content header.entry-header,
.entry-header,
article > header,
.page-header,
.mh-content > .entry-header {
    display: none !important;
}

.mh-content,
.mh-content-inner,
.mh-wrapper,
.entry-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.mh-sidebar,
#secondary,
aside.mh-sidebar {
    display: none !important;
}

.mh-content {
    float: none !important;
    width: 100% !important;
}

.mh-container-outer {
    padding-top: 0 !important;
}

.side-rail-container,
.rail-left,
.rail-right,
.ad-label,
.ad-wrapper,
.advads-close-button,
.advanced-ads-wrapper {
    display: none !important;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

@keyframes showFallback {
    to { opacity: 1; transform: none; }
}

.animate-on-scroll {
    animation: showFallback 0.5s ease-out 2s forwards;
}

.animate-on-scroll.visible {
    animation: none;
}

/* ============================================
   BASE STYLES
   ============================================ */

.ka-ausgabe-page {
    --kunst-accent: #9a1815;
    --kunst-accent-hover: #7a1210;
    --kunst-accent-soft: rgba(154, 24, 21, 0.08);
    --kunst-text: #333333;
    --kunst-text-dark: #1a1a1a;
    --kunst-text-light: #666666;
    --kunst-text-muted: #999999;
    --kunst-lines: #e0e0e0;
    --kunst-bg-light: #f8f8f8;
    --kunst-bg-cream: #faf9f7;
    --kunst-bg-warm: #f5f3f0;
    --kunst-white: #ffffff;
    
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--kunst-text);
    background: var(--kunst-white);
}

.ka-ausgabe-page *,
.ka-ausgabe-page *::before,
.ka-ausgabe-page *::after {
    box-sizing: border-box;
}

.ka-ausgabe-page a {
    text-decoration: none !important;
    color: inherit;
}

/* ============================================
   HERO SECTION - Minimalistisch
   ============================================ */

.ka-ausgabe-page .hero {
    background: var(--kunst-bg-light);
    padding: 70px 20px 80px;
    position: relative;
}

.ka-ausgabe-page .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--kunst-lines);
}

.ka-ausgabe-page .hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* Cover-Bereich - jetzt rechts, mittig mit 200px Abstand */
.ka-ausgabe-page .hero-cover {
    text-align: center;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.ka-ausgabe-page .hero-cover-wrapper {
    position: relative;
    display: inline-block;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.ka-ausgabe-page .hero-cover-wrapper:hover {
    transform: rotate(0deg) scale(1.03);
}

.ka-ausgabe-page .hero-cover-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    box-shadow: 0 25px 70px rgba(0,0,0,0.18), 0 10px 25px rgba(0,0,0,0.12);
    display: none;
}

.ka-ausgabe-page .hero-cover-img.active {
    display: block;
}

/* Content-Bereich - jetzt links */
.ka-ausgabe-page .hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: 1;
}

.ka-ausgabe-page .hero-header {
    text-align: center;
    margin-bottom: 8px;
}

.ka-ausgabe-page .hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--kunst-accent);
    margin-bottom: 8px;
}

.ka-ausgabe-page .hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--kunst-text-dark);
    margin: 0;
}

.ka-ausgabe-page .hero-title em {
    font-style: italic;
    color: var(--kunst-accent);
}

.ka-ausgabe-page .hero-issue-number {
    font-size: 14px;
    color: var(--kunst-text-muted);
    margin-top: 8px;
}

/* Editorial Box */
.ka-ausgabe-page .hero-editorial-box {
    background: var(--kunst-white);
    padding: 28px;
    border: 1px solid var(--kunst-lines);
    border-radius: 12px;
}

.ka-ausgabe-page .hero-editorial-intro {
    font-weight: 600;
    color: var(--kunst-text-dark);
    margin: 0 0 14px 0;
    font-size: 15px;
}

.ka-ausgabe-page .hero-editorial-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--kunst-text-light);
    margin: 0 0 16px 0;
}

.ka-ausgabe-page .hero-editorial-text:last-of-type {
    margin-bottom: 0;
}

.ka-ausgabe-page .hero-signature {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--kunst-lines);
    font-style: italic;
    font-size: 14px;
    color: var(--kunst-text-dark);
}

.ka-ausgabe-page .hero-signature span {
    display: block;
    font-style: normal;
    font-size: 12px;
    color: var(--kunst-text-muted);
    margin-top: 2px;
}

/* CTA Buttons - unter dem Cover, mittig zusammen */
.ka-ausgabe-page .hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.ka-ausgabe-page .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.ka-ausgabe-page .btn-primary {
    background: var(--kunst-accent);
    color: white;
}

.ka-ausgabe-page .btn-primary:hover {
    background: var(--kunst-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(154, 24, 21, 0.3);
}

.ka-ausgabe-page .btn-outline {
    background: transparent;
    color: var(--kunst-accent);
    border: 2px solid var(--kunst-accent);
}

.ka-ausgabe-page .btn-outline:hover {
    background: var(--kunst-white);
    color: var(--kunst-accent-hover);
    border-color: var(--kunst-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ============================================
   ARTIKEL HIGHLIGHTS - Eckig
   ============================================ */

.ka-ausgabe-page .highlights-section {
    padding: 80px 20px;
    background: var(--kunst-white);
}

.ka-ausgabe-page .section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.ka-ausgabe-page .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ka-ausgabe-page .section-issue-label {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--kunst-accent);
    margin-bottom: 8px;
}

.ka-ausgabe-page .section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--kunst-text-dark);
    margin: 0;
}

.ka-ausgabe-page .highlights-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ka-ausgabe-page .highlight-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    padding: 24px;
    background: var(--kunst-bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ka-ausgabe-page .highlight-card:hover {
    background: var(--kunst-white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.ka-ausgabe-page .highlight-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--kunst-lines);
    /* Bild bleibt eckig */
}

.ka-ausgabe-page .highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ka-ausgabe-page .highlight-card:hover .highlight-image img {
    transform: scale(1.05);
}

.ka-ausgabe-page .highlight-page {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--kunst-accent);
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    /* Seitenzahl bleibt eckig */
}

.ka-ausgabe-page .highlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
}

.ka-ausgabe-page .highlight-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--kunst-text-dark);
    margin: 0 0 12px 0;
}

.ka-ausgabe-page .highlight-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--kunst-text-light);
    margin: 0;
}

.ka-ausgabe-page .highlight-author {
    font-size: 12px;
    color: var(--kunst-text-muted);
    margin-top: 14px;
}

.ka-ausgabe-page .highlight-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--kunst-bg-light) 0%, var(--kunst-lines) 100%);
    color: var(--kunst-text-muted);
    font-size: 12px;
}

/* ============================================
   NEWSLETTER SECTION - Kompakter
   ============================================ */

.ka-ausgabe-page .newsletter-section {
    padding: 70px 20px;
    background: var(--kunst-bg-warm);
    border-top: 1px solid var(--kunst-lines);
    border-bottom: 1px solid var(--kunst-lines);
}

.ka-ausgabe-page .newsletter-inner {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ka-ausgabe-page .newsletter-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--kunst-text-dark);
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.ka-ausgabe-page .newsletter-content h3 em {
    font-style: italic;
    color: var(--kunst-accent);
}

.ka-ausgabe-page .newsletter-frequency {
    display: inline-block;
    font-size: 13px;
    color: var(--kunst-text-light);
    margin-bottom: 20px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.7);
    border-radius: 6px;
}

.ka-ausgabe-page .newsletter-frequency strong {
    color: var(--kunst-text-dark);
    font-weight: 600;
}

.ka-ausgabe-page .newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ka-ausgabe-page .newsletter-benefits li {
    padding: 7px 0 7px 22px;
    position: relative;
    font-size: 14px;
    color: var(--kunst-text);
}

.ka-ausgabe-page .newsletter-benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--kunst-accent);
    font-weight: 600;
}

.ka-ausgabe-page .newsletter-form-card {
    background: var(--kunst-white);
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ka-ausgabe-page .newsletter-form-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--kunst-text-dark);
    margin: 0 0 4px 0;
    text-align: center;
}

.ka-ausgabe-page .newsletter-form-subtitle {
    font-size: 12px;
    color: var(--kunst-text-muted);
    text-align: center;
    margin: 0 0 18px 0;
}

.ka-ausgabe-page .newsletter-form-group {
    margin-bottom: 10px;
}

.ka-ausgabe-page .newsletter-form-group input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--kunst-lines);
    border-radius: 8px;
    background: var(--kunst-bg-light);
}

.ka-ausgabe-page .newsletter-form-group input:focus {
    outline: none;
    border-color: var(--kunst-accent);
    background: white;
    box-shadow: 0 0 0 3px var(--kunst-accent-soft);
}

.ka-ausgabe-page .newsletter-form-group input::placeholder {
    color: var(--kunst-text-muted);
}

.ka-ausgabe-page .nl-variant {
    display: none;
}

.ka-ausgabe-page .nl-variant.active {
    display: block;
}

.ka-ausgabe-page .newsletter-submit {
    width: 100%;
    padding: 13px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    background: var(--kunst-accent);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.ka-ausgabe-page .newsletter-submit:hover {
    background: var(--kunst-accent-hover);
}

.ka-ausgabe-page .newsletter-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ka-ausgabe-page .newsletter-submit.processing {
    position: relative;
    color: transparent;
}

.ka-ausgabe-page .newsletter-submit.processing::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin: -9px 0 0 -9px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: nl-spin 0.8s linear infinite;
}

@keyframes nl-spin {
    to { transform: rotate(360deg); }
}

.ka-ausgabe-page .newsletter-privacy {
    font-size: 10px;
    color: var(--kunst-text-muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.ka-ausgabe-page .newsletter-privacy a {
    color: var(--kunst-text-light);
    text-decoration: underline !important;
}

.ka-ausgabe-page .newsletter-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.ka-ausgabe-page .newsletter-success.show {
    display: block;
}

.ka-ausgabe-page .newsletter-success-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
    color: white;
}

.ka-ausgabe-page .newsletter-success-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--kunst-text-dark);
}

.ka-ausgabe-page .newsletter-success-text {
    font-size: 12px;
    color: var(--kunst-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ABO CTA SECTION
   ============================================ */

.ka-ausgabe-page .abo-section {
    padding: 80px 20px;
    background: var(--kunst-white);
}

.ka-ausgabe-page .abo-inner {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ka-ausgabe-page .abo-visual {
    position: relative;
}

.ka-ausgabe-page .abo-stack {
    position: relative;
    height: 280px;
}

.ka-ausgabe-page .abo-stack-item {
    position: absolute;
    width: 160px;
    height: auto;
    aspect-ratio: 0.707;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
    background: transparent;
    border: none;
    overflow: hidden;
}

.ka-ausgabe-page .abo-stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ka-ausgabe-page .abo-stack-item:nth-child(1) {
    top: 0;
    left: 12%;
    transform: rotate(-8deg);
    z-index: 3;
}

.ka-ausgabe-page .abo-stack-item:nth-child(2) {
    top: 25px;
    left: 30%;
    transform: rotate(-3deg);
    z-index: 2;
}

.ka-ausgabe-page .abo-stack-item:nth-child(3) {
    top: 50px;
    left: 48%;
    transform: rotate(2deg);
    z-index: 1;
}

.ka-ausgabe-page .abo-stack:hover .abo-stack-item:nth-child(1) {
    transform: rotate(-12deg) translateX(-15px);
}

.ka-ausgabe-page .abo-stack:hover .abo-stack-item:nth-child(3) {
    transform: rotate(6deg) translateX(15px);
}

.ka-ausgabe-page .abo-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--kunst-text-dark);
    margin: 0 0 14px 0;
    line-height: 1.2;
}

.ka-ausgabe-page .abo-content p {
    font-size: 15px;
    color: var(--kunst-text-light);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.ka-ausgabe-page .abo-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.ka-ausgabe-page .abo-benefits li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: var(--kunst-text);
}

.ka-ausgabe-page .abo-benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--kunst-accent);
    font-weight: 600;
}

/* ============================================
   ARCHIV SECTION - Minimalistisch
   ============================================ */

.ka-ausgabe-page .archiv-section {
    padding: 60px 20px;
    background: var(--kunst-bg-light);
    border-top: 1px solid var(--kunst-lines);
}

.ka-ausgabe-page .archiv-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ka-ausgabe-page .archiv-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--kunst-text-dark);
    margin: 0 0 8px 0;
}

.ka-ausgabe-page .archiv-subtitle {
    font-size: 13px;
    color: var(--kunst-text-muted);
    margin: 0 0 35px 0;
}

.ka-ausgabe-page .archiv-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ka-ausgabe-page .archiv-item {
    width: 110px;
    text-align: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ka-ausgabe-page .archiv-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.ka-ausgabe-page .archiv-item-cover {
    position: relative;
    margin-bottom: 10px;
    border: 0.5px solid var(--kunst-lines);
    background: transparent;
}

.ka-ausgabe-page .archiv-cover-img {
    width: 100%;
    display: none;
}

.ka-ausgabe-page .archiv-cover-img.active {
    display: block;
}

.ka-ausgabe-page .archiv-item-label {
    font-size: 12px;
    color: var(--kunst-text-muted);
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .ka-ausgabe-page .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ka-ausgabe-page .hero-cover {
        order: 1;
    }
    
    .ka-ausgabe-page .hero-content {
        order: 2;
        max-width: 100%;
    }
    
    .ka-ausgabe-page .hero-header {
        text-align: center;
    }
    
    .ka-ausgabe-page .hero-cover-wrapper {
        transform: none;
    }
    
    .ka-ausgabe-page .hero-cover-wrapper:hover {
        transform: scale(1.02);
    }
    
    .ka-ausgabe-page .hero-cover-img {
        max-width: 280px;
    }
    
    .ka-ausgabe-page .hero-title {
        font-size: 32px;
    }
    
    .ka-ausgabe-page .hero-editorial-box {
        text-align: left;
        max-width: 100%;
    }
    
    .ka-ausgabe-page .hero-cta {
        flex-wrap: wrap;
    }
    
    .ka-ausgabe-page .highlight-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .ka-ausgabe-page .highlight-image {
        aspect-ratio: 16/9;
    }
    
    .ka-ausgabe-page .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .ka-ausgabe-page .newsletter-benefits {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .ka-ausgabe-page .abo-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .ka-ausgabe-page .abo-visual {
        order: 1;
    }
    
    .ka-ausgabe-page .abo-content {
        order: 2;
    }
    
    .ka-ausgabe-page .abo-stack {
        height: 200px;
    }
    
    .ka-ausgabe-page .abo-stack-item {
        width: 130px;
    }
    
    .ka-ausgabe-page .abo-benefits {
        text-align: left;
        max-width: 280px;
        margin: 0 auto 24px;
    }
    
    .ka-ausgabe-page .archiv-item {
        width: 90px;
    }
}

@media (max-width: 600px) {
    .ka-ausgabe-page .hero {
        padding: 50px 15px 60px;
    }
    
    .ka-ausgabe-page .hero-title {
        font-size: 26px;
    }
    
    .ka-ausgabe-page .hero-cover-img {
        max-width: 220px;
    }
    
    .ka-ausgabe-page .hero-editorial-box {
        padding: 20px;
        max-width: 100%;
    }
    
    .ka-ausgabe-page .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .ka-ausgabe-page .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
    
    .ka-ausgabe-page .section-title {
        font-size: 26px;
    }
    
    .ka-ausgabe-page .archiv-grid {
        gap: 14px;
    }
    
    .ka-ausgabe-page .archiv-item {
        width: 75px;
    }
    
    .ka-ausgabe-page .newsletter-content h3 {
        font-size: 24px;
    }
    
    .ka-ausgabe-page .abo-content h3 {
        font-size: 24px;
    }
}
