/* ===============================================================
   rugby.css
   Aanvulling op howto.css voor RugbyToernooi.aspx.
   Bevat: (a) classes overgenomen uit home.css die howto.css niet heeft,
   en (b) nieuwe rugby-specifieke classes.
   =============================================================== */

/* -- (a) Overgenomen uit home.css ------------------------------- */

.section-dark {
    background: var(--mti-dark);
    color: #d4d4a8;
}

    .section-dark .section-title,
    .section-dark h2 {
        color: #fff;
    }

    .section-dark .section-lead {
        color: #b9b98a;
    }

.btn-mti-25 {
    border-radius: 25px !important;
}

.back-and-eyebrow {
    padding-top: 40px;
}

.screenshot-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(66,67,34,.1);
    padding: 10px;
}

    .screenshot-card img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        cursor: pointer;
    }

.mobile-shot {
    max-width: 260px;
    margin: 0 auto;
}

.text-card {
    background: #fff;
    border: 1px solid var(--mti-border);
    border-radius: 18px;
    padding: 20px;
    height: 100%;
}

    .text-card h3 {
        font-size: 17px;
        font-weight: 900;
        margin-bottom: 8px;
        color: var(--mti-dark);
    }

    .text-card p {
        font-size: 15px;
        color: #62654e;
        margin-bottom: 0;
    }

.testimonial-card {
    background: #fff;
    border: 1px solid var(--mti-border);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
}

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.6;
        color: #62654e;
        margin-bottom: 14px;
    }

    .testimonial-card strong {
        color: var(--mti-dark);
    }

.testimonial-featured {
    background: var(--mti-light);
    border: 2px solid var(--mti-cta);
    padding: 36px;
}

    .testimonial-featured p {
        font-size: 19px;
        font-style: italic;
    }

/* -- (b) Nieuwe rugby-specifieke classes ------------------------ */

.rugby-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

    .rugby-bullet-list li {
        padding: 10px 0 10px 30px;
        position: relative;
        font-size: 16px;
        line-height: 1.6;
        color: #62654e;
        border-bottom: 1px solid var(--mti-border);
    }

        .rugby-bullet-list li:last-child {
            border-bottom: none;
        }

        .rugby-bullet-list li::before {
            content: "\f1ae"; /* fa-quidditch is not in 4.7, use rugby-ish check */
            font-family: FontAwesome;
            content: "\f00c";
            position: absolute;
            left: 0;
            top: 11px;
            color: var(--mti-mid);
            font-size: 13px;
        }

        .rugby-bullet-list li strong {
            color: var(--mti-dark);
        }

.rugby-closing-note {
    font-size: 15px;
    color: #62654e;
    font-style: italic;
    margin-bottom: 0;
}

.rugby-steps-compact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto;
}

.rugby-step-compact {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--mti-border);
    border-radius: 18px;
    padding: 20px 24px;
}

    .rugby-step-compact .stap-badge {
        flex-shrink: 0;
        margin-bottom: 0;
        min-width: 40px;
        justify-content: center;
    }

    .rugby-step-compact h3 {
        font-size: 18px;
        font-weight: 900;
        color: var(--mti-dark);
        margin-bottom: 4px;
    }

    .rugby-step-compact p {
        font-size: 15px;
        color: #62654e;
        margin-bottom: 0;
    }

.rugby-extra-note {
    text-align: center;
    font-size: 15px;
    color: #62654e;
    font-style: italic;
    max-width: 700px;
    margin: 24px auto 0;
}

/* -- Checkmark-items met hangende inspringing (2e regel lijnt uit met tekst, niet met icoon) */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .check-item i {
        flex-shrink: 0;
        margin-top: 4px;
        color: var(--mti-mid);
    }

    .check-item span {
        font-weight: 900;
    }

/* -- Testimonial: origineel (cursief) + lege regel + vertaling */
.testimonial-original {
    font-style: italic;
    color: #62654e;
    margin-bottom: 0;
}

.testimonial-translation {
    margin-top: 18px;
    color: #62654e;
}

/* -- Rapportage-afbeeldingen: max 365px breed op lg+ schermen -- */
@media (min-width: 992px) {
    .rugby-report-narrow {
        max-width: 365px;
    }
}

/* -- Lightbox: duidelijke marge t.o.v. viewport, zodat mobiele
   screenshots (portrait) niet randloos/schermvullend ogen -- */
#mti-lb-img {
    max-height: 90vh;
    max-width: 90vw;
}

@media (max-width: 575px) {
    .rugby-step-compact {
        flex-direction: column;
        gap: 10px;
    }
}
