/* Styles ausschließlich für die Release-Seite (/release) */

:root {
    --bw500-muted: #575768;
    --mk-ink: #140B59;
    --re-accent-purple: #6C62D9;
}

.re-h1 {
    font-family: 'Montserrat';
    font-weight: 700!important;
    font-size: 28px;
}

.re-ink {
    color: var(--mk-ink) !important;
}

/* Verteilt die Wörter der Überschrift gleichmäßig statt fast alles in Zeile 1
   und nur ein Wort in Zeile 2 (kein erzwungener Umbruch, nur bessere Balance). */
.re-balance-heading {
    text-wrap: balance;
}

.re-muted {
    color: var(--bw500-muted) !important;
}

@media (min-width: 768px) {
    .re-h1 {
        font-size: 36px;
    }
}

@media (min-width: 992px) {
    .re-h1 {
        font-size: 48px;
    }
}

.fw-600{
    font-weight: 600 !important;
}

.fw-700{
    font-weight: 600 !important;
}

.fw-400{
    font-weight: 400 !important;
}

.re-card {
    border-radius: 32px;
    box-shadow: 12px 14px 0px #140B59;
    overflow: hidden;
}

.re-card .buy-card {
    box-shadow: none;
    border-radius: 0;
    max-width: none;
}

.re-ribbon {
    background-color: #FFD11A;
    color: #140B59;
    font-weight: 700;
    text-align: center;
    padding: 12px 24px;
    font-size: 15px;
}

.re-icon-placeholder {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    border-radius: 6px;
    background: rgba(20, 11, 89, 0.12);
}

/* YouTube-Embed anstelle des Platzhalterbildes: gleiche Bühne wie video-placeholder.png
   (768 x 432 = 16:9, zentriert) und darunter voll responsiv. */
.re-video {
    max-width: 768px;
    margin: 0 auto;
}

.re-video-frame {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 16px;
}

.re-notyet-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
}

@media (min-width: 768px) {
    .re-notyet-section {
        padding-top: 96px !important;
        padding-bottom: 96px !important;
    }
}

@media (min-width: 1200px) {
    .re-notyet-section {
        padding-top: 192px !important;
        padding-bottom: 192px !important;
    }
}

.re-faq-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

.re-support-section {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
}

/* Mobile: weniger seitlicher Abstand in den full-width-div Sektionen der Release-Seite,
   damit mehr Platz für den Content bleibt (statt der site-weiten 48px) */
@media (max-width: 767.98px) {
    .full-width-div {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* _Comparison.cshtml: Vergleich "360 Wall Street" vs. "markuskoch.de" */
.re-compare-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

@media (min-width: 768px) {
    .re-compare-section {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

@media (min-width: 1200px) {
    .re-compare-section {
        padding-top: 192px;
        padding-bottom: 192px;
    }
}

.re-compare-heading {
    font-weight: 700;
}

.re-compare-pill {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFDF7;
}

.re-compare-pill-muted {
    background-color: var(--bw500-muted);
}

.re-compare-pill-ink {
    background-color: var(--mk-ink);
}

.re-compare-list {
    margin-top: 32px;
    text-align: left;
}

@media (max-width: 991.98px) {
    .re-compare-col-new {
        margin-top: 64px;
    }
}

.re-compare-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.re-compare-gallery-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    
}

@media (max-width: 575.98px) {
    .re-compare-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.re-compare-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #E2E2E6;
    color: var(--mk-ink);
    font-size: 18px;
}

.re-compare-check {
    color: var(--mk-ink);
    font-weight: 700;
}

.re-compare-item-new,
.re-compare-item-new .re-compare-plus {
    color: var(--re-accent-purple);
    font-weight: 700;
}