/* ==========================================================================
   PAGE PROJET : JISR — Incubateur Social des Femmes
   Palette : Jaune solaire #f5c842 · Crème doré #fdf8ed · Brun chaud #2d1f00
   Âme : Chaleureux · Enveloppant · Pont · Autonomisation · Protection
   Typographie : Montserrat uniquement
   ========================================================================== */

:root {
    --js-yellow:       #f5c842;
    --js-yellow-dark:  #c9a020;
    --js-yellow-deep:  #9a7610;
    --js-yellow-light: #fad96a;
    --js-yellow-pale:  #fef6d8;
    --js-cream:        #fdf8ed;
    --js-cream-warm:   #f7eedc;
    --js-brown:        #2d1f00;
    --js-brown-mid:    #4a3510;
    --js-brown-light:  #8a6a30;
    --js-white:        #ffffff;
    --js-text-dark:    #2d1f00;
    --js-text-mid:     #6b500a;
    --js-text-light:   #b09050;
    --js-border:       rgba(245,200,66,0.2);
    --js-border-soft:  rgba(245,200,66,0.10);
}

/* ============================================================
   BASE
   ============================================================ */
.jisr-page-body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--js-cream);
    color: var(--js-text-dark);
}

/* ============================================================
   1. HERO
   ============================================================ */
.js-hero {
    position: relative;
    background: var(--js-brown);
    padding: 120px 5% 190px;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

/* Arches SVG décoratives */
.js-arches {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.js-arch-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}

/* Halo lumineux doux derrière le titre */
.js-halo {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,200,66,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.js-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb */
.js-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    margin-bottom: 28px;
}
.js-breadcrumb a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.js-breadcrumb a:hover { color: var(--js-yellow-light); }
.js-breadcrumb span:last-child {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

/* Tags */
.js-hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.js-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,200,66,0.15);
    border: 1px solid rgba(245,200,66,0.3);
    color: rgba(255,255,255,0.85);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 16px;
    border-radius: 100px;
}

.js-tag i { color: var(--js-yellow); font-size: 0.65rem; }

.js-tag--outline {
    background: transparent;
    border-color: rgba(255,255,255,0.15);
}

/* Titre héro avec mot arabe */
.js-hero-title-wrap {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Mot en arabe — discret mais présent */
.js-title-arabic {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    color: rgba(245,200,66,0.4);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 0;
    direction: rtl;
}

.js-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(6rem, 16vw, 14rem);
    font-weight: 900;
    color: var(--js-yellow);
    line-height: 0.85;
    letter-spacing: -5px;
    margin: 0 0 14px 0;
    display: block;
    /* Léger text-stroke pour profondeur */
    -webkit-text-stroke: 1px rgba(245,200,66,0.3);
}

/* "Le Pont" avec lignes de part et d'autre */
.js-hero-meaning {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.4);
}

.js-bridge-line {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(245,200,66,0.4));
}

.js-bridge-line:last-child {
    background: linear-gradient(to left, transparent, rgba(245,200,66,0.4));
}

.js-hero-tagline {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: block;
}

.js-hero-description {
    font-size: 1.08rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    max-width: 620px;
    line-height: 1.85;
    border-left: 3px solid var(--js-yellow);
    padding-left: 22px;
    margin-bottom: 42px;
}

.js-hero-description strong {
    color: var(--js-yellow-light);
    font-weight: 700;
}

/* Mini stats rapides dans le hero */
.js-hero-quick {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 480px;
}

.js-quick-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 24px;
}

.js-quick-stat:first-child { padding-left: 0; }

.js-quick-sep {
    width: 1px;
    height: 40px;
    background: rgba(245,200,66,0.2);
    flex-shrink: 0;
}

.js-quick-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--js-yellow);
    letter-spacing: -1px;
    line-height: 1;
}

.js-quick-label {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
}

/* Transition en arche douce */
.js-hero-arch-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}
.js-hero-arch-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================================
   2. BARRE PROGRAMME
   ============================================================ */
.js-programme-bar {
    background-color: var(--js-cream);
    border-bottom: 1px solid var(--js-border);
    padding: 0 5%;
}

.js-programme-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 22px 0;
    flex-wrap: wrap;
}

.js-programme-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.js-programme-badge i {
    font-size: 1.4rem;
    color: var(--js-yellow-dark);
}

.js-programme-badge strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--js-text-dark);
}

.js-programme-badge span {
    display: block;
    font-size: 0.75rem;
    color: var(--js-text-light);
    font-weight: 400;
}

.js-programme-sep {
    width: 1px;
    height: 36px;
    background: var(--js-border);
    flex-shrink: 0;
}

.js-programme-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.js-prog-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--js-brown-mid);
    background: var(--js-yellow-pale);
    border: 1px solid var(--js-border);
    padding: 6px 14px;
    border-radius: 100px;
}

.js-prog-chip i { font-size: 0.6rem; color: var(--js-yellow-dark); }

/* ============================================================
   3. STATS
   ============================================================ */
.js-stats-section {
    background: var(--js-yellow);
    padding: 70px 5%;
}

.js-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.js-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid rgba(45,31,0,0.12);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
}

.js-stat-card:last-child { border-right: none; }
.js-stat-card:hover { background-color: rgba(45,31,0,0.05); }

/* Petite arche décorative derrière chaque stat */
.js-stat-arch {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    border: 1px solid rgba(45,31,0,0.08);
    border-bottom: none;
    border-radius: 60px 60px 0 0;
    pointer-events: none;
}

.js-stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--js-brown);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.js-stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--js-brown);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.js-stat-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(45,31,0,0.5);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* ============================================================
   4. CONTENU + SIDEBAR
   ============================================================ */
.js-detail-container {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 5%;
    align-items: start;
}

.js-main-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.js-block {}

.js-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--js-yellow-dark);
    margin-bottom: 10px;
}

.js-eyebrow--dark { color: var(--js-brown-mid); }

.js-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--js-text-dark);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.js-section-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 4px;
    background: var(--js-yellow);
    margin-top: 14px;
    border-radius: 2px;
}

.js-lead {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--js-text-dark);
    line-height: 1.88;
    margin-bottom: 18px;
}

.js-main-content p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--js-text-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}

.js-main-content strong {
    color: var(--js-text-dark);
    font-weight: 700;
}

/* Grille des services */
.js-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
}

.js-service {
    background: var(--js-white);
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid var(--js-border-soft);
    border-top: 4px solid var(--js-yellow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.js-service::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--js-border-soft);
    pointer-events: none;
    transition: transform 0.4s ease;
}

.js-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(245,200,66,0.15);
}

.js-service:hover::after {
    transform: scale(1.5);
}

/* Le service wide prend toute la largeur */
.js-service--wide {
    grid-column: 1 / -1;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    border-top: none;
    border-left: 4px solid var(--js-yellow);
    border-radius: 12px;
    background: var(--js-yellow-pale);
}

.js-service--wide .js-service-icon {
    flex-shrink: 0;
}

.js-service--wide h4 { margin-bottom: 8px; }
.js-service--wide p { margin: 0; }

.js-service-icon {
    width: 46px;
    height: 46px;
    background: var(--js-yellow-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--js-yellow-dark);
    margin-bottom: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.js-service--wide .js-service-icon {
    background: var(--js-white);
    margin-bottom: 0;
}

.js-service:hover .js-service-icon {
    background-color: var(--js-yellow);
    transform: rotate(10deg);
}

.js-service h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--js-text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.js-service p {
    font-size: 0.88rem;
    color: var(--js-text-mid);
    line-height: 1.7;
    margin: 0;
}

/* Secteurs */
.js-sectors {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.js-sector {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--js-white);
    border-radius: 10px;
    padding: 24px 26px;
    border: 1px solid var(--js-border-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.js-sector:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 24px rgba(245,200,66,0.12);
}

.js-sector-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    /* Forme d'arche — le motif pont */
    background: var(--js-yellow);
    border-radius: 25px 25px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--js-brown);
    transition: transform 0.3s ease;
}

.js-sector:hover .js-sector-icon {
    transform: translateY(-3px);
}

.js-sector-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--js-text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.js-sector-body p {
    font-size: 0.9rem;
    color: var(--js-text-mid);
    line-height: 1.72;
    margin: 0;
}

/* Citation */
.js-quote {
    position: relative;
    background: var(--js-brown);
    border-radius: 16px;
    padding: 60px 60px 52px;
    overflow: hidden;
    margin: 0;
}

.js-quote-arch {
    position: absolute;
    width: 400px;
    height: 200px;
    right: -60px;
    bottom: 0;
    pointer-events: none;
}

.js-quote-arch svg { width: 100%; height: 100%; }

.js-quote p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    color: rgba(255,255,255,0.92);
    line-height: 1.78;
    margin: 0 0 22px 0;
    position: relative;
    z-index: 1;
}

.js-quote p::before {
    content: '"';
    font-size: 6rem;
    font-weight: 900;
    color: var(--js-yellow);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -12px;
    line-height: 1;
    font-style: normal;
    pointer-events: none;
}

.js-quote cite {
    font-size: 0.7rem;
    font-weight: 600;
    font-style: normal;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    display: block;
}

/* ---- SIDEBAR ---- */
.js-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
}

.js-info-card {
    background: var(--js-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(245,200,66,0.12);
    border: 1px solid var(--js-border-soft);
}

.js-info-header {
    background: var(--js-yellow);
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

/* Petite arche déco dans le header */
.js-info-arch-deco {
    position: absolute;
    right: -20px;
    bottom: -30px;
    width: 80px;
    height: 40px;
    border-radius: 40px 40px 0 0;
    border: 1px solid rgba(45,31,0,0.12);
    pointer-events: none;
}

.js-info-header h3 {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(45,31,0,0.65);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.js-info-list {
    list-style: none;
    padding: 20px 26px;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.js-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 12px 0;
    border-bottom: 1px solid var(--js-border-soft);
}

.js-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.js-info-list li > i {
    color: var(--js-yellow-dark);
    font-size: 0.82rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.js-info-list li div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.js-info-list li strong {
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--js-text-light);
    display: block;
}

.js-info-list li span {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--js-text-dark);
    line-height: 1.4;
}

/* Carte promesses */
.js-promise-card {
    background: var(--js-cream-warm);
    border-radius: 12px;
    padding: 26px;
    border: 1px solid var(--js-border);
}

.js-promise-card h3 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--js-text-dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--js-yellow);
    display: inline-block;
}

.js-promise-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid var(--js-border-soft);
}

.js-promise-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.js-promise-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    /* Forme d'arche miniature */
    background: var(--js-yellow);
    border-radius: 5px 5px 2px 2px;
    margin-top: 5px;
    flex-shrink: 0;
}

.js-promise-item > div strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--js-text-dark);
    margin-bottom: 3px;
}

.js-promise-item > div p {
    font-size: 0.8rem;
    color: var(--js-text-mid);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   5. GALERIE
   ============================================================ */
.js-gallery-section {
    background: var(--js-brown);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

/* Arche décorative en fond de galerie */
.js-gallery-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    border-radius: 400px 400px 0 0;
    border: 1px solid rgba(245,200,66,0.06);
    pointer-events: none;
}

.js-gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--js-yellow), transparent);
}

.js-gallery-header {
    max-width: 1300px;
    margin: 0 auto 55px;
}

.js-gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--js-yellow);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.js-gallery-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 4px;
    background: var(--js-yellow);
    margin-top: 14px;
    opacity: 0.4;
    border-radius: 2px;
}

.js-gallery-header p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.35);
    margin-top: 22px;
}

/* Grille galerie */
.js-gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 280px 240px;
    gap: 10px;
}

.js-gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 10px;
    text-decoration: none;
}

.js-gallery-item--large {
    grid-row: 1 / 3;
}

.js-gallery-item--wide {
    grid-column: 2 / 4;
}

.js-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
    filter: saturate(0.8);
}

.js-gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
}

.js-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,31,0,0.85) 0%, rgba(45,31,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.32s ease;
}

.js-gallery-item:hover .js-gallery-overlay { opacity: 1; }

.js-gallery-overlay span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--js-yellow-light);
    border-bottom: 1px solid rgba(245,200,66,0.4);
    padding-bottom: 3px;
}

/* ============================================================
   6. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .js-detail-container {
        grid-template-columns: 1fr;
    }
    .js-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .js-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .js-gallery-item--large {
        grid-row: auto;
        height: 260px;
    }
    .js-gallery-item--wide {
        grid-column: 1 / -1;
        height: 240px;
    }
    .js-gallery-item { height: 200px; }
    .js-services-grid { grid-template-columns: 1fr; }
    .js-service--wide { flex-direction: column; }
}

@media (max-width: 768px) {
    .js-hero {
        padding: 100px 5% 180px;
        min-height: auto;
    }
    .js-hero-title {
        font-size: 5.5rem;
        letter-spacing: -3px;
    }
    .js-stats-inner {
        grid-template-columns: 1fr 1fr;
    }
    .js-stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(45,31,0,0.1);
    }
    .js-stat-card:nth-child(odd) {
        border-right: 1px solid rgba(45,31,0,0.1);
    }
    .js-hero-quick { flex-wrap: wrap; }
    .js-sidebar { grid-template-columns: 1fr; }
    .js-programme-inner { gap: 16px; }
    .js-programme-sep { display: none; }
    .js-quote { padding: 36px 28px; }
}

@media (max-width: 480px) {
    .js-hero-title { font-size: 4rem; letter-spacing: -2px; }
    .js-gallery-grid { grid-template-columns: 1fr; }
    .js-gallery-item,
    .js-gallery-item--large,
    .js-gallery-item--wide { height: 230px; }
    .js-stats-inner { grid-template-columns: 1fr; }
    .js-stat-card { border-right: none; }
}
