/* =====================================================================
   Maxime Gillio — Bandeau 4 nouveautés
   v14 : Option A mobile (carte teaser → modale plein écran)
   Bug fix 2 : height strict partout (pas de saut)
   ===================================================================== */

:root {
    --mg-4n-radius:   8px;
    --mg-4n-shadow:   0 12px 32px rgba(0,0,0,.22);
    --mg-4n-h:        487px;
    --mg-4n-ease:     cubic-bezier(.4, 0, .2, 1);
    --mg-4n-dur:      .45s;
    --mg-4n-title-w:  600px;
}

/* ------- Bandeau principal ------- */

.mg-4n {
    box-sizing: border-box;
    background: #0e0e0e;
    color: #fff;
    width: 100%;
    max-width: 100%;
    height: var(--mg-4n-h);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.mg-4n *,
.mg-4n *::before,
.mg-4n *::after { box-sizing: inherit; }

/* ------- Colonne titre (gauche) ------- */

.mg-4n__title-col {
    flex: 0 0 var(--mg-4n-title-w);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 36px 32px 5%;
    position: relative;
    transition: opacity .35s var(--mg-4n-ease),
                max-width .45s var(--mg-4n-ease),
                padding .45s var(--mg-4n-ease);
    overflow: hidden;
    max-width: var(--mg-4n-title-w);
}
.mg-4n.has-open .mg-4n__title-col {
    opacity: 0;
    max-width: 0;
    padding: 0;
    pointer-events: none;
}

/* Petite barre de décoration à gauche du titre */
.mg-4n__title-col::before {
    content: "";
    position: absolute;
    left: 5%;
    top: 32px;
    bottom: 32px;
    width: 3px;
    background: linear-gradient(180deg,
        #C9427A 0%, #C9427A 25%,
        #F2C200 25%, #F2C200 50%,
        #E02B20 50%, #E02B20 75%,
        #1E88A8 75%, #1E88A8 100%);
    border-radius: 2px;
}
.mg-4n__eyebrow {
    margin: 0 0 10px;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    font-weight: 700;
}
.mg-4n__title {
    margin: 0;
    font-family: 'Squada One', 'Impact', sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 3.4vw, 44px);
    line-height: 1.0;
    letter-spacing: .005em;
    color: #fff;
    text-wrap: balance;
    text-shadow: 0 2px 20px rgba(0,0,0,.35);
    overflow-wrap: break-word;
}
.mg-4n__hint { display: none; }

/* ------- Colonne tuiles (droite) ------- */

.mg-4n__tiles-col {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    padding: 0 0 0 24px;
}

/* ------- Row accordéon (alias) ------- */

.mg-4n__row {
    display: flex;
    flex-direction: row;
    gap: 0;
    flex: 1 1 auto;
    min-width: 0;
    align-items: stretch;
    min-height: 0;
}

/* ------- Tuile ------- */

.mg-4n__tile {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    background: var(--mg-color);
    color: var(--mg-on);
    border: none;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: flex-grow var(--mg-4n-dur) var(--mg-4n-ease),
                flex-basis var(--mg-4n-dur) var(--mg-4n-ease),
                transform .3s ease;
    display: flex;
    flex-direction: column;
}
.mg-4n__tile:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}
.mg-4n__tile:hover {
    transform: translateY(-2px);
}
.mg-4n__tile:hover .mg-4n__cover img {
    transform: scale(1.04);
}

.mg-4n__tile.is-open {
    flex-grow: 4;
    cursor: default;
}
.mg-4n__tile.is-open:hover { transform: none; }
.mg-4n__tile.is-open .mg-4n__cover img { transform: scale(1.02); }

.mg-4n__tile-inner {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 28px 24px;
    gap: 18px;
}
.mg-4n__tile.is-open .mg-4n__tile-inner {
    grid-template-columns: minmax(0, 280px) 1fr;
    grid-template-rows: 1fr;
    gap: 32px;
    padding: 32px 36px;
    align-items: stretch;
}

/* Cover */
.mg-4n__cover {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}
.mg-4n__cover img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    border-radius: 4px;
    transition: transform .35s ease;
}
.mg-4n__tile.is-open .mg-4n__cover img {
    /* Cover entière, pas de troncature — ratio naturel respecté */
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Head line (titre + date, visible en mode replié) */
.mg-4n__head-line {
    text-align: center;
    transition: opacity .25s ease;
}
.mg-4n__tile.is-open .mg-4n__head-line {
    display: none;
}
.mg-4n__book-title {
    margin: 0 0 4px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--mg-on);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mg-4n__book-date {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mg-on);
    opacity: .72;
}

/* Panel d'infos (caché en mode replié) */
.mg-4n__panel {
    display: none;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    overflow-y: auto;
    flex: 1;
    color: var(--mg-on);
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.25) transparent;
}
.mg-4n__panel::-webkit-scrollbar { width: 6px; }
.mg-4n__panel::-webkit-scrollbar-thumb { background: rgba(0,0,0,.25); border-radius: 3px; }
.mg-4n__panel::-webkit-scrollbar-track { background: transparent; }

.mg-4n__tile.is-open .mg-4n__panel {
    display: flex;
}

.mg-4n__eyebrow-sm {
    margin: 0 0 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mg-on);
    opacity: .72;
}
.mg-4n__book-title-lg {
    margin: 0 0 4px;
    font-family: 'Squada One', sans-serif;
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.1;
    letter-spacing: .005em;
    color: var(--mg-on);
    text-wrap: balance;
}
.mg-4n__author {
    margin: 0 0 18px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: var(--mg-on);
    opacity: .82;
}
.mg-4n__author strong { color: var(--mg-on); }

.mg-4n__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 0 0 18px;
    padding: 14px 0;
    border-top: 1px solid color-mix(in srgb, var(--mg-on) 25%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--mg-on) 25%, transparent);
}
.mg-4n__facts dt {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--mg-on);
    opacity: .62;
    margin-bottom: 2px;
}
.mg-4n__facts dd {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: var(--mg-on);
    font-weight: 600;
}

.mg-4n__resume {
    flex: 1;
    min-height: 0;
}
.mg-4n__resume h5 {
    margin: 0 0 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--mg-on);
    opacity: .62;
}
.mg-4n__resume p {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--mg-on);
    text-wrap: pretty;
}

/* Wrapper des actions en bas du panel (CTA + Replier) */
.mg-4n__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    /* Reste visible en bas du panel quand on scrolle (utile sur tablette
       où le panel est plus haut que le viewport). */
    position: sticky;
    bottom: 0;
    padding-top: 12px;
    background: inherit;  /* reprend la couleur de la tuile via le parent */
    /* Petit dégradé pour fondre le texte qui scrolle derrière */
    background: linear-gradient(to bottom,
        color-mix(in srgb, var(--mg-color) 0%, var(--mg-color) 50%) 0%,
        var(--mg-color) 100%);
}

/* CTA "En savoir +" : bouton principal (fond plein, contraste fort) */
.mg-4n__cta {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mg-on);
    color: var(--mg-color);
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font: 700 13px/1 'Source Sans Pro', sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.mg-4n__cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.mg-4n__cta:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}
.mg-4n__cta svg { transition: transform .25s ease; }
.mg-4n__cta:hover svg { transform: translate(2px, -2px); }

/* Bouton "Replier" en bas du panel */
.mg-4n__close {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 1.5px solid color-mix(in srgb, var(--mg-on) 45%, transparent);
    color: var(--mg-on);
    padding: 8px 14px;
    border-radius: 999px;
    font: 600 12px/1 'Source Sans Pro', sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.mg-4n__close:hover {
    background: color-mix(in srgb, var(--mg-on) 12%, transparent);
    border-color: color-mix(in srgb, var(--mg-on) 70%, transparent);
}
.mg-4n__close svg { transition: transform .25s ease; }
.mg-4n__close:hover svg { transform: rotate(90deg); }

@media (prefers-reduced-motion: reduce) {
    .mg-4n__tile,
    .mg-4n__cover img,
    .mg-4n__close,
    .mg-4n__close svg,
    .mg-4n__title-col { transition: none; }
}

/* =====================================================================
   MODALE PLEIN ÉCRAN (mobile ≤700px)
   ===================================================================== */

.mg-4n-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: none;
    background: #0e0e0e;
    overflow-y: auto;
    animation: mg-modal-in .3s var(--mg-4n-ease);
    transform: translateZ(0);
    will-change: transform;
}
.mg-4n-modal.is-open {
    display: block;
}
@keyframes mg-modal-in {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: none; opacity: 1; }
}

.mg-4n-modal__close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    color: #fff;
    backdrop-filter: blur(4px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mg-4n-modal__close svg { width: 24px; height: 24px; }
.mg-4n-modal__close:hover { background: rgba(0,0,0,.75); }

.mg-4n-modal__cover {
    width: 100%;
    aspect-ratio: 2 / 3;
    max-height: 55vh;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
}
.mg-4n-modal__cover img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.mg-4n-modal__body {
    background: #fff;
    color: #1a1a1a;
    padding: 28px 24px 80px;
    min-height: 45vh;
}
.mg-4n-modal__eyebrow {
    display: inline-block;
    margin: 0 0 8px;
    padding: 4px 10px;
    background: currentColor;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 4px;
}
.mg-4n-modal__title {
    margin: 0 0 6px;
    font-family: 'Squada One', sans-serif;
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.0;
    letter-spacing: .005em;
    color: #1a1a1a;
    text-wrap: balance;
}
.mg-4n-modal__author {
    margin: 0 0 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #666;
}
.mg-4n-modal__author strong { color: #1a1a1a; }

.mg-4n-modal__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin: 0 0 22px;
    padding: 16px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
.mg-4n-modal__facts dt {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}
.mg-4n-modal__facts dd {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
}
.mg-4n-modal__resume h5 {
    margin: 0 0 10px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #888;
}
.mg-4n-modal__resume p {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    text-wrap: pretty;
}

/* CTA "En savoir +" dans la modale mobile (pleine largeur) */
.mg-4n-modal__cta {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 24px;
    padding: 14px 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 999px;
    font: 700 14px/1 'Source Sans Pro', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.mg-4n-modal__cta:hover {
    background: #000;
    transform: translateY(-1px);
}
.mg-4n-modal__cta:focus-visible {
    outline: 3px solid #1a1a1a;
    outline-offset: 3px;
}
.mg-4n-modal__cta svg { transition: transform .25s ease; }
.mg-4n-modal__cta:hover svg { transform: translate(2px, -2px); }

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

@media (max-width: 1100px) {
    /* Bascule en layout vertical (titre en haut, tuiles en dessous) */
    /* Bug fix 2 : height strict partout pour éviter le saut à l'ouverture */
    /* Fix 1 : on plafonne la hauteur du bandeau pour éviter qu'il prenne
       tout l'écran quand une tuile s'ouvre avec un long panel. */
    .mg-4n {
        flex-direction: column;
        height: auto;
        min-height: 0;
        max-height: 80vh;
    }
    .mg-4n__title-col {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        padding: 28px 5% 20px;
    }
    .mg-4n.has-open .mg-4n__title-col {
        max-width: 100%;
        width: 100%;
        padding: 28px 5% 20px;
        opacity: 1;
    }
    .mg-4n__title-col::before {
        top: 28px;
        bottom: auto;
        height: 3px;
        width: 60px;
        left: 5%;
    }
    .mg-4n__title { font-size: clamp(28px, 3.2vw, 40px); }
    .mg-4n__tiles-col {
        flex-direction: row;
        padding: 0;
        align-items: stretch;
        min-height: 0;
    }
    .mg-4n__tile { flex: 1 1 0; min-height: 0; }

    /* Tuile ouverte : sur tablette (700-1100px), on garde le layout
       2 colonnes (cover à gauche, panel à droite) comme sur desktop mais
       avec une cover plus petite pour que le panel ait plus de place. */
    .mg-4n__tile.is-open .mg-4n__tile-inner {
        display: flex;
        flex-direction: row;
        grid-template-columns: 200px 1fr;
        grid-template-rows: 1fr;
        gap: 20px;
        padding: 20px 24px;
        height: 100%;
        min-height: 0;
    }
    .mg-4n__tile.is-open .mg-4n__cover {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 200px;
        min-height: 0;
    }
    .mg-4n__tile.is-open .mg-4n__cover img {
        max-height: 100%;
        max-width: 200px;
        width: auto;
        height: auto;
    }
    .mg-4n__tile.is-open .mg-4n__panel {
        flex: 1 1 0;
        min-height: 0;
        overflow-y: auto;
    }
}

@media (max-width: 900px) {
    /* Mobile : tuiles en mode teaser (cover+meta), accordéon désactivé,
       modale plein écran au clic */
    .mg-4n {
        height: auto;
    }
    /* En mobile, on garde le titre mais en version compacte + on
       ré-affiche les dots sous les tuiles. La modale (position: fixed,
       z-index 2147483647) passe au-dessus de tout, donc pas de
       chevauchement à craindre. */
    .mg-4n__title-col {
        display: block;
        padding: 18px 6% 8px;
    }
    .mg-4n__title-col::before {
        top: 12px;
        height: 3px;
        width: 48px;
        left: 6%;
    }
    .mg-4n__title { font-size: clamp(22px, 5.5vw, 28px); }
    .mg-4n__sub { font-size: 11px; letter-spacing: .12em; }
    .mg-4n__dots { display: flex; }
    .mg-4n__tiles-col {
        flex-direction: column;
    }
    .mg-4n__tile {
        flex: 0 0 auto;
        cursor: pointer;
    }
    /* Pas d'accordéon : on désactive le toggle is-open */
    .mg-4n__tile.is-open {
        flex-grow: 0;
    }
    .mg-4n__tile.is-open:hover { transform: translateY(-2px); }
    .mg-4n__tile.is-open .mg-4n__cover img { transform: scale(1.04); }
    .mg-4n__tile.is-open .mg-4n__head-line { display: block; }
    .mg-4n__tile.is-open .mg-4n__tile-inner {
        grid-template-columns: 100px 1fr;
        grid-template-rows: 1fr;
        padding: 16px 20px;
        gap: 18px;
        text-align: left;
        align-items: center;
    }
    .mg-4n__tile.is-open .mg-4n__cover { align-items: center; height: 140px; }
    .mg-4n__tile.is-open .mg-4n__cover img {
        max-height: 140px;
        max-width: 100%;
        height: auto;
        width: auto;
    }
    .mg-4n__tile.is-open .mg-4n__head-line { text-align: left; }
    .mg-4n__tile.is-open .mg-4n__book-title { font-size: 16px; -webkit-line-clamp: 3; }
    .mg-4n__tile.is-open .mg-4n__panel { display: none !important; }

    .mg-4n__tile-inner {
        grid-template-columns: 100px 1fr;
        grid-template-rows: 1fr;
        padding: 16px 20px;
        gap: 18px;
        text-align: left;
        align-items: center;
    }
    .mg-4n__cover {
        align-items: center;
        height: 140px;
    }
    .mg-4n__cover img {
        max-height: 140px;
        max-width: 100%;
        height: auto;
        width: auto;
    }
    .mg-4n__head-line { text-align: left; }
    .mg-4n__book-title { font-size: 16px; -webkit-line-clamp: 3; }
    .mg-4n__panel { display: none !important; }
}

@media (max-width: 800px) {
    /* CARROUSEL HORIZONTAL : 1 tuile visible à la fois, swipe entre les 4.
       Objectif : qu'on voie TOUS les livres (par navigation) dans 1 viewport. */

    .mg-4n {
        height: auto;
        min-height: 0;
        max-height: none;
        padding: 0;
    }
    .mg-4n__title-col {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        padding: 22px 6% 14px;
        text-align: left;
    }
    .mg-4n__title-col::before {
        top: 16px;
        bottom: auto;
        height: 3px;
        width: 60px;
        left: 6%;
    }
    .mg-4n__title { font-size: clamp(24px, 6vw, 32px); }
    .mg-4n__sub { font-size: 12px; letter-spacing: .12em; }

    .mg-4n__tiles-col {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0;
        gap: 0;
        min-height: 0;
    }
    .mg-4n__tiles-col::-webkit-scrollbar { display: none; }

    .mg-4n__tile {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .mg-4n__tile-inner {
        grid-template-columns: 130px 1fr;
        grid-template-rows: 1fr;
        padding: 18px 22px;
        gap: 22px;
        text-align: left;
        align-items: center;
        min-height: 0;
    }
    .mg-4n__cover {
        align-items: center;
        height: 180px;
    }
    .mg-4n__cover img {
        max-height: 180px;
        max-width: 100%;
        width: auto;
        height: auto;
    }
    .mg-4n__head-line { text-align: left; }
    .mg-4n__book-title { font-size: 17px; -webkit-line-clamp: 3; }
    .mg-4n__panel { display: none !important; }

    .mg-4n__tile.is-open {
        flex-grow: 0;
    }
    .mg-4n__tile.is-open .mg-4n__cover img { transform: none; }

    .mg-4n__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 14px 0 18px;
    }
    .mg-4n__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.25);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }
    .mg-4n__dot.is-active {
        background: #000;
        transform: scale(1.25);
    }
}

.mg-4n__dots { display: none; }

@media (max-width: 800px) {
    .mg-4n__dots { display: flex; }
}

@media (max-width: 560px) {
    .mg-4n__tile-inner { padding: 14px 16px; gap: 16px; }
    .mg-4n__cover { height: 150px; }
    .mg-4n__cover img { max-height: 150px; }
    .mg-4n__book-title { font-size: 16px; }
}
