/* Home Page */

.only-home .remix-modal-overlay,
.only-home .lightbox-overlay {
  display: none;
}

.home-page {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  position: relative;
  background-color: #ffffff;
  width: 100%;
}

/* ── Hero ────────────────────────────────────────────────── */
.home-upper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  z-index: 2;
  background-color: transparent;
  gap: 0;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  background-image: url(https://c.animaapp.com/2SoN795z/img/hero---wrapper-5.png);
  background-size: cover;
  background-position: 50% 50%;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}

@media (min-width: 1200px) {
  .hero-video {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
  display: none;
}

@media (min-width: 1200px) {
  .hero-overlay {
    display: block;
  }
}

/* Hero inner wrapper — nav and content sit above video/overlay */
.hero-wrapper .site-nav {
  position: relative;
  z-index: 1000;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-wrapper {
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.93) 84.58%, #000 100%),
              linear-gradient(180deg, rgba(0,0,0,0.93) 0.65%, rgba(0,0,0,0) 45.27%),
              url(https://c.animaapp.com/2SoN795z/img/hero---wrapper-5.png) center / cover no-repeat;
}

@media (min-width: 1200px) {
  .hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
  }
}

/* Nav override — transparent on hero */
.home-page .site-nav {
  background-color: transparent;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 200px 30px 0;
}

@media (min-width: 800px) {
  .hero-content {
    padding: 200px 50px 0px;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    padding: 370px 0 235px 0;
    max-width: 1070px;
    margin: 0 auto;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-headline {
  font-family: "Gotham-Black", sans-serif;
  font-size: clamp(36px, 7vw, 96px);
  letter-spacing: -1px;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.text-wrapper-41 {
  color: #ffffff;
}

.text-wrapper-42 {
  color: #FF7F51;
}

.hero-desc {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 680px;
  margin: 0;
}

.text-wrapper-44 {
  font-weight: 700;
  color: #FF7F51;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────── */
.button-5 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.button-5:hover {
  opacity: 0.85;
}

.text-wrapper-45 {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 15px;
  color: #ffffff;
  white-space: nowrap;
}

.button-6 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button-6:hover {
  border-color: #ffffff;
  background-color: rgba(255,255,255,0.1);
}

.text-wrapper-46 {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 15px;
  color: #ffffff;
  white-space: nowrap;
}

/* ── Explore Slider ─────────────────────────────────────── */
.explore-slider {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 30px;
  width: 100%;
  box-sizing: border-box;
  background-color: #000000;
}

@media (min-width: 1200px) {
  .explore-slider {
    background-color: transparent;
  }
}

@media (min-width: 800px) {
  .explore-slider {
    padding: 50px 50px;
  }
}

@media (min-width: 1200px) {
  .explore-slider {
    padding: 0;
    gap: 40px;
    margin-top: -150px;
    position: relative;
    z-index: 10;
  }
  .explore-slider-header {
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
  }
  .explore-slider .slider {
    padding-left: 80px;
    scroll-padding-left: 80px;
  }
}

.explore-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.title-w-line {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex: 1;
}

.text-wrapper-47 {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 28px;
  color: #ffffff;
  text-transform: lowercase;
  letter-spacing: -0.5px;
  margin: 0;
}

@media (min-width: 1200px) {
  .text-wrapper-47 {
    font-size: 44px;
  }
}

.nested-line {
  flex: 1;
  height: 1px;
  background-color: #FF7F51;
  border: none;
  display: block;
  margin-right: 20px;
  margin-bottom: 5px;
}

.stories-slider-header .nested-line {
  margin-right: 0;
}

.buttons-container-2 {
  display: flex;
  gap: 10px;
}

.arrow-10,
.arrow-11,
.arrow-12,
.arrow-13,
.arrow-14,
.arrow-15 {
  all: unset;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.2s ease;
}

.arrow-10:hover,
.arrow-11:hover,
.arrow-12:hover,
.arrow-13:hover {
  border-color: #FF7F51;
  color: #FF7F51;
}

.slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
}

.cat {
  position: relative;
  min-width: 280px;
  flex-shrink: 0;
  aspect-ratio: 1.32;
  overflow: hidden;
  border-radius: 3px;
  scroll-snap-align: start;
  cursor: pointer;
  background: linear-gradient(180deg, #000 0%, #270813 100%);
}

@media (min-width: 480px) {
  .cat {
    min-width: calc(50% - 10px);
  }
}

@media (min-width: 800px) {
  .cat {
    min-width: calc(33.333% - 12px);
  }
}

@media (min-width: 1200px) {
  .cat {
    min-width: 330px;
    width: 330px;
  }
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}

.cat:hover .bg-layer {
  transform: scale(1.1);
  opacity: 0.2;
}

.label-wrapper {
  background-image: url(https://picsum.photos/seed/cat1/800/600);
}

.wrapper-18 {
  background-image: url(https://picsum.photos/seed/cat2/800/600);
}

.wrapper-21 {
  background-image: url(https://picsum.photos/seed/cat3/800/600);
}

.wrapper-25 {
  background-image: url(https://picsum.photos/seed/cat4/800/600);
}

.wrapper-26-bg {
  background-image: url(https://picsum.photos/seed/cat5/800/600);
}

.cat-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.inner-2 {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  width: max-content;
  max-width: 100%;
  pointer-events: auto;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cat:hover .inner-2 {
  background-color: transparent;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.text-wrapper-49 {
  font-family: "Gotham Narrow-Bold", Helvetica;
  font-weight: 700;
  color: #ff9b54;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1), font-size 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cat:hover .text-wrapper-49 {
  color: #ffffff;
  font-size: 18px;
}

/* ── Page sections padding ──────────────────────────────── */
.home-components {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.features-section,
.authors-section,
.FAQ-section {
  width: 100%;
  box-sizing: border-box;
}

.features-section { padding: 60px 30px; }
.authors-section  { padding: 60px 30px; }
.FAQ-section      { padding: 60px 30px; }

@media (min-width: 800px) {
  .features-section { padding: 70px 50px; }
  .authors-section  { padding: 70px 50px; }
  .FAQ-section      { padding: 70px 50px; }
}

@media (min-width: 1200px) {
  .features-section {
    padding: 80px 0;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  .features-section .section-intro {
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
  }

  .authors-section {
    padding: 80px 80px;
  }

  .authors-section .section-intro {
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
  }

  .authors-section .authors-grid {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }

  .FAQ-section {
    padding: 80px 0;
  }

  .FAQ-section .section-intro,
  .FAQ-section .faq-list {
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
}

/* ── Section intros ─────────────────────────────────────── */
.section-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.section-title-block {
  flex-shrink: 0;
}

.eyebrow-label {
  font-family: "Gotham-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 13px;
  letter-spacing: 1.00px;
  line-height: 13px;
  white-space: nowrap;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px 0;
}

.eyebrow-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 120px;
  background: linear-gradient(to right, #FF7F51, transparent);
}

.section-intro-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

@media (min-width: 1200px) {
  .section-intro-right {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .section-intro-right p {
    flex: 1;
  }

  .section-intro-right .button-5 {
    flex-shrink: 0;
    width: auto;
  }
}

.section-title-7,
.section-title-8,
.section-title-9 {
  font-family: "Gotham-Bold", Helvetica;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #000000;
  margin: 0;
}

.text-wrapper-50,
.text-wrapper-51 {
  display: inline;
}

.text-wrapper-51 {
  color: #CE4257;
}

.text-11 {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* ── Features cards grid ────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

@media (min-width: 800px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .features-grid {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
}

.card,
.card-2 {
  padding: 25px;
  background-color: #f5f5f5;
  border-radius: 8px;
}

.wrapper-17 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.text-wrapper-52 {
  font-size: 24px;
  color: #CE4257;
}

.heading-3,
.heading-4 {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 16px;
  color: #000000;
  margin: 0 0 8px 0;
}

.text-12 {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555555;
  margin: 0;
}

/* ── Featured Stories ──────────────────────────────────── */
.featured-stories {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #000000;
}

.featured-hero-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 300px;
  overflow: visible;
}

@media (min-width: 1200px) {
  .featured-hero-wrapper {
    overflow: hidden;
  }
}

.featured-story {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

@media (min-width: 1200px) {
  .featured-hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 65%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: 2;
  }
}

.caption-box-wrapper {
  position: absolute;
  top: 100%;
  margin-top: -50px;
  left: 30px;
  right: 30px;
  bottom: auto;
  padding: 0;
  z-index: 3;
}

@media (min-width: 800px) {
  .caption-box-wrapper {
    left: 50px;
    right: 50px;
    max-width: 75vw;
  }
}

@media (min-width: 1200px) {
  .caption-box-wrapper {
    position: absolute;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    margin-top: 0;
    padding: 40px 80px;
  }
}

.caption-box {
  background: #ffffff;
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 4px;
}

.caption-box :not(button, button *) {
  color: #000000;
}

.caption-box button {
  align-self: flex-start;
}

@media (min-width: 800px) {
  .caption-box {
    padding: 28px 30px;
  }
}

@media (min-width: 1200px) {
  .caption-box {
    width: auto;
    max-width: 400px;
    padding: 32px 36px;
  }
}

.caption-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header-6 {
  font-family: "Gotham Narrow-Bold", Helvetica;
  font-weight: 700;
  color: #353535;
  font-size: 30px;
  letter-spacing: -0.25px;
  line-height: 30px;
  margin: 0;
}

.paragraph-2 {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.6;
  color: #555555;
  margin: 0;
  display: none;
}

@media (min-width: 640px) {
  .paragraph-2 {
    display: block;
  }
}

.paragraph-3 {
  margin: 0;
}

.caption-box .text-wrapper-54 {
  color: #888888;
}

.text-wrapper-53 {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 14px;
  color: #FF7F51;
  display: block;
}

.text-wrapper-54 {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 8px;
}

/* Stories slider */
.stories-slider-wrapper {
  padding: 270px 0 40px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 800px) {
  .stories-slider-wrapper {
    padding: 250px 0 50px;
  }
}

@media (min-width: 1200px) {
  .stories-slider-wrapper {
    padding: 60px calc((100% - 1070px) / 2);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .stories-slider-top {
    width: 100%;
  }

  .slider-2 {
    margin-left: calc((1070px - 100vw) / 2);
    width: 100vw;
  }

  .stories-slider-controls {
    padding: 0;
    margin-top: 0;
  }
}

.stories-slider-header {
  margin-bottom: 25px;
  padding: 0 30px;
}

@media (min-width: 800px) and (max-width: 1199px) {
  .stories-slider-header {
    padding: 0 50px;
  }
}

@media (min-width: 1200px) {
  .stories-slider-header {
    padding: 0;
    margin-bottom: 0;
  }
}

.text-wrapper-55 {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 28px;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0;
}

@media (min-width: 1200px) {
  .text-wrapper-55 {
    font-size: 44px;
  }
}

.slider-2 {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 30px;
  scroll-padding-left: 30px;
  scrollbar-width: none;
}

.slider-2::after {
  content: '';
  flex-shrink: 0;
  width: 30px;
}

@media (min-width: 800px) {
  .slider-2 {
    padding: 0 50px;
    scroll-padding-left: 50px;
  }

  .slider-2::after {
    width: 50px;
  }
}

@media (min-width: 1200px) {
  .slider-2 {
    padding-left: 80px;
    scroll-padding-left: 80px;
    padding-bottom: 20px;
  }

  .slider-2::after {
    width: 80px;
  }
}

.slider-2::-webkit-scrollbar {
  display: none;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 200px;
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: pointer;
}

@media (min-width: 480px) {
  .story {
    min-width: calc(50% - 15px);
  }
}

@media (min-width: 800px) {
  .story {
    min-width: calc(33.333% - 20px);
  }
}

@media (min-width: 1200px) {
  .story {
    min-width: calc(28% - 20px);
  }
}

.story-BG {
  position: relative;
  width: 100%;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 4px;
}

.story-img,
.story-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-img {
  z-index: 2;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.story-video {
  z-index: 1;
}

.story-item:hover .story-img {
  opacity: 0;
}

.story-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.header-7 {
  font-family: "Gotham Narrow-Bold", Helvetica;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.25px;
  margin: 0;
  transition: color 0.3s ease;
}

.story-item:hover .header-7 {
  color: #FF7F51;
}

.story-item .text-wrapper-53,
.story-item .text-wrapper-54,
.story-item .text-wrapper-57 {
  color: #ffffff;
}

.paragraph-4 {
  margin: 0;
  line-height: 1.4;
}

.paragraph-5 {
  margin: 0;
  line-height: 1.45;
}

.text-wrapper-56 {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 14px;
  color: #ffffff;
}

.text-wrapper-57 {
  color: #3d3d3d;
  font-size: 14px;
}

.arrow-link {
  text-decoration: none;
  flex-shrink: 0;
}

.text-wrapper-58,
.text-wrapper-63 {
  font-size: 28px;
  font-weight: 400;
  color: #ff9b54;
  display: block;
  transition: transform 0.2s ease;
}

.arrow-link:hover .text-wrapper-58,
.arrow-link:hover .text-wrapper-63 {
  transform: translateX(4px);
}

@media (min-width: 1200px) {
  .story-item .arrow-link {
    display: none;
  }
}

.stories-slider-controls {
  display: flex;
  gap: 10px;
  padding: 0 30px;
  flex-shrink: 0;
}

@media (min-width: 800px) and (max-width: 1199px) {
  .stories-slider-controls {
    padding: 0 50px;
  }
}

@media (min-width: 1200px) {
  .stories-slider-controls {
    padding: 0;
  }
}

/* ── Authors ─────────────────────────────────────────────── */
.authors-section {
  background-color: #f9f9f9;
}

.authors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  width: 100%;
}

@media (min-width: 500px) {
  .authors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .authors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.author-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.6s ease;
}

.author-card:hover {
  transform: translateY(-3px);
}

.author-card img {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  display: block;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-top: none;
  flex: 1;
}

@media (min-width: 1200px) {
  .author-card {
    position: relative;
    transform: none;
    transition: none;
  }

  .author-card img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
  }

  .author-card:hover img {
    transform: scale(1.02);
  }

  .author-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(194deg, rgba(228, 21, 52, 0.70) 11.45%, #000 64.76%);
    background-blend-mode: multiply;
    mix-blend-mode: normal;
    border: none;
    flex: none;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .author-card:hover .author-info {
    opacity: 1;
  }

  .author-card .text-wrapper-60 { color: #ffffff; }
  .author-card .text-wrapper-61 { color: rgba(255,255,255,0.8); }
  .author-card .location-new-york-NY,
  .author-card .reels-sotrys     { color: rgba(255,255,255,0.65); }
  .author-card .text-wrapper-44  { color: #FF7F51; }
  .author-card .text-wrapper-62  { color: rgba(255,255,255,0.8); }
  .author-card .text-wrapper-63  { color: #FF7F51; }
}

.author-card .arrow-link { margin-left: 0; }

.author-bio {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.text-wrapper-60 {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 16px;
  color: #000000;
  margin: 0;
}

.text-wrapper-61 {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 13px;
  color: #555555;
  line-height: 1.4;
  margin: 0;
}

.author-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-new-york-NY,
.reels-sotrys {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 12px;
  color: #777777;
  margin: 0;
}

.text-wrapper-62 {
  color: #000000;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.FAQ-section {
  background-color: #000000;
}

.FAQ-section .section-intro {
  margin-bottom: 30px;
}

.FAQ-section .section-title-9 {
  color: #ffffff;
}

.FAQ-section .text-13 {
  color: rgba(255,255,255,0.7);
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.FAQ-section .text-wrapper-64 {
  color: rgba(255,255,255,0.7);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .faq-list {
    flex-direction: row;
    gap: 30px;
  }
}

.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.FAQ-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.FAQ-item summary {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

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

.FAQ-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: #FF7F51;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numeral {
  font-family: "Gotham-Black", sans-serif;
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.5px;
}

.div-44 {
  flex: 1;
}

.FAQ-title {
  font-family: "Gotham Narrow-Bold", Helvetica;
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 800px) {
  .FAQ-title {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .FAQ-title {
    font-size: 20px;
  }
}

.icon-9 {
  flex-shrink: 0;
}

.text-wrapper-65 {
  font-size: 16px;
  color: #CE4257;
  transition: color 0.2s ease;
  display: block;
}

.FAQ-item[open] .text-wrapper-65 {
  color: #FF7F51;
}

.faq-content {
  padding: 0 0 20px 45px;
  overflow: hidden;
  transition: height 0.4s ease;
}

.faq-content p {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ── Nav dropdown (desktop) ─────────────────────────────── */
.nav-item-dropdown-wrapper {
  position: relative;
}

.desktop-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -15px;
  background-color: #1a1a1a;
  border-radius: 6px;
  padding: 10px 0;
  min-width: 160px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-item-dropdown-wrapper:hover .desktop-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-dropdown-menu a:hover {
  color: #FF7F51;
  background-color: rgba(255,255,255,0.05);
}

/* ── Alert badge + notification tooltip ─────────────────── */
.nav-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.alert-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #CE4257;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background-color: #1a1a1a;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  z-index: 100;
}

.notification-tooltip-highlight {
  color: #FF7F51;
  font-weight: 700;
}

.nav-icon:hover .notification-tooltip {
  display: block;
}

/* Account dropdown */
.account-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background-color: #1a1a1a;
  border-radius: 6px;
  padding: 10px 0;
  min-width: 140px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 100;
}

.account-container:hover .account-dropdown {
  display: block;
}

.account-dropdown a {
  display: block;
  padding: 8px 20px;
  font-family: "DM Sans", Helvetica, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.account-dropdown a:hover {
  color: #FF7F51;
}

/* ── Home-page footer overrides ─────────────────────────── */
.home-page .site-footer {
  background-color: #000000;
}

.home-page .footer-cta-section {
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
}
