/* ==========================================================================
   FADRIQUE — Brutalist Editorial Design System
   ========================================================================== */

:root {
  --base: #0A0A0A;
  --surface: #1A1A1A;
  --accent: #6BE2E9;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--base);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--base);
}
::-webkit-scrollbar-thumb {
  background: #333;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.fad-text-outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  color: transparent;
}

.fad-text-outline-dark {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
  color: transparent;
}

.fad-liquid-glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.fad-liquid-glass-strong {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05),
              inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */

.fad-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}

.fad-nav-left,
.fad-nav-right {
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.fad-nav-left {
  justify-content: flex-start;
}

.fad-nav-right {
  justify-content: flex-end;
}

.fad-nav-logo-center {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  text-decoration: none;
  transition: transform 0.3s;
  justify-self: center;
}
.fad-nav-logo-center:hover {
  transform: scale(1.05);
}
.fad-nav-logo-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fad-nav-pill {
  display: none;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem;
  border-radius: 9999px;
}

.fad-nav-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  transition: color 0.3s;
}
.fad-nav-link:hover {
  color: var(--accent);
}

.fad-nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.625rem 1.1rem;
  border-radius: 9999px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.fad-nav-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.fad-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 1.5rem 3rem;
  overflow: hidden;
}

.fad-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.fad-hero-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.77vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.fad-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: 10;
}

.fad-hero-content {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.fad-hero-kicker {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.fad-hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13vw;
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0 1rem;
  overflow-wrap: break-word;
  word-break: keep-all;
  max-width: 100%;
}

.fad-hero-title-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14vw;
  line-height: 0.8;
}

.fad-hero-desc {
  font-family: 'Inter', sans-serif;
  color: #fff;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  margin: 0 0 2rem;
}

.fad-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.fad-btn-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 9999px;
}
.fad-btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.fad-btn-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s, text-decoration-color 0.3s;
}
.fad-btn-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* --------------------------------------------------------------------------
   MARQUEE
   -------------------------------------------------------------------------- */

.fad-marquee-section {
  background: #fff;
  color: #000;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  width: 100%;
}

.fad-marquee-track {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  animation: fadMarquee 30s linear infinite;
}

.fad-marquee-track span {
  margin: 0 1rem;
  display: inline-block;
}

@keyframes fadMarquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   SECTION HEAD (commun)
   -------------------------------------------------------------------------- */

.fad-section-head {
  margin-bottom: 4rem;
}

.fad-section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.fad-section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

/* --------------------------------------------------------------------------
   PROJETS VIDÉO
   -------------------------------------------------------------------------- */

.fad-section-projets {
  padding: 6rem 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.fad-projets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
}

.fad-projet-card {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.fad-projet-card:nth-child(odd)  { transform: rotate(-0.5deg); }
.fad-projet-card:nth-child(even) { transform: rotate(0.4deg);  }

.fad-projet-card:hover {
  transform: rotate(0deg) scale(1.02);
  z-index: 10;
}

.fad-projet-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fad-projet-media video,
.fad-projet-media img,
.fad-projet-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.fad-projet-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: rgba(255, 255, 255, 0.3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
  gap: 0.75rem;
}

.fad-projet-placeholder-icon {
  font-size: 2rem;
  opacity: 0.4;
}

.fad-projet-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 5;
}

.fad-projet-info {
  padding: 1.75rem 1.5rem 2rem;
}

.fad-projet-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.75rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #fff;
}

.fad-projet-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.fad-projet-meta {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   DESIGN & COMMUNICATION
   -------------------------------------------------------------------------- */

.fad-section-design {
  padding: 6rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fad-design-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.fad-design-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
  margin-top: 4rem;
}

.fad-design-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--base);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.fad-design-card:nth-child(odd)  { transform: rotate(-0.4deg); }
.fad-design-card:nth-child(even) { transform: rotate(0.5deg);  }

.fad-design-card:hover {
  transform: rotate(0deg) scale(1.02);
  z-index: 10;
}

.fad-design-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fad-design-card.is-tall .fad-design-media {
  aspect-ratio: 3 / 4;
}

.fad-design-media img,
.fad-design-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fad-design-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: rgba(255, 255, 255, 0.3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
  gap: 0.75rem;
}

.fad-design-placeholder-icon {
  font-size: 2.25rem;
  opacity: 0.4;
}

.fad-design-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 5;
}

.fad-design-info {
  padding: 1.75rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fad-design-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.75rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #fff;
}

.fad-design-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1rem;
  flex: 1;
}

.fad-design-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  align-self: flex-start;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(107, 226, 233, 0.3);
  transition: border-color 0.3s;
}
.fad-design-link:hover {
  border-bottom-color: var(--accent);
}

/* --------------------------------------------------------------------------
   CTA FINAL
   -------------------------------------------------------------------------- */

.fad-cta-final {
  padding: 8rem 1.5rem;
  background: var(--base);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.fad-cta-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.fad-cta-text {
  width: 100%;
}

.fad-cta-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2rem;
}

.fad-cta-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 3rem;
  color: #fff;
}

.fad-cta-title-accent {
  color: var(--accent);
}

.fad-cta-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.fad-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  background: #fff;
  color: #000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s;
}
.fad-cta-btn:hover {
  background: var(--accent);
  color: #000;
}

.fad-cta-email {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s, text-decoration-color 0.3s;
}
.fad-cta-email:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.fad-cta-socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fad-cta-social-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  transition: color 0.3s;
}
.fad-cta-social-link:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.fad-footer {
  background: var(--base);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  text-align: center;
}

.fad-footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  opacity: 0.3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE — TABLET (≥ 640px)
   ========================================================================== */
@media (min-width: 640px) {
  .fad-cta-row {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

/* ==========================================================================
   RESPONSIVE — DESKTOP (≥ 768px)
   ========================================================================== */
@media (min-width: 768px) {
  .fad-nav {
    padding: 1.25rem 3rem;
  }
  .fad-nav-pill {
    display: flex;
  }

  .fad-hero {
    padding: 8rem 3rem 5rem;
  }
  .fad-hero-kicker {
    font-size: 14px;
  }
  .fad-hero-title {
    font-size: 9vw;
    margin-bottom: 4rem;
    gap: 0 1.5rem;
  }
  .fad-hero-title-italic {
    font-size: 10vw;
  }
  .fad-hero-desc {
    font-size: 1.125rem;
  }

  .fad-marquee-track {
    font-size: 2.5rem;
  }

  .fad-section-projets {
    padding: 8rem 3rem;
  }
  .fad-section-design {
    padding: 8rem 3rem;
  }
  .fad-projets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fad-design-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fad-projet-title,
  .fad-design-title {
    font-size: 2rem;
  }

  .fad-section-title {
    font-size: 5rem;
  }

  .fad-cta-final {
    padding: 10rem 3rem;
  }
  .fad-cta-inner {
    flex-direction: row;
    align-items: flex-end;
  }
  .fad-cta-title {
    font-size: 5rem;
  }

  .fad-footer {
    padding: 2rem 3rem;
    text-align: left;
  }
  .fad-footer-inner {
    flex-direction: row;
  }
}

/* ==========================================================================
   RESPONSIVE — LARGE (≥ 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .fad-hero-title {
    font-size: 110px;
  }
  .fad-hero-title-italic {
    font-size: 120px;
  }
  .fad-section-title {
    font-size: 7rem;
  }
  .fad-cta-title {
    font-size: 6.5rem;
  }
  .fad-design-grid {
    gap: 4rem 3rem;
  }
}

/* ==========================================================================
   RESPONSIVE — XL (≥ 1280px)
   ========================================================================== */
@media (min-width: 1280px) {
  .fad-hero-title {
    font-size: 130px;
  }
  .fad-hero-title-italic {
    font-size: 140px;
  }
}

/* ==========================================================================
   RESPONSIVE — MOBILE FIXES (< 768px)
   ========================================================================== */
@media (max-width: 767px) {

  .fad-nav {
    padding: 1rem;
  }
  .fad-nav-cta {
    padding: 0.5rem 0.85rem;
    font-size: 10px;
    letter-spacing: 0.15em;
  }
  .fad-nav-logo-center {
    width: 44px;
    height: 44px;
  }

  .fad-hero {
    padding: 7rem 1rem 3rem;
  }
  .fad-hero-content {
    padding: 0 0.5rem;
  }
  .fad-hero-kicker {
    font-size: 10px;
    margin-bottom: 1.25rem;
    padding: 0 1rem;
  }
  .fad-hero-title {
    font-size: 14vw;
    letter-spacing: -0.03em;
    gap: 0 0.5rem;
    margin-bottom: 1.75rem;
    line-height: 0.9;
  }
  .fad-hero-title > span {
    display: block;
    width: 100%;
  }
  .fad-hero-title-italic {
    font-size: 15vw;
    line-height: 0.85;
    display: block;
    width: 100%;
  }
  .fad-hero-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }
  .fad-hero-cta-row {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: stretch;
  }
  .fad-btn-glass {
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 10px;
  }
  .fad-btn-link {
    text-align: center;
    font-size: 10px;
  }

  .fad-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.45) 0%,
      rgba(10, 10, 10, 0.55) 50%,
      rgba(10, 10, 10, 0.95) 100%
    );
  }

  .fad-section-projets,
  .fad-section-design {
    padding: 4rem 1rem;
  }

  .fad-section-title {
    font-size: 2.5rem;
    line-height: 0.95;
  }

  .fad-cta-final {
    padding: 5rem 1rem;
  }
  .fad-cta-title {
    font-size: 2.75rem;
    line-height: 0.95;
  }

  .fad-marquee-track {
    font-size: 1.5rem;
  }
}
