/* ============================================================
   general-tablet.css  —  mobile-first responsive
   Used by: general-tablet.html (create/story-detail pages)
   Breakpoints: 800px (tablet), 1200px (desktop)
   ============================================================ */

/* ── Page wrapper ─────────────────────────────────────────── */
.create-page,
.story-page {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  background-color: #ffffff;
}

/* ── Hero banner ──────────────────────────────────────────── */
.page-hero-wrapper {
  position: relative;
  width: 100%;
  background-color: #000;
}

.page-hero-image {
  position: relative;
  width: 100%;
  display: block;
}

.page-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1720px;
  margin: 0 auto;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.75) 100%);
  display: none;
}

@media (min-width: 800px) and (max-width: 1199px) {
  .page-hero-overlay { display: block; }
}

@media (min-width: 1200px) {
  .page-hero-image {
    margin: 0 80px;
    width: calc(100% - 160px);
  }
}

.page-hero-section {
}

.page-hero-dark {
  background: #000;
}

.create-page .site-nav {
  background-color: #000;
  position: relative;
}

/* ── Page title block ─────────────────────────────────────── */
.page-title-block {
  padding: 40px 20px 24px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 800px) {
  .page-title-block { padding: 56px 40px 32px; }
}

@media (min-width: 1200px) {
  .page-title-block { padding: 72px 0 40px; }
}

.page-hero-title {
  background-color: #000;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}

@media (min-width: 800px) {
  .page-hero-title {
    margin-top: -140px;
    background-color: #000;
    padding: 60px 50px;
    width: fit-content;
  }
}

@media (min-width: 1200px) {
  .page-hero-title {
    margin-top: 0;
    background-color: #000;
    padding: 50px 8%;
    text-align: center;
    width: 100%;
  }
}

.page-title-large {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  text-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
  font-family: "Gotham-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 36px;
  letter-spacing: -0.50px;
  line-height: 43.2px;
  margin-bottom: 16px;
}

@media (min-width: 800px) {
  .page-title-large { font-size: 58px; letter-spacing: -0.50px; line-height: 69.6px; }
}

.page-title-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.page-title-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background-color: #7c3aed;
  border-radius: 4px;
  padding: 4px 10px;
}

.page-title-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
}

@media (min-width: 1200px) {
  .page-title-desc { font-size: 24px; max-width: 1100px; margin: 0 auto; }
  .page-title-large { font-size: 64px; letter-spacing: -0.50px; line-height: 76.8px; }
}

/* ── Content container ────────────────────────────────────── */
.page-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (min-width: 800px) {
  .page-content { padding: 0 40px; }
}

@media (min-width: 1200px) {
  .page-content { padding: 0; }
}

/* ── WYSIWYG section ──────────────────────────────────────── */
.wysiwyg-section {
  padding: 32px 0 40px;
}

@media (min-width: 800px) {
  .wysiwyg-section { padding: 80px 0; }
}

.wysiwyg-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 0 30px;
  max-width: 1070px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (min-width: 800px) {
  .wysiwyg-inner { padding: 0 50px; }
}

@media (min-width: 1200px) {
  .wysiwyg-inner { padding-right: 100px; gap: 40px; }
}

.wysiwyg-inner h2 + p,
.wysiwyg-inner h3 + p,
.wysiwyg-inner h4 + p,
.wysiwyg-inner h5 + p,
.wysiwyg-inner h6 + p { margin-top: -15px; }

@media (min-width: 1200px) {
  .wysiwyg-inner h2 + p,
  .wysiwyg-inner h3 + p,
  .wysiwyg-inner h4 + p,
  .wysiwyg-inner h5 + p,
  .wysiwyg-inner h6 + p { margin-top: -20px; }
}

.wysiwyg-inner .wysiwyg-intro {
  font-family: "DM Sans", Helvetica;
  font-weight: 300;
  color: var(--colors-global-black);
  font-size: 18px;
  line-height: 28.8px;
  align-self: stretch;
  margin: 0;
}

.wysiwyg-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
  width: 100%;
}

.wysiwyg-heading {
  font-family: "Gotham-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 30px;
  letter-spacing: -0.5px;
  line-height: 36px;
  margin: 0;
  align-self: stretch;
}

.wysiwyg-inner h4 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "DM Sans", Helvetica;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 26px;
}

.wysiwyg-inner h3 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Gotham-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  letter-spacing: -0.5px;
  line-height: 28.8px;
}

.wysiwyg-subheading {
  font-family: "DM Sans", Helvetica;
  font-weight: 700;
  color: var(--colors-global-black);
  font-size: 18px;
  line-height: 21.6px;
  margin: 0;
  align-self: stretch;
}

.wysiwyg-inner h5 {
  position: relative;
  align-self: stretch;
  font-family: "DM Sans", Helvetica;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 21.6px;
}

.wysiwyg-callout-heading,
.wysiwyg-inner h6 {
  font-family: "DM Sans", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
  letter-spacing: -0.5px;
  line-height: 17.6px;
  margin: 0;
  align-self: stretch;
}

.wysiwyg-body,
.wysiwyg-inner p {
  font-family: "DM Sans", Helvetica;
  font-size: 16px;
  color: #000000;
  line-height: 28px;
  margin: 0;
  align-self: stretch;
}

.wysiwyg-quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #f8f8f8;
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 8px;
  margin: 0;
}

.wysiwyg-quote img {
  width: 44px;
  height: 36px;
  flex-shrink: 0;
}

.wysiwyg-quote p {
  font-family: "DM Sans", Helvetica;
  font-weight: 300;
  font-style: italic;
  color: var(--colors-global-black);
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

@media (min-width: 800px) {
  .wysiwyg-inner .wysiwyg-intro { font-size: 20px; letter-spacing: 0; line-height: 36px; }
  .wysiwyg-heading {
    margin-top: -1px;
    font-family: "Gotham-Bold", Helvetica;
    font-size: 36px;
    letter-spacing: -0.5px;
    line-height: 43.2px;
    position: relative;
    align-self: stretch;
    font-weight: 700;
    color: #000000;
  }
  .wysiwyg-inner h3 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Gotham-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 30px;
    letter-spacing: -0.5px;
    line-height: 36px;
  }
  .wysiwyg-inner h4 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "DM Sans", Helvetica;
    font-weight: 700;
    color: var(--colors-global-black);
    font-size: 22px;
    letter-spacing: 0;
    line-height: 28.6px;
  }
  .wysiwyg-inner h5 {
    font-family: "DM Sans", Helvetica;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 24px;
    position: relative;
    align-self: stretch;
    font-weight: 700;
  }
}

@media (min-width: 1200px) {
  .wysiwyg-inner .wysiwyg-intro { font-size: 24px; letter-spacing: 0; line-height: 43.2px; }
  .wysiwyg-body, .wysiwyg-inner p { font-size: 17px; line-height: 34px; }
  .wysiwyg-quote { padding: 40px; }
  .wysiwyg-quote p { font-size: 24px; letter-spacing: 0; line-height: 38.4px; }
  .wysiwyg-heading {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "Gotham-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 44px;
    letter-spacing: -0.5px;
    line-height: 48.4px;
  }
  .wysiwyg-inner h3 {
    margin-top: -1px;
    font-family: "Gotham-Bold", Helvetica;
    font-size: 36px;
    letter-spacing: -0.5px;
    line-height: 43.2px;
    position: relative;
    align-self: stretch;
    font-weight: 700;
    color: #000000;
  }
  .wysiwyg-inner h4 {
    position: relative;
    align-self: stretch;
    margin-top: -1px;
    font-family: "DM Sans", Helvetica;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0;
    line-height: 36.4px;
  }
  .wysiwyg-inner h6 {
    position: relative;
    align-self: stretch;
    font-family: "DM Sans", Helvetica;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
    line-height: 22px;
  }
}

.wysiwyg-image-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-self: stretch;
  width: 100%;
}

.wysiwyg-image-left,
.wysiwyg-image-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 800px) {
  .wysiwyg-image-left,
  .wysiwyg-image-right {
    display: block;
    overflow: hidden;
    gap: 0;
  }

  .wysiwyg-image-left .wysiwyg-image-block {
    float: left;
    width: 45%;
    margin-right: 30px;
    margin-bottom: 10px;
  }

  .wysiwyg-image-right .wysiwyg-image-block {
    float: right;
    width: 45%;
    margin-left: 30px;
    margin-bottom: 10px;
  }
}

.wysiwyg-image-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.wysiwyg-image-block img {
  width: 100%;
  aspect-ratio: 1.71;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.wysiwyg-image-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  width: 100%;
}

.wysiwyg-image-center img {
  width: 100%;
  aspect-ratio: 1.96;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.wysiwyg-inner .wysiwyg-caption {
  font-family: "DM Sans", Helvetica;
  font-size: 14px;
  color: #000000;
  line-height: 22.4px;
  margin: 0;
  align-self: stretch;
}

.wysiwyg-inner .wysiwyg-caption::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: #ff9b54;
  margin-top: 15px;
}

.wysiwyg-text-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.wysiwyg-ol,
.wysiwyg-inner ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: wysiwyg-counter;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
  width: 100%;
}

.wysiwyg-ol > li,
.wysiwyg-inner ol > li {
  display: flex;
  align-items: flex-start;
  counter-increment: wysiwyg-counter;
}

.wysiwyg-ol > li::before,
.wysiwyg-inner ol > li::before {
  content: counter(wysiwyg-counter) '.';
  font-family: "DM Sans", Helvetica;
  font-weight: 800;
  color: #ce4257;
  font-size: 16px;
  line-height: 32px;
  min-width: 32px;
  flex-shrink: 0;
}

.wysiwyg-ol > li p,
.wysiwyg-inner ol > li p {
  font-family: "DM Sans", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  flex: 1;
  padding-top: 4px;
}

.wysiwyg-ul,
.wysiwyg-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
  width: 100%;
}

.wysiwyg-ul > li,
.wysiwyg-inner ul > li {
  display: flex;
  align-items: flex-start;
}

.wysiwyg-ul > li::before,
.wysiwyg-inner ul > li::before {
  content: '•';
  font-family: "Gotham-Bold", Helvetica;
  font-weight: 700;
  color: #ce4257;
  font-size: 16px;
  line-height: 32px;
  min-width: 32px;
  flex-shrink: 0;
}

.wysiwyg-ul > li p,
.wysiwyg-inner ul > li p {
  font-family: "DM Sans", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  flex: 1;
  padding-top: 4px;
}

.wysiwyg-rule,
.wysiwyg-inner hr {
  align-self: stretch;
  width: 100%;
  height: 1px;
  background-color: #ff9b54;
  border: none;
  margin: 15px 0;
}

.wysiwyg-with-cta {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-self: stretch;
  width: 100%;
}

/* ── Media slider ─────────────────────────────────────────── */
.media-slider-section {
  padding: 40px 0;
}

@media (min-width: 800px) {
  .media-slider-section { padding: 56px 0; }
}

.create-page .media-slide {
  width: 70%;
  min-width: 70%;
  border-radius: 8px;
}

.create-page .media-slider-container {
  padding: 0 30px;
}

@media (min-width: 800px) {
  .create-page .media-slider-container { padding: 0 50px; }
  .create-page .media-slide { width: 38%; min-width: 38%; }
}

@media (min-width: 1200px) {
  .create-page .component-media { padding: 0 0 80px; }
  .create-page .media-slider-container { padding: 0 8%; }
  .create-page .media-slide { width: 28%; min-width: 28%; }
}

.media-slider-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 600;
  color: #0d0d0d;
  margin: 0 0 24px;
}

/* ── Card slider section ──────────────────────────────────── */
.card-slider-section {
  background-color: #1d1d1d;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}

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

@media (min-width: 1200px) {
  .card-slider-section { padding: 150px 0; }
}

.card-slider-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  max-width: 1070px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  margin-bottom: 40px;
}

.card-slider-intro .eyebrow-label { color: #ffffff; }
.card-slider-intro .section-title-8 { color: #ffffff; }
.card-slider-intro .text-11 { color: rgba(255, 255, 255, 0.7); }

.card-slider-viewport {
  max-width: 1070px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.card-slider-track {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

@media (min-width: 800px) {
  .card-slider-track { padding: 0; }
}

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

.card-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}

@media (min-width: 800px) {
  .card-item { flex: 0 0 calc(50% - 15px); }
}

@media (min-width: 1200px) {
  .card-item { flex: 0 0 calc(33.333% - 20px); }
}

.card-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card-item-link:hover ~ img,
.card-item:has(.card-item-link:hover) img {
  transform: scale(1.025);
}

.card-item-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-self: stretch;
}

.card-item-title {
  font-family: "Gotham-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 18px;
  line-height: 23.4px;
  letter-spacing: -0.5px;
  margin: 0;
  align-self: stretch;
}

.card-item-summary {
  font-family: "DM Sans", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  line-height: 23.8px;
  letter-spacing: 0;
  margin: 0;
  align-self: stretch;
}

.card-item-link {
  font-family: "DM Sans", Helvetica;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: #ff7f51;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.card-item-link:hover {
  border-bottom-color: #ff7f51;
}

.card-slider-controls {
  display: flex;
  gap: 10px;
  padding: 0;
}

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

@media (min-width: 1200px) {
  .card-slider-controls {
    width: 100%;
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}

.card-prev,
.card-next {
  all: unset;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ce4257;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.card-prev:hover,
.card-next:hover { opacity: 0.8; }

.card-prev:disabled,
.card-next:disabled { opacity: 0.3; cursor: default; }

/* ── Authors section ─────────────────────────────────────── */
.eyebrow-label {
  font-family: "Gotham-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 13px;
  letter-spacing: 1px;
  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-title-8 {
  font-family: "Gotham-Bold", Helvetica;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #000000;
  margin: 0;
}

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

.section-intro-right p {
  font-size: 16px;
  line-height: 27.2px;
}

@media (min-width: 1200px) {
  .section-intro-right {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  .section-intro-right p { flex: 1; font-size: 18px; line-height: 36px; }
  .section-intro-right .button-5 { flex-shrink: 0; width: auto; }
}

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

.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;
}

.authors-section {
  background-color: #ffffff;
  padding: 60px 30px;
  width: 100%;
  box-sizing: border-box;
}

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

@media (min-width: 1200px) {
  .authors-section { padding: 150px 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;
  }
}

.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;
  overflow: hidden;
  border-radius: 6px;
  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%);
    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;
}

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

.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;
}

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

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

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

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

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

/* ── Authors section (create page variant) ────────────────── */
.authors-section-create {
  padding: 56px 20px;
  background-color: #fff;
}

@media (min-width: 800px) {
  .authors-section-create { padding: 72px 40px; }
}

@media (min-width: 1200px) {
  .authors-section-create { padding: 96px 80px; }
}

.authors-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7c3aed;
  margin: 0 0 10px;
}

.authors-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
  color: #0d0d0d;
  margin: 0 0 40px;
}

.authors-grid-create {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 800px) {
  .authors-grid-create { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

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

.author-card-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.author-card-2 img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

@media (min-width: 800px) {
  .author-card-2 img { width: 100px; height: 100px; }
}

.author-card-2 .author-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 600;
  color: #0d0d0d;
  margin: 0;
}

.author-card-2 .author-role {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* ── Callout section ──────────────────────────────────────── */
.callout-section {
  width: 100%;
  background-color: var(--greywhite);
}

@media (min-width: 1200px) {
  .callout-section { max-width: 1170px; margin-left: auto; margin-right: auto; }
  .callout-inner { padding: 80px 50px; border-radius: 8px; }
}

.callout-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(206, 66, 87, 1) 0%, rgba(160, 44, 96, 1) 100%);
  border-radius: 0 2px 2px 0;
  overflow: hidden;
}

.callout-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
}

.callout-heading {
  align-self: stretch;
  font-family: "Gotham-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: -0.5px;
  line-height: 28.8px;
  margin: 0;
}

.callout-body {
  align-self: stretch;
  font-family: "DM Sans", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 27px;
  margin: 0;
}

.callout-btn {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 5px;
  flex: 0 0 auto;
  cursor: pointer;
  font-family: "Gotham-Bold", Helvetica;
  font-weight: 700;
  color: #ce4257;
  font-size: 14px;
  transition: all 0.2s ease;
}

.callout-btn:hover {
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 0 0 2px #ce4257;
  color: #ffffff;
}

/* ── Icon grid section ────────────────────────────────────── */
.icon-grid-section {
  padding: 50px 30px;
}

@media (min-width: 800px) {
  .icon-grid-section { padding: 80px 50px; }
}

@media (min-width: 1200px) {
  .icon-grid-section {
    padding: 150px 0 150px 50px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
}

.icon-grid-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

@media (min-width: 1200px) {
  .icon-grid { grid-template-columns: repeat(4, 1fr); gap: 50px; }
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.icon-card-icon {
  display: flex;
  align-items: center;
  font-size: 36px;
  background: linear-gradient(172deg, #ce4257 0%, #ff7f51 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.icon-card-number {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(172deg, #ce4257 0%, #ff7f51 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: 0;
}

.icon-card-title {
  font-family: "Gotham-Medium", Helvetica;
  font-weight: 500;
  font-size: 18px;
  color: #111111;
  line-height: 27px;
  letter-spacing: 0;
  margin: 0;
}

.icon-card-body {
  font-family: "DM Sans", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #111111;
  line-height: 21px;
  letter-spacing: 0;
  margin: 0;
}

.icon-card-link {
  font-family: "DM Sans", Helvetica;
  color: #55005f;
  font-size: 16px;
  line-height: 16px;
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
}

.icon-card-link:hover {
  text-decoration: underline;
}

@media (min-width: 1200px) {
  .icon-card-title { font-size: 22px; }
  .icon-card-icon { font-size: 70px; height: 90px; }
  .icon-card-number { font-size: 100px; line-height: 80px; height: 90px; }
}

/* ── Features section ────────────────────────────────────── */
.features-section {
  width: 100%;
  box-sizing: border-box;
  padding: 60px 30px;
}

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

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

.section-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

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

.section-title-7 {
  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-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: 6px;
}

.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;
}

/* ── Checkerboard section ─────────────────────────────────── */
.checkerboard-section {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 50px 0;
  gap: 50px;
}

@media (min-width: 800px) {
  .checkerboard-section { padding: 80px 0; }
}

@media (min-width: 1200px) {
  .checkerboard-section { padding: 150px 0; }
}

.checker-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.checker-right .checker-media { order: -1; }

@media (min-width: 800px) {
  .checker-item { flex-direction: row; align-items: center; }
  .checker-right .checker-media { order: unset; }
}

.checker-text-side {
  display: flex;
  flex-direction: column;
}

@media (min-width: 800px) {
  .checker-text-side { gap: 30px; }
}

.checker-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 30px;
}

.checker-media img {
  width: 100%;
  display: block;
}

.checker-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 30px;
}

.checker-txt-btn {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.checker-txt-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checker-heading {
  font-family: "Gotham-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 1200px) {
  .checker-heading { font-size: 44px; }
}

.checker-body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #555555;
  line-height: 1.65;
  margin: 0;
}

.checker-caption-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  padding: 10px 30px 15px;
  border-bottom: 2px solid #e4e4e4;
  background: none;
}

@media (min-width: 800px) {
  .checker-caption-wrap {
    align-self: flex-start;
    padding: 5px 10px;
    border-bottom: none;
    background: #f6f6f6;
  }
}

.checker-line-accent {
  display: inline-block;
  width: 99px;
  height: 1px;
  background-color: #ff9b54;
  flex-shrink: 0;
}

.checker-caption {
  position: relative;
  margin-top: -1px;
  font-family: "DM Sans", Helvetica;
  font-weight: 400;
  color: #111111;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 26px;
  white-space: normal;
  margin: 0;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: none;
  background: #ce4257;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  align-self: flex-start;
  transition: background 0.2s;
}

.btn-outline-dark:hover {
  background: #b8394d;
}

.checker-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checker-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0d0d0d;
  text-decoration: underline;
}

.checker-link:hover { color: #ce4257; }

@media (min-width: 800px) {
  .checker-media { padding: 0; flex: 0 0 50%; }
  .checker-text-side { padding: 30px 50px; flex: 0 0 50%; }
  .checker-caption-wrap { order: 2; }
  .checker-content { order: 1; }
}

@media (min-width: 1200px) {
  .checker-item {
    flex-direction: row;
    align-items: center;
  }
  .checker-left { padding-right: 50px; }
  .checker-right { padding-left: 50px; }
  .checker-left .checker-media {
    padding: 0 80px 0 0;
    flex: 1;
  }
  .checker-right .checker-media {
    padding: 0 0 0 80px;
    flex: 1;
  }
  .checker-text-side {
    flex: 1;
    padding: 0;
  }
  .checker-content {
    padding: 0;
  }
  .checker-media img { border-radius: 8px; }
}

/* ── Pricing section ──────────────────────────────────────── */
/* ── Pricing Section ─────────────────────────────────────── */
.pricing-section {
  padding: 50px 30px;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 800px) and (max-width: 1199px) {
  .pricing-section { padding: 80px 50px; }
}

@media (min-width: 1200px) {
  .pricing-section { padding: 150px 8%; }
}

/* Section intro layout — mirrors FAQ section-intro pattern */
.pricing-section .section-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
  width: 100%;
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
}

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

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

  .pricing-section .section-intro-right .pricing-subhead {
    flex: 1;
  }

  .pricing-section .section-intro-right .tabs {
    flex-shrink: 0;
  }
}

.pricing-heading {
  font-family: "Gotham-Bold", Helvetica;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.pricing-heading .text-accent {
  color: #CE4257;
}

.pricing-subhead {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(14px, 1.8vw, 17px);
  color: #999999;
  margin: 0;
  line-height: 1.6;
}

/* ── Plan Toggle Tabs ────────────────────────────────────── */
.pricing-section .tabs {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  position: relative;
  background-color: #0f0f0f;
  border-radius: 8px;
  border: 1px solid #262626;
  overflow: hidden;
}

.pricing-section .tabs::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: linear-gradient(135deg, #CE4257 0%, #A02C60 100%);
  border-radius: 6px;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
  box-shadow: 0 2px 8px rgba(206, 66, 87, 0.3);
}

.pricing-section .tabs.yearly::before {
  transform: translateX(calc(100% + 4px));
}

.pricing-section .button-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  position: relative;
  flex: 1;
  background-color: transparent;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.pricing-section .button-18 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 6px;
  position: relative;
  flex: 1;
  cursor: pointer;
  z-index: 1;
}

.pricing-section .text-30 {
  font-family: "Gotham-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  line-height: 21px;
  white-space: nowrap;
  letter-spacing: 0;
}

.pricing-section .text-31 {
  font-family: "Gotham-Medium", Helvetica;
  font-weight: 500;
  color: #999999;
  font-size: 14px;
  line-height: 21px;
  white-space: nowrap;
  letter-spacing: 0;
}

.pricing-section .savings-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  color: #ffffff;
  font-family: "DM Sans", Helvetica;
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Pricing Cards ───────────────────────────────────────── */
.pricing-section .pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (min-width: 800px) {
  .pricing-section .pricing-cards {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    max-width: 100%;
  }
}

.pricing-section .card-10 {
  flex: 1;
  gap: 30px;
  padding: 30px;
  background-color: var(--black-10);
  border-radius: 8px;
  border: 1px solid var(--black-15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  text-align: left;
}

.pricing-section .card-10.recommended {
  border: 2px solid #CE4257;
  box-shadow: 0 8px 30px rgba(206, 66, 87, 0.3);
  transform: scale(1.02);
}

.pricing-section .recommended-badge {
  position: absolute;
  top: -12px;
  right: 30px;
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  color: #ffffff;
  font-family: "Gotham-Bold", Helvetica;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(206, 66, 87, 0.4);
  z-index: 1;
}

/* ── Card inner content ──────────────────────────────────── */
.pricing-section .plan-name {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2c2c2;
  margin: 0;
}

.pricing-section .plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-section .plan-price {
  font-family: "Gotham-Bold", Helvetica;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.pricing-section .plan-period {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #c2c2c2;
  font-weight: 500;
}

.pricing-section .plan-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.pricing-section .plan-divider {
  border: none;
  border-top: 1px solid var(--black-15);
  margin: 0;
  width: 100%;
}

.pricing-section .plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.pricing-section .plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

.pricing-section .plan-feature::before {
  content: "✓";
  flex-shrink: 0;
  color: #CE4257;
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}

/* ── Plan Buttons ────────────────────────────────────────── */
.pricing-section .btn-plan {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
  margin-top: auto;
}

.pricing-section .btn-plan-outline {
  background: #ffffff;
  color: #0d0d0d;
  border: none;
}

.pricing-section .btn-plan-outline:hover {
  background: #f0f0f0;
}

.pricing-section .btn-plan-solid {
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  color: #ffffff;
  border: none;
}

.pricing-section .btn-plan-solid:hover {
  opacity: 0.9;
}

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