/* ==========================================================================
   VIAVY - ONG Santé Mentale des Jeunes à Madagascar
   Typographie : Bebas Neue (≈ Baron) pour titres, DM Sans (≈ Hero) pour corps
   Couleurs : #f77fae, #80a5a8, #f8c9cb, noir, blanc
   ========================================================================== */

/* ===== Google Fonts imported in HTML <head> ===== */

/* ===== CSS Custom Properties ===== */
:root {
  --pink: #f77fae;
  --teal: #80a5a8;
  --light-pink: #f8c9cb;
  --black: #1a1a1a;
  --white: #ffffff;
  --off-white: #fdf6f8;
  --grey: #666;
  --light-grey: #f5f5f5;

  --font-heading: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  --header-height: 80px;
  --container-width: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 40px rgba(247,127,174,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.page-ready {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #444;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

strong {
  font-weight: 700;
  color: var(--black);
}

/* ===== Utility ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--pink {
  background: var(--off-white);
}

.section--teal {
  background: var(--teal);
  color: var(--white);
}

.section--teal p,
.section--teal .lead {
  color: rgba(255,255,255,0.9);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section__header h2 {
  margin-bottom: 16px;
  color: var(--black);
}

.section__header p {
  color: #666;
}

.section--teal .section__header h2 {
  color: var(--white);
}

.text-center { text-align: center; }
.text-pink { color: var(--pink); }
.text-teal { color: var(--teal); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.btn--primary:hover {
  background: #e5619a;
  border-color: #e5619a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,127,174,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}

.btn--outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--pink);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--light-pink);
  border-color: var(--light-pink);
  transform: translateY(-2px);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--teal:hover {
  background: #6b9093;
  border-color: #6b9093;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 68px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  position: relative;
  padding: 4px 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width var(--transition);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a.active {
  color: var(--pink);
}

.header__cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
  border-radius: 2px;
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero--short {
  min-height: auto;
  padding-top: 144px;
  padding-bottom: 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 50%, rgba(128,165,168,0.1) 100%);
}

.hero__bg-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.hero__bg-decor--1 {
  width: 500px;
  height: 500px;
  background: var(--pink);
  top: -100px;
  right: -100px;
}

.hero__bg-decor--2 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  bottom: -50px;
  left: -100px;
}

.hero__bg-decor--3 {
  width: 300px;
  height: 300px;
  background: var(--light-pink);
  top: 40%;
  left: 30%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero__tagline {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(247,127,174,0.12);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero__title {
  margin-bottom: 24px;
  color: var(--black);
}

.hero__title span {
  color: var(--pink);
}

.hero__desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
}

/* ===== Advocacy Hero ===== */
.hero__content--advocacy {
  max-width: 100%;
}

.advocacy-hero {
  display: flex;
  align-items: center;
  gap: 60px;
}

.advocacy-hero__text {
  flex: 1;
}

.advocacy-hero__photo {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.advocacy-hero__photo img,
.advocacy-hero__placeholder {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.advocacy-hero__photo img {
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  border: 4px solid var(--pink);
  box-shadow: 0 8px 32px rgba(247,127,174,0.2);
}

.advocacy-hero__placeholder {
  display: flex;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--light-pink));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 4rem;
  letter-spacing: 0.1em;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  box-shadow: 0 8px 32px rgba(247,127,174,0.2);
}

.advocacy-hero__photo img + .advocacy-hero__placeholder {
  display: none;
}

.advocacy-hero__quote {
  text-align: center;
  padding-top: 16px;
  border-top: 2px solid var(--light-pink);
  width: 100%;
}

.advocacy-hero__quote p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 8px;
}

.advocacy-hero__quote cite {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: var(--pink);
}

/* ===== Mission intro ===== */
.mission-intro {
  max-width: 700px;
}

.mission-intro p {
  margin-bottom: 20px;
  line-height: 1.9;
}

/* ===== Stats Bar ===== */
.stats {
  padding: 80px 0 60px;
  background: var(--teal);
  color: var(--white);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats__item {
  padding: 16px;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.card__icon--pink {
  background: rgba(247,127,174,0.12);
  color: var(--pink);
}

.card__icon--teal {
  background: rgba(128,165,168,0.15);
  color: var(--teal);
}

.card__icon--light {
  background: rgba(248,201,203,0.3);
  color: var(--pink);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.card p {
  color: #666;
  font-size: 0.95rem;
}

.card ul {
  margin-top: 16px;
}

.card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #555;
}

.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light-pink);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 16px;
}

/* ===== Pillar Cards (Home) ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pillar:nth-child(1) { border-top-color: var(--pink); }
.pillar:nth-child(2) { border-top-color: var(--teal); }
.pillar:nth-child(3) { border-top-color: var(--light-pink); }

.pillar__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pillar h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pillar p {
  color: #666;
  font-size: 0.95rem;
}

/* ===== Two-column Layout ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__visual {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.split__visual--gradient {
  background: linear-gradient(135deg, var(--light-pink), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
}

.split__visual--teal {
  background: linear-gradient(135deg, rgba(128,165,168,0.2), var(--teal));
}

.split__visual-text {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--white);
  letter-spacing: 0.2em;
  opacity: 0.4;
}

/* ===== Split image ===== */
.split__img {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
}

.split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-pink);
}

.timeline__item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 8px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--pink);
}

.timeline__date {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline__desc {
  font-size: 0.9rem;
  color: #666;
}

/* ===== Events Grid ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.event-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card__img img {
  transform: scale(1.04);
}

.event-card__body {
  padding: 20px 24px;
}

.event-card__date {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--pink);
  margin-bottom: 8px;
}

.event-card__body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ===== Info Box ===== */
.info-box {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--pink);
}

.info-box--teal {
  border-left-color: var(--teal);
  background: rgba(128,165,168,0.07);
}

.info-box--warning {
  border-left-color: #e6a817;
  background: #fffbeb;
}

.info-box h4 {
  margin-bottom: 12px;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
}

.info-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ===== Feature Grid (Boîte à outils) ===== */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.feature__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.feature h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  text-transform: none;
}

.feature p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* ===== Message Cards (Catherine/Advocacy) ===== */
.messages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.message {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--teal));
}

.message__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--light-pink);
  line-height: 1;
  margin-bottom: 12px;
}

.message h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.message p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

/* ===== Join Cards (Rejoindre) ===== */
.join-cards {
  display: grid;
  gap: 32px;
}

.join-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  transition: all var(--transition);
}

.join-card:hover {
  box-shadow: var(--shadow-hover);
}

.join-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.join-card__icon--pink { background: rgba(247,127,174,0.12); }
.join-card__icon--teal { background: rgba(128,165,168,0.15); }
.join-card__icon--light { background: rgba(248,201,203,0.3); }

.join-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.join-card__subtitle {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.join-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #555;
}

.join-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

/* ===== Budget / Donation ===== */
.budget {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.budget__item {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.budget__pct {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--pink);
}

.budget__label {
  font-size: 0.85rem;
  color: #666;
}

/* ===== Contact Section ===== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247,127,174,0.12);
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--pink);
}

.contact-item__text {
  font-size: 0.95rem;
}

.contact-item__label {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  margin-bottom: 2px;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--pink), #e5619a);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -200px;
  right: -100px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -150px;
  left: -50px;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ===== Footer (Light) ===== */
.footer {
  background: var(--off-white);
  color: #555;
  padding: 80px 0 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: var(--teal);
  font-style: italic;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #777;
  margin-bottom: 0;
}

.footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: #666;
  padding: 6px 0;
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--pink);
  padding-left: 4px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(247,127,174,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

.footer__social a:hover svg {
  fill: var(--white);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--pink);
}

.footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #999;
}

/* ===== Page Transitions ===== */
body {
  animation: fadeIn 0.5s ease both;
}

body.page-leaving {
  animation: fadeOut 0.3s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--reverse {
    direction: ltr;
  }

  .split__visual {
    min-height: 300px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .messages {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
    transition: right var(--transition);
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav a {
    font-size: 1.2rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
  }

  .hero--short {
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .advocacy-hero {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
  }

  .advocacy-hero__photo {
    width: 200px;
  }

  .advocacy-hero__photo img,
  .advocacy-hero__placeholder {
    width: 200px;
    height: 200px;
  }

  .advocacy-hero__text .hero__desc {
    max-width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    text-align: center;
  }

  .join-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .join-card__icon {
    width: 56px;
    height: 56px;
  }

  .budget {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .budget {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Overlay for mobile menu ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== Form Styles ===== */
.form {
  max-width: 600px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--black);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--pink);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Thematic Tabs (Boîte à outils) ===== */
.themes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.theme {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.theme__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
}

.theme ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
}

.theme ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  text-transform: none;
}

.step p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .themes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ===== Formats Grid (Catherine) ===== */
.formats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.format {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.format:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.format__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247,127,174,0.12);
  font-size: 1.3rem;
}

.format h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  text-transform: none;
}

.format p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .formats {
    grid-template-columns: 1fr;
  }
}

/* ===== Mecene Tiers ===== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tier {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.tier:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
}

.tier--featured {
  border-color: var(--pink);
  position: relative;
}

.tier--featured::before {
  content: 'Populaire';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
}

.tier__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.tier__price {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}

.tier__desc {
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 768px) {
  .tiers {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===== Source References ===== */
.source-ref {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(128,165,168,0.12);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  vertical-align: super;
  margin-left: 2px;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.source-ref:hover {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.15);
}

.stats .source-ref {
  color: var(--white);
  background: rgba(255,255,255,0.2);
}

.stats .source-ref:hover {
  background: rgba(255,255,255,0.4);
  color: var(--white);
}

.source-ref .source-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  width: 300px;
  z-index: 100;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  text-align: left;
  pointer-events: none;
}

.source-ref .source-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--black);
}

.source-ref:hover .source-tooltip,
.source-ref:focus .source-tooltip {
  display: block;
}

.source-ref .source-tooltip strong {
  color: var(--pink);
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .source-ref .source-tooltip {
    width: 250px;
    left: auto;
    right: -20px;
    transform: none;
  }
  .source-ref .source-tooltip::after {
    left: auto;
    right: 24px;
    transform: none;
  }
}

/* ===== Sources Panel ===== */
.sources-panel {
  background: var(--off-white);
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.sources-panel__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  padding: 0;
}

.sources-panel__toggle svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  fill: var(--teal);
}

.sources-panel__toggle.open svg {
  transform: rotate(180deg);
}

.sources-panel__list {
  display: none;
  margin-top: 24px;
}

.sources-panel__list.open {
  display: block;
}

.sources-panel__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}

.sources-panel__item:last-child {
  border-bottom: none;
}

.sources-panel__num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sources-panel__item a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sources-panel__item a:hover {
  color: var(--pink);
}

/* ===== Tabs (Rejoindre) ===== */
.tabs__nav {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tabs__btn {
  padding: 12px 24px;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.tabs__btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.tabs__btn--active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.tabs__panel {
  display: none;
}

.tabs__panel--active {
  display: block;
}

@media (max-width: 768px) {
  .tabs__nav {
    gap: 6px;
  }

  .tabs__btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

/* ===== Boîte à outils — Recherche, Filtres, Grille vidéos ===== */

/* Search bar */
.search-bar {
  position: relative;
  max-width: 480px;
  margin-top: 24px;
}

.search-bar__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: #999;
  pointer-events: none;
}

.search-bar__input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color var(--transition);
}

.search-bar__input::placeholder {
  color: #aaa;
}

.search-bar__input:focus {
  outline: none;
  border-color: var(--pink);
}

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.filter-btn--active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.video-card--hidden {
  display: none;
}

.video-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--light-pink) 0%, rgba(128,165,168,0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 4px;
  transition: transform var(--transition);
}

.video-card:hover .video-card__play {
  transform: scale(1.1);
}

.video-card__info {
  padding: 16px 20px 20px;
}

.video-card__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.video-card__tag--pink {
  background: rgba(247, 127, 174, 0.15);
  color: var(--pink);
}

.video-card__tag--teal {
  background: rgba(128, 165, 168, 0.15);
  color: var(--teal);
}

.video-card__tag--purple {
  background: rgba(147, 130, 200, 0.15);
  color: #7c6bb5;
}

.video-card__tag--orange {
  background: rgba(230, 160, 90, 0.15);
  color: #c5842e;
}

.video-card__tag--green {
  background: rgba(100, 180, 120, 0.15);
  color: #3d8b53;
}

.video-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.4;
}

.video-card__duration {
  font-size: 0.8rem;
  color: #999;
}

.video-grid__empty {
  text-align: center;
  color: #999;
  padding: 60px 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Video lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-lightbox--open {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox__inner {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.video-lightbox--open .video-lightbox__inner {
  transform: scale(1);
}

.video-lightbox__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.video-lightbox__close:hover {
  background: var(--pink);
}

.video-lightbox__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 16px;
}

.video-lightbox__placeholder span {
  font-size: 1rem;
  opacity: 0.7;
}

/* ===== Partners Grid (Boîte à outils) ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.partner-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
}

.partner-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.partner-card__photo--placeholder {
  background: linear-gradient(135deg, var(--pink), var(--light-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.partner-card__photo--add {
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ccc;
  border: 2px dashed #ddd;
}

.partner-card--placeholder {
  border: 2px dashed rgba(247,127,174,0.3);
  box-shadow: none;
  background: var(--off-white);
}

.partner-card--placeholder:hover {
  border-color: var(--pink);
  box-shadow: none;
}

.partner-card__body h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.partner-card__role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 10px;
}

.partner-card__body p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

/* ===== YouTube section ===== */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 8px;
}

.yt-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--black);
  display: block;
}

.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.yt-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.yt-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.yt-card:hover .yt-card__thumb img {
  transform: scale(1.04);
}

.yt-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background var(--transition);
}

.yt-card:hover .yt-card__play {
  background: rgba(0,0,0,0.4);
}

.yt-card__play svg {
  width: 52px;
  height: 52px;
  fill: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.yt-card__info {
  padding: 16px 20px 20px;
}

.yt-card__info h4 {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 6px;
}

.yt-card__date {
  font-size: 0.8rem;
  color: #999;
}

.yt-fallback {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.yt-fallback__icon {
  width: 56px;
  height: 56px;
  fill: #e0e0e0;
  margin-bottom: 16px;
}

.yt-fallback p {
  color: #999;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yt-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* YouTube Shorts — format portrait */
.yt-grid--shorts {
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

.yt-grid--shorts .yt-card__thumb {
  aspect-ratio: 9 / 16;
}
