/* ==========================================================================
   BitoPhoto — base styles
   ========================================================================== */

:root {
  --color-bg: #F8F8F8;
  --color-white: #FFFFFF;
  --color-ink: #282828;
  --color-ink-soft: #4C4C4C;
  --color-dark: #202020;
  --color-dark-2: #14191C;
  --color-line: #EFEFEF;
  --color-accent: #0097E9;
  --color-light-ink: #F1F1F1;
  --font-display: 'Clash Grotesk Variable', 'Clash Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--color-bg);
  font-family: var(--font-display);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.spacer {
  flex-grow: 10; /* This will dynamically push the left and right elements apart */
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  max-width: 170px;
}

.btn--primary {
  padding: 8px 24px;
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: #007cba;
}

.btn--outline {
  padding: 8px 24px;
  border: 1px solid var(--color-ink-soft);
  color: var(--color-ink);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--small {
  padding: 6px 12px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header-wrap {
  padding: 0px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.site-header {
  background: var(--color-white);
  border-radius: 0px;
  padding: 10px 0;
  border: 18px;
}

.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 14px;
  padding-right: 24px;
  gap: 24px;
}

.logo {
  display: block;
  height: 77px;
  width: auto;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.04);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-ink);
  transition: opacity 0.15s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-ink);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 40px 0;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-heading {
  flex: 1 1 349px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-heading .eyebrow {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.02;
}

.hero-heading .title {
  font-size: 52px;
  line-height: 1.02;
  font-weight: 400;
}

.hero-heading .title strong {
  font-weight: 500;
}

.hero-location {
  display: flex;
  flex-direction: column;
}

.hero-location .label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.hero-location .place {
  font-size: 18px;
  line-height: 1;
}

.hero-location .place strong {
  font-weight: 500;
}

.hero-location .place span {
  font-weight: 300;
}

.hero-blurb {
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-blurb p {
  font-size: 14px;
  line-height: 1.5;
}

.hero-blurb p strong {
  font-weight: 500;
}

.hero-blurb p .light {
  font-weight: 300;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.gallery-row {
  width: 100%;
  max-width: var(--max-width);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 2px;
  width: max-content;
}

.gallery-row--photos .gallery-track img {
  flex: 0 0 auto;
  height: 142px;
  width: 142px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #D9D9D9;
  transition: width 0.25s ease;
}

.gallery-row--photos .gallery-track img:hover {
  width: 160px;
}

.gallery-row--videos .gallery-track video {
  flex: 0 0 auto;
  height: 238px;
  width: auto;
  object-fit: cover;
  background: #D9D9D9;
  transition: width 0.25s ease;
}

/* Pin each clip's real aspect ratio -- and its resting width as a concrete
   px value, not "auto" -- so its size is known before the video's metadata
   loads (otherwise the track jitters as the guessed width snaps to the true
   one) and so the hover transition below has two real values to ease
   between. A transition can't animate away from "auto". */
.gallery-row--videos .gallery-track video[src*="andrew-testimonial"] { aspect-ratio: 658 / 480; width: 326px; }
.gallery-row--videos .gallery-track video[src*="christine-deployment"] { aspect-ratio: 270 / 480; width: 134px; }
.gallery-row--videos .gallery-track video[src*="margret-product-demo"] { aspect-ratio: 270 / 480; width: 134px; }
.gallery-row--videos .gallery-track video[src*="shannon-he-product-demo"] { aspect-ratio: 270 / 480; width: 134px; }
.gallery-row--videos .gallery-track video[src*="viola-jokudu-testimonial"] { aspect-ratio: 854 / 480; width: 423px; }
.gallery-row--videos .gallery-track video[src*="walker-cole-product-demo"] { aspect-ratio: 270 / 480; width: 134px; }
.gallery-row--videos .gallery-track video[src*="will-mulholland-testimonial"] { aspect-ratio: 270 / 480; width: 134px; }

/* Widen on hover while holding height fixed. Width can't just be "auto *
   1.13" since aspect-ratio determines auto-width from height alone, so each
   clip's grown width is precomputed from its own ratio at the row's height. */
.gallery-row--videos .gallery-track video[src*="andrew-testimonial"]:hover { width: 368px; }
.gallery-row--videos .gallery-track video[src*="christine-deployment"]:hover { width: 151px; }
.gallery-row--videos .gallery-track video[src*="margret-product-demo"]:hover { width: 151px; }
.gallery-row--videos .gallery-track video[src*="shannon-he-product-demo"]:hover { width: 151px; }
.gallery-row--videos .gallery-track video[src*="viola-jokudu-testimonial"]:hover { width: 477px; }
.gallery-row--videos .gallery-track video[src*="walker-cole-product-demo"]:hover { width: 151px; }
.gallery-row--videos .gallery-track video[src*="will-mulholland-testimonial"]:hover { width: 151px; }

@media (prefers-reduced-motion: no-preference) {
  .gallery-row--photos .gallery-track {
    animation: gallery-marquee-left 400s linear infinite;
  }

  .gallery-row--videos .gallery-track {
    animation: gallery-marquee-left 200s linear infinite;
  }
}

@keyframes gallery-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes gallery-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ==========================================================================
   Section heading
   ========================================================================== */

.section-heading {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.section-heading .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.section-heading .eyebrow {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.section-heading .title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.section-heading .title strong {
  font-weight: 500;
}

.section-heading--page {
  min-height: 60vh;
  align-items: center;
}

.section-heading .intro {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink-soft);
  max-width: 560px;
  margin-top: 8px;
}

.section-heading .redirect-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-ink-soft);
  margin-top: 8px;
}

.section-heading .redirect-note a {
  text-decoration: underline;
  font-weight: 500;
  color: var(--color-ink);
}

/* ==========================================================================
   Feature cards
   ========================================================================== */

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.feature-card {
  flex: 1 1 130px;
  min-width: 130px;
  height: 166px;
  padding: 8px;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  overflow: hidden;
  transition: background-color 0.2s ease;
}

.feature-card:hover {
  background: var(--color-dark-2);
}

.feature-card img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.feature-card:hover img {
  transform: scale(1.3);
}

.feature-card p {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  transition: transform 0.2s ease;
  transform-origin: left bottom;
}

.feature-card:hover p {
  transform: scale(1.05);
}

/* ==========================================================================
   Process section
   ========================================================================== */

.process {
  padding: 40px 0;
}

.process .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.process-copy {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.process-copy .eyebrow {
  font-size: 24px;
  font-weight: 300;
  line-height: 0;
}

.process-copy .title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.process-copy .title strong {
  font-weight: 500;
}

.process-copy p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

.process-copy p strong {
  font-weight: 500;
}

.process-copy p .light {
  font-weight: 300;
}

.process-steps {
  flex: 1 1 245px;
  display: flex;
  flex-direction: column;
}

.process-step {
  padding: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  margin-top: -1px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: border-color 0.2s ease, padding 0.25s ease;
}

.process-step:hover {
  padding-top: 14px;
  padding-bottom: 14px;
}

.process-step .num {
  width: 41px;
  flex: none;
  text-align: center;
  font-size: 36px;
  font-weight: 300;
  color: var(--color-dark);
}

.process-step .text {
  flex: 1 1 0;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.4;
}

.process-step .text strong {
  display: block;
  font-weight: 500;
}

/* ==========================================================================
   Discuss section
   ========================================================================== */

.discuss {
  padding: 40px 0;
}

.discuss .container {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.discuss-copy {
  flex: 1 1 400px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.discuss-photo {
  flex: 1 1 320px;
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.discuss-photo:hover {
  transform: scale(1.02);
}

.discuss-copy .eyebrow {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.discuss-copy .title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.discuss-copy .title strong {
  font-weight: 500;
}

.discuss-copy p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

.discuss-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.discuss-list li {
  font-size: 14px;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.discuss-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--color-accent);
}

/* ==========================================================================
   About section
   ========================================================================== */

.about {
  padding: 40px 0;
}

.about .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.about-photo {
  flex: 1 1 240px;
  max-width: 295px;
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-photo:hover {
  transform: scale(1.02);
}

.about-copy {
  flex: 1 1 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-copy .eyebrow {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.about-copy .title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.about-copy .title strong {
  font-weight: 500;
}

.about-copy .title span.thin {
  font-weight: 300;
}

.about-copy p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

.about-copy p strong {
  font-weight: 500;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  padding: 40px 0 100px;
}

.contact .container {
  align-items: flex-start;
  gap: 60px;
}

.contact-form {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-field {
  flex: 1 1 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink-soft);
}

.required-mark {
  color: #E23434;
}

.form-field input,
.form-field textarea {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 4px;
  padding: 10px 12px;
  resize: vertical;
  transition: border-color 0.15s ease;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: #C9C9C9;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #A9A9A9;
}

.contact-form .btn {
  align-self: flex-start;
  max-width: none;
  margin-top: 8px;
}

.contact-side {
  flex: 0 1 280px;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 32px 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 24px;
}

.contact-side__title {
  font-size: 20px;
  font-weight: 500;
}

.contact-side__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-light-ink);
  margin-bottom: 10px;
}

.contact-side .btn--outline {
  border-color: var(--color-white);
  color: var(--color-white);
  align-self: flex-start;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-dark);
  padding: 100px 0;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand .logo-light {
  height: 70    px;
  width: auto;
}

.footer-brand .from-label {
  color: var(--color-white);
  font-size: 14px;
}

.footer-brand .credit-badge {
  height: 22px;
  width: auto;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav .nav-link {
  color: var(--color-light-ink);
}

.footer-nav .btn--primary {
  padding: 6px 12px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .gallery-row--photos .gallery-track img {
    height: 100px;
    width: 100px;
  }

  .gallery-row--photos .gallery-track img:hover {
    width: 113px;
  }

  .gallery-row--videos .gallery-track video {
    height: 160px;
  }

  .gallery-row--videos .gallery-track video[src*="andrew-testimonial"] { width: 219px; }
  .gallery-row--videos .gallery-track video[src*="christine-deployment"] { width: 90px; }
  .gallery-row--videos .gallery-track video[src*="margret-product-demo"] { width: 90px; }
  .gallery-row--videos .gallery-track video[src*="shannon-he-product-demo"] { width: 90px; }
  .gallery-row--videos .gallery-track video[src*="viola-jokudu-testimonial"] { width: 285px; }
  .gallery-row--videos .gallery-track video[src*="walker-cole-product-demo"] { width: 90px; }
  .gallery-row--videos .gallery-track video[src*="will-mulholland-testimonial"] { width: 90px; }

  .gallery-row--videos .gallery-track video[src*="andrew-testimonial"]:hover { width: 247px; }
  .gallery-row--videos .gallery-track video[src*="christine-deployment"]:hover { width: 101px; }
  .gallery-row--videos .gallery-track video[src*="margret-product-demo"]:hover { width: 101px; }
  .gallery-row--videos .gallery-track video[src*="shannon-he-product-demo"]:hover { width: 101px; }
  .gallery-row--videos .gallery-track video[src*="viola-jokudu-testimonial"]:hover { width: 321px; }
  .gallery-row--videos .gallery-track video[src*="walker-cole-product-demo"]:hover { width: 101px; }
  .gallery-row--videos .gallery-track video[src*="will-mulholland-testimonial"]:hover { width: 101px; }
}

@media (max-width: 640px) {
  .section-heading .container {
    align-items: flex-start;
    text-align: left;
  }

  .site-header-wrap {
    padding: 0px;
  }

  .site-header .container {
    flex-wrap: wrap;
    padding-left: 12px;
    padding-right: 12px;
    gap: 0;
  }

  .logo {
    height: 44px;
  }

  .main-nav {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 0;
    margin-top: 0;
    border-top: 1px solid transparent;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.22s ease, opacity 0.18s ease, margin-top 0.22s ease, padding-top 0.22s ease, border-color 0.22s ease;
  }

  .main-nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding-top: 8px;
    margin-top: 8px;
    border-top-color: var(--color-line);
  }

  .main-nav .nav-link {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 8px;
  }

  .main-nav .nav-link::after {
    display: none;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link:active {
    background: var(--color-line);
    opacity: 1;
  }

  .main-nav .btn--primary {
    align-self: stretch;
    max-width: none;
    width: 100%;
    margin: 10px auto 0;
    text-align: center;
    padding: 16px 20px;
    font-size: 17px;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .gallery-row--photos .gallery-track img {
    height: 100px;
    width: 100px;
  }

  .gallery-row--photos .gallery-track img:hover {
    width: 113px;
  }

  .gallery-row--videos .gallery-track video {
    height: 160px;
  }

  .gallery-row--videos .gallery-track video[src*="andrew-testimonial"] { width: 219px; }
  .gallery-row--videos .gallery-track video[src*="christine-deployment"] { width: 90px; }
  .gallery-row--videos .gallery-track video[src*="margret-product-demo"] { width: 90px; }
  .gallery-row--videos .gallery-track video[src*="shannon-he-product-demo"] { width: 90px; }
  .gallery-row--videos .gallery-track video[src*="viola-jokudu-testimonial"] { width: 285px; }
  .gallery-row--videos .gallery-track video[src*="walker-cole-product-demo"] { width: 90px; }
  .gallery-row--videos .gallery-track video[src*="will-mulholland-testimonial"] { width: 90px; }

  .gallery-row--videos .gallery-track video[src*="andrew-testimonial"]:hover { width: 247px; }
  .gallery-row--videos .gallery-track video[src*="christine-deployment"]:hover { width: 101px; }
  .gallery-row--videos .gallery-track video[src*="margret-product-demo"]:hover { width: 101px; }
  .gallery-row--videos .gallery-track video[src*="shannon-he-product-demo"]:hover { width: 101px; }
  .gallery-row--videos .gallery-track video[src*="viola-jokudu-testimonial"]:hover { width: 321px; }
  .gallery-row--videos .gallery-track video[src*="walker-cole-product-demo"]:hover { width: 101px; }
  .gallery-row--videos .gallery-track video[src*="will-mulholland-testimonial"]:hover { width: 101px; }

  .feature-card {
    height: 140px;
  }

  .footer-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .contact .container {
    flex-direction: column;
  }

  .contact-form {
    width: 100%;
  }

  .discuss .container {
    flex-direction: column;
  }

  .discuss-copy {
    flex: 1 1 auto;
  }

  .discuss-photo {
    flex: 1 1 auto;
    max-width: 100%;
    order: -1;
  }

  .contact-side {
    flex: 1 1 auto;
    width: 100%;
    position: static;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ section
   ========================================================================== */

.faq {
  padding: 40px 0 80px;
}

.faq-container {
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.faq-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.faq .eyebrow {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.faq .title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.faq-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}

.faq-item {
  border-top: 1px solid var(--color-line);
  padding-top: 16px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease;
}

.faq-item summary:hover {
  color: var(--color-accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: '';
}

.faq-icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item:not([open]) .faq-content {
  display: block !important;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.faq-item[open] .faq-content {
  opacity: 1;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink-soft);
  margin-top: 12px;
  padding-bottom: 4px;
}
