/* Global normalization (replaces Tilda's tilda-grid + tilda-blocks resets).
   box-sizing stays content-box: pop-up.css / sexology.css were authored
   against it (see CLAUDE.md for the numbers this avoids breaking). */
*, *::before, *::after {
    box-sizing: content-box;
}

h1, p {
    margin: 0;
}

body {
    margin: 0;
    color: #000000;
    -webkit-font-smoothing: antialiased;
}

/* ---------------------------------------------------------------
   Page header (h1 + event date)
   --------------------------------------------------------------- */

.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: left;
}

.page-header__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.35;
    padding: 8px 0 1px;
}

.page-header__date {
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1px;
    padding: 5px 0 10px;
}

@media (max-width: 1200px) {
    .page-header {
        max-width: 960px;
        padding: 0 10px;
    }

    .page-header__title {
        font-size: 22px;
    }
}

@media (max-width: 960px) {
    .page-header {
        max-width: 640px;
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .page-header__title {
        font-size: 14px;
        line-height: 1.2;
        padding: 5px 0 1px;
    }

    .page-header__date {
        font-size: 14px;
        line-height: 1.2;
        font-weight: 400;
        padding: 5px 0 5px;
    }
}
