/* ========== HERO PRESTATION ========== */
    .hero-presta {
      position: relative;
      min-height: 540px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }
    .hero-presta-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, transparent 100%),
        url('https://drive.google.com/thumbnail?id=1LC5IQDS2goQ5HsYxM3pytHdVx3IKxkMg&sz=w2000') center/cover no-repeat;
    }
    .hero-presta-figure {
      position: absolute;
      right: 5%;
      bottom: 0;
      top: 0;
      width: 48%;
      overflow: hidden;
      display: none;
    }
    .hero-presta-figure .fig-body {
      position: absolute;
      right: 10%;
      bottom: 0;
      width: 280px;
      height: 92%;
      background: linear-gradient(180deg, rgba(90,70,50,0.3) 0%, rgba(60,45,30,0.5) 60%, rgba(40,25,15,0.6) 100%);
      border-radius: 30% 30% 0 0 / 15% 15% 0 0;
    }
    .hero-presta-figure .fig-arm {
      position: absolute;
      right: 35%;
      top: 15%;
      width: 120px;
      height: 200px;
      background: rgba(70,50,35,0.25);
      border-radius: 50% 50% 30% 30%;
      transform: rotate(-15deg);
    }
    .hero-presta-figure .fig-glass {
      position: absolute;
      left: 5%;
      top: 20%;
      width: 55%;
      height: 50%;
      background: linear-gradient(135deg, rgba(173,216,230,0.08) 0%, rgba(200,220,240,0.04) 100%);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
      transform: perspective(400px) rotateY(10deg);
    }
    .hero-presta-content {
      position: relative;
      z-index: 2;
      padding: 80px 56px 64px;
      max-width: 600px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-presta-breadcrumb {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      opacity: 0.65;
      margin-bottom: 20px;
    }
    .hero-presta-breadcrumb a {
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .hero-presta h1 {
      font-size: 54px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.04;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }
    .hero-presta h1 span { color: var(--orange); }
    .hero-presta .hero-desc {
      font-size: 15px;
      line-height: 1.7;
      opacity: 0.8;
      margin-bottom: 36px;
      max-width: 470px;
    }
    .hero-presta .btn-rdv-hero {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 16px 32px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: background .2s;
      width: fit-content;
    }
    .hero-presta .btn-rdv-hero:hover { background: #d9551a; }

    /* ========== SCROLL BANNER ========== */
    .scroll-banner {
      background: var(--orange);
      color: #fff;
      padding: 13px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .scroll-banner-track {
      display: inline-flex;
      animation: scrollBanner 25s linear infinite;
    }
    .scroll-banner-item {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }
    .scroll-banner-item::after {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #fff;
      flex-shrink: 0;
    }
    @keyframes scrollBanner {
      0% { transform: translateX(0); }
      100% { transform: translateX(-16.666%); }
    }

    /* ========== STATS BAR ========== */
    .stats-bar {
      background: #fff;
      padding: 52px 56px;
      color: #1a1a1a;
    }
    .stats-bar-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .stat-bar-item { text-align: center; }
    .stat-bar-item .stat-number {
      font-size: 60px;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -1px;
    }
    .stat-bar-item .stat-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      opacity: 0.65;
      line-height: 1.4;
      color: var(--dark);
    }

    /* ========== QUEL VITRAGE SECTION ========== */
    .quel-vitrage {
      padding: 80px 56px;
      background: #fff;
    }
    .quel-vitrage h2 {
      font-size: 32px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 48px;
      letter-spacing: -0.5px;
    }
    .vitrage-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .vitrage-left {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .vitrage-toggle {
      display: flex;
      gap: 12px;
    }
    .vitrage-toggle button {
      padding: 10px 24px;
      border: 2px solid #ddd;
      background: #fff;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
      cursor: pointer;
      transition: all .3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .vitrage-toggle button.active {
      border-color: var(--orange);
      color: var(--orange);
      background: var(--orange-light);
    }
    .vitrage-diagram {
      background: var(--gray);
      border-radius: 16px;
      padding: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
    }
    .car-diagram {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .car-top-view {
      position: relative;
      width: 140px;
      height: 180px;
      border: 2px solid var(--dark);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .car-top-view::before {
      content: 'PARE-BRISE';
      position: absolute;
      top: -28px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: var(--dark);
      width: 100%;
      text-align: center;
    }
    .car-top-view::after {
      content: 'LUN';
      position: absolute;
      bottom: 8px;
      font-size: 10px;
      font-weight: 700;
      color: var(--dark);
      background: var(--orange-light);
      padding: 4px 8px;
      border-radius: 4px;
    }
    .car-side-label {
      position: absolute;
      font-size: 10px;
      font-weight: 700;
      color: var(--dark);
      background: var(--orange-light);
      padding: 4px 8px;
      border-radius: 4px;
    }
    .car-side-label.av { left: -30px; top: 50%; transform: translateY(-50%); }
    .car-side-label.ar { right: -30px; top: 50%; transform: translateY(-50%); }

    /* Info card on the right */
    .vitrage-right {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .vitrage-info-card {
      background: #fff;
      border: 1px solid #eee;
      border-top: 4px solid var(--orange);
      border-radius: 8px;
      padding: 32px;
    }
    .vitrage-info-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 4px;
      color: var(--dark);
    }
    .vitrage-info-card .subtitle {
      font-size: 12px;
      font-weight: 600;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 24px;
    }
    .vitrage-info-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 12px 0;
      border-bottom: 1px dotted #ddd;
      font-size: 13px;
    }
    .vitrage-info-row:last-of-type { border-bottom: none; }
    .vitrage-info-row strong { color: var(--dark); font-weight: 700; }
    .vitrage-info-row .value { color: var(--orange); font-weight: 700; }
    .vitrage-desc {
      font-size: 14px;
      line-height: 1.7;
      color: #444;
      margin: 24px 0;
      padding: 20px;
      background: var(--gray);
      border-radius: 8px;
    }
    .vitrage-btn {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 16px 28px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-align: center;
      transition: background .2s;
      width: 100%;
    }
    .vitrage-btn:hover { background: #d9551a; }

    /* ========== SEO CONTENT ========== */
    .seo-content {
      padding: 72px 56px;
      background: var(--gray);
    }
    .seo-content-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .seo-content .section-badge {
      display: inline-block;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 11px;
      font-weight: 700;
      padding: 7px 18px;
      border-radius: 20px;
      text-transform: uppercase;
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }
    .seo-content h2 {
      font-size: 32px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 32px;
      letter-spacing: -0.5px;
    }
    .seo-content h3 {
      font-size: 20px;
      font-weight: 800;
      margin-top: 36px;
      margin-bottom: 16px;
      color: var(--dark);
    }
    .seo-content p {
      font-size: 15px;
      line-height: 1.8;
      color: #444;
      margin-bottom: 18px;
    }
    @media (max-width: 768px) {
      .seo-content { padding: 48px 20px; }
      .seo-content h2 { font-size: 26px; }
      .seo-content h3 { font-size: 18px; }
      .seo-content p { font-size: 14px; }
    }
    @media (max-width: 420px) {
      .seo-content h2 { font-size: 22px; }
    }

    /* ========== CTA BANNER ========== */
    .cta-banner {
      background: var(--orange);
      padding: 48px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .cta-banner-text h2 {
      font-size: 28px;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
      font-style: italic;
      margin-bottom: 6px;
    }
    .cta-banner-text p {
      font-size: 14px;
      color: rgba(255,255,255,0.85);
    }
    .cta-banner .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: #fff;
      padding: 16px 36px;
      border-radius: 30px;
      border: 2px solid #fff;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
      transition: background .2s;
      position: relative;
      overflow: hidden;
    }
    .cta-banner .btn-cta:hover { background: rgba(255,255,255,0.15); }
    .cta-banner .btn-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
      transform: translateX(-100%);
    }
    .cta-banner .btn-cta:hover::after { animation: shimmer .8s ease forwards; }

    /* ========== NOS AUTRES SERVICES ========== */
    .other-services {
      background: var(--dark);
      padding: 56px 56px 64px;
      color: #fff;
      position: relative;
    }
    .other-services::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--orange);
    }
    .other-services h2 {
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 28px;
      letter-spacing: 0.5px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      position: relative;
    }
    .service-card {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
      transition: transform .4s ease, box-shadow .4s ease;
    }
    .service-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 12px 32px rgba(0,0,0,0.3);
      z-index: 2;
    }
    .service-card .card-bg { position: absolute; inset: 0; }
    .service-card .card-bg.s1 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%), url('https://drive.google.com/thumbnail?id=1IDcX0wKcIVdNLNl66Cp_LH9Cq6OFZo_h&sz=w2000') center/cover no-repeat; }
    .service-card .card-bg.s2 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%), url('https://drive.google.com/thumbnail?id=1kGTzrzTBX7JMX_hj-_lXYO-NKIlFWAhY&sz=w2000') center/cover no-repeat; }
    .service-card .card-bg.s3 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%), url('https://drive.google.com/thumbnail?id=1Xf_l_jaFnIqTgqsCEYOC6iJf-1JZSxoY&sz=w2000') center/cover no-repeat; }
    .service-card .card-bg.s4 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%), url('https://drive.google.com/thumbnail?id=1LC5IQDS2goQ5HsYxM3pytHdVx3IKxkMg&sz=w2000') center/cover no-repeat; }
    .service-card .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 55%);
      z-index: 1;
    }
    .service-card h3 {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.35;
      z-index: 2;
    }
    .service-card h3::before {
      content: '';
      display: block;
      width: 28px;
      height: 3px;
      background: var(--orange);
      margin-bottom: 8px;
      border-radius: 2px;
    }
    .services-scroll-btn {
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      transition: background .2s;
    }
    .services-scroll-btn:hover { background: rgba(255,255,255,0.1); }

    /* ========== ILS PARLENT DE NOUS ========== */
    .media {
      padding: 64px 56px 72px;
      background: var(--gray);
      text-align: center;
    }
    .media h2 {
      font-size: 26px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 44px;
      display: inline-block;
      border-bottom: 3px solid var(--dark);
      padding-bottom: 8px;
    }
    .media-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .media-logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60px;
      min-width: 130px;
    }
    .logo-bfm {
      font-family: 'Arial Black', Arial, sans-serif;
      font-weight: 900;
      display: flex;
      align-items: flex-end;
    }
    .logo-bfm .bfm-text { font-size: 30px; color: #000; line-height: 1; }
    .logo-bfm .tv-text {
      font-size: 18px;
      font-weight: 900;
      color: #fff;
      background: #0055A4;
      padding: 2px 5px 4px;
      line-height: 1;
    }
    .logo-cnews {
      display: flex;
      align-items: center;
      font-family: 'Arial', sans-serif;
      font-weight: 900;
      font-size: 24px;
    }
    .logo-cnews .c-letter { color: #000; margin-right: 1px; }
    .logo-cnews .news-box {
      background: #E3000B;
      color: #fff;
      padding: 6px 12px;
      border-radius: 3px;
      font-size: 20px;
      letter-spacing: 1px;
    }
    .logo-rmc {
      background: #E3000B;
      color: #fff;
      font-family: 'Arial Black', Arial, sans-serif;
      font-size: 26px;
      font-weight: 900;
      padding: 8px 20px;
      border-radius: 4px;
      letter-spacing: 3px;
    }
    .logo-lepoint {
      background: #BE1622;
      color: #fff;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 22px;
      font-weight: 700;
      font-style: italic;
      padding: 10px 22px;
      border-radius: 4px;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--dark);
      color: #fff;
      padding: 56px 56px 28px;
    }
    .footer-main {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo-text {
      font-size: 30px;
      font-weight: 900;
      font-style: italic;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.6;
      opacity: 0.6;
      margin-bottom: 22px;
      max-width: 280px;
    }
    .btn-rdv-footer {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 14px 26px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .btn-rdv-footer:hover { background: #d9551a; }
    .footer-col h4 {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 13px;
      opacity: 0.55;
      transition: opacity .2s;
    }
    .footer-col ul li a:hover { opacity: 1; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom .copyright { font-size: 12px; opacity: 0.4; }
    .footer-bottom-links { display: flex; gap: 28px; }
    .footer-bottom-links a { font-size: 12px; opacity: 0.45; transition: opacity .2s; }
    .footer-bottom-links a:hover { opacity: 1; }

    /* ========== ANIMATIONS ========== */
    .anim-fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
    }
    .anim-fade-up.visible { opacity: 1; transform: translateY(0); }
    .anim-fade-up.delay-1 { transition-delay: .1s; }
    .anim-fade-up.delay-2 { transition-delay: .2s; }
    .anim-fade-up.delay-3 { transition-delay: .3s; }
    .anim-fade-up.delay-4 { transition-delay: .4s; }

    /* Hero entrance */
    .hero-presta-content > * {
      opacity: 0;
      transform: translateY(25px);
      animation: heroFadeIn .7s cubic-bezier(.25,.46,.45,.94) forwards;
    }
    .hero-presta-content > *:nth-child(1) { animation-delay: .1s; }
    .hero-presta-content > *:nth-child(2) { animation-delay: .25s; }
    .hero-presta-content > *:nth-child(3) { animation-delay: .4s; }
    .hero-presta-content > *:nth-child(4) { animation-delay: .55s; }
    @keyframes heroFadeIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Hover effects */
    .stat-bar-item { transition: transform .3s ease; }
    .stat-bar-item:hover { transform: scale(1.05); }
    .stat-bar-item:hover .stat-number { text-shadow: 0 0 20px rgba(242,101,34,0.4); }
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* ========== RESPONSIVE — TABLET ========== */
    @media (max-width: 1100px) {
      .header { padding: 10px 32px; }
      .header-nav { gap: 18px; }
      .header-nav a { font-size: 13px; }
      .hero-presta h1 { font-size: 42px; }
      .hero-presta-content { padding: 60px 36px 48px; }
      .quel-vitrage { padding: 60px 36px; }
      .vitrage-layout { gap: 36px; }
      .stats-bar { padding: 40px 36px; }
      .stat-bar-item .stat-number { font-size: 48px; }
      .cta-banner { padding: 40px 36px; }
      .cta-banner-text h2 { font-size: 24px; }
      .other-services { padding: 48px 36px 56px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .services-scroll-btn { display: none; }
      .media { padding: 48px 36px; }
      .footer { padding: 48px 36px 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ========== RESPONSIVE — MOBILE ========== */
    @media (max-width: 768px) {
      .header { padding: 10px 20px; }
      .header-nav, .header-actions { display: none; }
      .burger { display: flex; }
      .logo-wrap img { width: 90px; height: 54px; }

      .hero-presta { min-height: 420px; }
      .hero-presta-content { padding: 48px 24px 40px; max-width: 100%; }
      .hero-presta h1 { font-size: 32px; }
      .hero-presta .hero-desc { font-size: 13px; }
      .hero-presta-figure { display: none; }

      .scroll-banner-item { font-size: 11px; padding: 0 14px; }

      .stats-bar { padding: 36px 20px; }
      .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
      .stat-bar-item .stat-number { font-size: 40px; }
      .stat-bar-item .stat-label { font-size: 10px; }

      .quel-vitrage { padding: 48px 20px; }
      .quel-vitrage h2 { font-size: 26px; }
      .vitrage-layout { grid-template-columns: 1fr; gap: 32px; }
      .vitrage-diagram { aspect-ratio: 4/3; }

      .cta-banner { flex-direction: column; padding: 36px 20px; text-align: center; }
      .cta-banner-text h2 { font-size: 22px; }
      .cta-banner .btn-cta { width: 100%; justify-content: center; padding: 16px 24px; }

      .other-services { padding: 40px 20px 48px; }
      .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .service-card h3 { font-size: 12px; bottom: 14px; left: 14px; }

      .media { padding: 40px 20px 48px; }
      .media h2 { font-size: 22px; }
      .media-logos { flex-direction: column; gap: 20px; }

      .footer { padding: 36px 20px 20px; }
      .footer-main { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }

    /* ========== MOBILE SMALL ========== */
    @media (max-width: 420px) {
      .header { padding: 8px 16px; }
      .logo-wrap img { width: 80px; height: 48px; }
      .hero-presta { min-height: 360px; }
      .hero-presta-content { padding: 36px 18px 32px; }
      .hero-presta h1 { font-size: 26px; }
      .hero-presta .hero-desc { font-size: 12px; }
      .hero-presta .btn-rdv-hero { padding: 14px 24px; font-size: 11px; }
      .stat-bar-item .stat-number { font-size: 34px; }
      .quel-vitrage { padding: 40px 18px; }
      .quel-vitrage h2 { font-size: 22px; }
      .vitrage-toggle button { font-size: 11px; padding: 9px 16px; }
      .vitrage-info-card { padding: 20px; }
      .vitrage-info-card h3 { font-size: 16px; }
      .vitrage-info-row { font-size: 12px; }
      .vitrage-desc { font-size: 13px; padding: 14px; }
      .cta-banner-text h2 { font-size: 18px; }
      .service-card h3 { font-size: 11px; }
      .media h2 { font-size: 20px; }
    }