/* ============================================================
   VIEA SHOWCASE — EXTRACTED PATTERNS
   Compositions complexes non reproductibles via GenerateBlocks natif.
   À charger dans le child theme GeneratePress.
   ============================================================ */


/* ============================
   HERO HOMEPAGE — Grille asymétrique 3 articles
   Classes : .hero-featured, .hero-grid, .hero-primary, .hero-secondary
   Pages : viea-homepage.html
   ============================ */

.hero-featured {
  padding: 1rem 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.75rem;
}

.hero-primary {
  grid-row: span 2;
}

.hero-primary__link,
.hero-secondary__link {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.hero-primary__media {
  height: calc(100svh - 120px);
  overflow: hidden;
}

.hero-secondary__media {
  height: calc((100svh - 120px - 0.75rem) / 2);
  overflow: hidden;
}

.hero-primary__media img,
.hero-secondary__media img {
  transition: transform 0.6s;
}

.hero-primary__link:hover img,
.hero-secondary__link:hover img {
  transform: scale(1.05);
}

.hero-primary__link::after,
.hero-secondary__link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.7) 0%, rgba(26, 26, 24, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

.hero-primary__content,
.hero-secondary__content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  color: var(--white);
}

.hero-primary__content .kicker,
.hero-secondary__content .kicker {
  margin-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.hero-primary__content .h1 {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  color: var(--white);
  margin: 8px 0;
}

.hero-primary__content .meta,
.hero-secondary__content .meta {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

.hero-secondary__content .h3 {
  color: var(--white);
  margin: 6px 0;
}


/* ============================
   HERO HOMEPAGE MOBILE — Carrousel scroll-snap + dots
   Classes : .hero-grid (mobile), .hero-dots-mobile, .hero-dot
   Pages : viea-homepage.html
   ============================ */

.hero-dots-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-featured {
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }

  .hero-grid::-webkit-scrollbar {
    display: none;
  }

  .hero-grid>article {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .hero-primary {
    grid-row: auto;
  }

  .hero-primary__media,
  .hero-secondary__media {
    height: 45svh;
  }

  .hero-dots-mobile {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--accent-light);
    cursor: pointer;
    transition: background 0.2s;
    /* Touch target: 44px minimum via pseudo-element */
    position: relative;
  }

  /* Invisible 44px hit area around the 8px dot — WCAG touch target */
  .hero-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
  }

  .hero-dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .hero-primary__media {
    min-height: 260px;
  }

  .hero-primary__content .h1 {
    font-size: var(--text-2xl);
  }
}


/* ============================
   ARTICLES GRID — 3 colonnes desktop (homepage sections)
   Classes : .articles-grid, .card, .card__link, .card__media, .card--desktop-only
   Pages : viea-homepage.html
   ============================ */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 24, 0.1);
  transform: translateY(-4px);
}

.card__link {
  display: block;
  height: 100%;
}

.card__media {
  height: 220px;
  overflow: hidden;
}

.card__media img {
  transition: transform 0.6s;
}

.card:hover .card__media img {
  transform: scale(1.06);
}

.card .kicker {
  display: block;
  padding: 20px 20px 0;
}


.card .h3 {
  padding: 8px 20px 0;
  color: var(--dark);
}

.card .meta {
  display: block;
  padding: 8px 20px 24px;
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .card--desktop-only {
    display: none;
  }
}


/* ============================
   TESTÉ & APPROUVÉ — Cartes overlay avec gradient
   Classes : .approved-grid, .approved-card, .approved-card__link, .approved-card__media, .approved-card__content
   Pages : viea-homepage.html
   ============================ */

.approved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.approved-card {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.approved-card__link {
  display: block;
  position: relative;
}

.approved-card__media {
  height: 360px;
  overflow: hidden;
}

.approved-card__media img {
  transition: transform 0.6s;
}

.approved-card:hover .approved-card__media img {
  transform: scale(1.06);
}

.approved-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.7) 0%, rgba(26, 26, 24, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

.approved-card__content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: var(--white);
}

.approved-card__content .kicker {
  margin-bottom: 8px;
}

.approved-card__content .h3 {
  color: var(--white);
}

@media (max-width: 768px) {
  .approved-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .approved-card__media {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .approved-card__media {
    height: 240px;
  }
}


/* ============================
   DESTINATIONS GRID — Cartes overlay avec gradient
   Classes : .dest-grid-section, .dest-grid, .dest-card, .dest-card__content
   Pages : viea-destinations.html
   ============================ */

.dest-grid-section {
  max-width: 100%;
  margin: 0 auto;
  padding: var(--space-section) 48px;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dest-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.dest-card a {
  display: block;
  height: 100%;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.7) 0%, rgba(26, 26, 24, 0.15) 50%, transparent 100%);
  pointer-events: none;
  border-radius: 8px;
}

.dest-card__content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: var(--white);
}

.dest-card__content .kicker {
  margin-bottom: 6px;
}

.dest-card__content .h3 {
  color: var(--white);
  margin-bottom: 4px;
}

.dest-card__content .meta {
  color: var(--accent-light);
}

@media (max-width: 768px) {
  .dest-grid-section {
    padding: var(--space-section-m) 20px;
  }

  .dest-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dest-card {
    height: 240px;
  }
}


/* ============================
   DESTINATIONS HERO — Centré, sans image
   Classes : .dest-hero
   Pages : viea-destinations.html
   ============================ */

.dest-hero {
  text-align: center;
  padding-block: 1.25rem 0.75rem;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 48px;
}

.dest-hero .kicker {
  display: block;
  margin-bottom: 0.5rem;
}

.dest-hero .h1 {
  margin-bottom: 0;
}

.dest-hero .hairline {
  margin-block: 0.75rem;
}

@media (max-width: 768px) {
  .dest-hero {
    padding-block: 1rem 0.5rem;
    padding-inline: 20px;
  }
}


/* ============================
   DESTINATIONS SEARCH FORM
   Classes : .search-section, .search-form, .search-field, .search-select, .btn--primary
   Pages : viea-destinations.html
   ============================ */

.search-section {
  padding-inline: 48px;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid rgba(26, 26, 24, 0.10);
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-select {
  padding: 1rem;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 24, 0.20);
  border-radius: 0;
  background: transparent;
  font-family: var(--ff-b);
  font-size: var(--text-base);
  color: var(--text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8A85' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  cursor: pointer;
  outline: revert;
  transition: border-color 0.2s;
}

.search-select:focus {
  border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
  .search-section {
    padding-inline: 20px;
  }

  .search-form {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
}


/* ============================
   ARTICLE SINGLE — Hero + Header éditorial
   Classes : .article-hero, .article-hero-overlay, .article-header, .article-cat, .article-title, .article-subtitle, .meta-bar, .meta-avatar
   Pages : viea-single.html
   ============================ */

.article-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.6) 0%, rgba(26, 26, 24, 0.1) 50%, transparent 100%);
}

.article-header {
  max-width: var(--prose-width);
  margin: 0 auto;
  padding: 0 24px;
}

.article-cat {
  margin-top: 10px;
  margin-bottom: 16px;
}

.article-cat span {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.article-title {
  font-family: var(--ff-d);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  color: var(--dark);
  margin: 0 0 20px;
  text-wrap: balance;
}

.article-subtitle {
  font-family: var(--ff-d);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: var(--text-lg);
  line-height: 1.5;
  font-weight: 300;
  color: rgba(26, 26, 24, 0.80);
  margin: 0 0 28px;
  max-width: var(--prose-width);
}

.meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-alt);
  margin-bottom: 40px;
}

.meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.meta-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}

.meta-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.meta-date {
  font-family: var(--ff-m);
  font-size: 11px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .article-hero {
    height: 320px;
  }

  .article-header {
    padding: 0 20px;
  }

  .article-title {
    font-size: var(--text-2xl);
  }

  .article-subtitle {
    font-size: 17px;
  }

  .meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .article-hero {
    height: 260px;
  }

  .article-title {
    font-size: 26px;
  }
}


/* ============================
   ARTICLE SINGLE — Body éditorial + pullquote
   Classes : .article-body, .pull-quote, .breakout-img, .breakout-caption
   Pages : viea-single.html
   ============================ */

.article-body {
  max-width: var(--prose-width);
  margin: 0 auto;
  padding: 0 24px;
  font-size: 17px;
  line-height: 1.85;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: var(--ff-d);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--dark);
  margin: 48px 0 20px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}

.breakout-img {
  margin: 40px 0;
  padding: 0 48px;
}

.breakout-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}

.breakout-caption {
  font-family: var(--ff-m);
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.06em;
}

.pull-quote {
  margin: 48px auto;
  padding: 2rem 0;
  font-family: var(--ff-d);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  line-height: 1.25;
  font-weight: 300;
  color: var(--dark);
  text-align: center;
  max-width: 40rem;
  border-left: none;
}

@media (max-width: 768px) {
  .article-body {
    padding: 0 20px;
    font-size: 16px;
  }

  .breakout-img {
    padding: 0 20px;
  }

  .breakout-img img {
    height: 280px;
  }

  .pull-quote {
    font-size: var(--text-xl);
    padding-left: 0;
    margin: 32px auto;
  }
}

@media (max-width: 480px) {
  .breakout-img img {
    height: 220px;
  }
}


/* ============================
   ARTICLE SINGLE — Booking CTA
   Classes : .booking-cta, .booking-label, .booking-name, .booking-loc, .booking-btn
   Pages : viea-single.html
   ============================ */

.booking-cta {
  margin: 48px auto;
  padding: 28px 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a28 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 720px;
}

.booking-label {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.booking-name {
  font-family: var(--ff-d);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.booking-loc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.booking-btn {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--ff-b);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(196, 148, 61, 0.35);
  transition: opacity 0.2s;
}

.booking-btn:hover {
  opacity: 0.88;
}

@media (max-width: 768px) {
  .booking-cta {
    flex-direction: column;
    margin: 40px 20px;
    padding: 24px 20px;
    text-align: center;
  }

  .booking-btn {
    width: 100%;
  }
}


/* ============================
   ARTICLE SINGLE — Tags + Author Box
   Classes : .tags, .tag, .author-box, .author-avatar, .author-name, .author-bio
   Pages : viea-single.html
   ============================ */

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

a.tag,
button.tag {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--accent-light);
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s;
  background: none;
}

a.tag:hover,
button.tag:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.author-box {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  border-top: 1px solid var(--bg-alt);
  padding-top: 40px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-weight: 700;
  font-size: 24px;
  color: var(--accent);
}

.author-name {
  font-family: var(--ff-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.author-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .tags {
    padding: 0 20px;
  }

  .author-box {
    padding: 0 20px;
    padding-top: 32px;
    flex-direction: column;
    text-align: center;
  }
}


/* ============================
   ARTICLE SINGLE — Related + Prev/Next
   Classes : .related, .related-grid, .rel-card, .prevnext, .prevnext-item
   Pages : viea-single.html
   ============================ */

.related {
  padding: var(--space-section) 48px;
  background: var(--bg-alt);
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 16px;
}

.related-title {
  font-family: var(--ff-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
}

.related-link {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
  cursor: pointer;
}

.related-link:hover {
  color: var(--dark);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rel-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}

.rel-card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 24, 0.1);
  transform: translateY(-4px);
}

.rel-img {
  height: 220px;
  overflow: hidden;
}

.rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.rel-card:hover .rel-img img {
  transform: scale(1.06);
}

.rel-body {
  padding: 20px 20px 24px;
}

.rel-cat {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rel-title {
  font-family: var(--ff-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--bg-alt);
}

.prevnext-item {
  padding: 32px 48px;
  cursor: pointer;
  transition: background 0.2s;
}

.prevnext-item:hover {
  background: var(--bg-alt);
}

.prevnext-item:first-child {
  border-right: 1px solid var(--bg-alt);
}

.prevnext-item.right {
  text-align: right;
}

.prevnext-label {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.prevnext-title {
  font-family: var(--ff-d);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

@media (max-width: 768px) {
  .related {
    padding: 40px 20px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .prevnext {
    grid-template-columns: 1fr;
  }

  .prevnext-item {
    padding: 24px 20px;
  }

  .prevnext-item:first-child {
    border-right: none;
    border-bottom: 1px solid var(--bg-alt);
  }

  .prevnext-item.right {
    text-align: left;
  }
}


/* ============================
   ARTICLE SINGLE — Share button + dropdown
   Classes : .share-wrapper, .share-btn, .share-dropdown
   Pages : viea-single.html
   ============================ */

.share-wrapper {
  position: relative;
}

.share-btn {
  background: none;
  border: 1.5px solid var(--bg-alt);
  border-radius: 4px;
  padding: 8px 16px;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, color 0.2s;
}

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

.share-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--bg-alt);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(26, 26, 24, 0.12);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
}

.share-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.share-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--ff-b);
  font-size: 13px;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}

.share-dropdown a:hover {
  background: var(--bg-alt);
  color: var(--accent);
}


/* ============================
   CATEGORY — Hero with overlay
   Classes : .cat-hero, .cat-hero-overlay, .cat-hero-content, .cat-title, .cat-desc, .cat-stats, .breadcrumb
   Pages : viea-category.html
   ============================ */

.cat-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.cat-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.7) 0%, rgba(26, 26, 24, 0.25) 50%, transparent 100%);
}

.cat-hero-content {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  color: var(--white);
  z-index: 2;
}

.breadcrumb {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 0;
  margin-top: 20px;
  opacity: 0.7;
  text-transform: uppercase;
}

.breadcrumb .active {
  color: var(--accent-light);
}

.cat-title {
  font-family: var(--ff-d);
  font-size: 52px;
  font-weight: 900;
  margin: 0 0 12px;
  line-height: 1.1;
}

.cat-desc {
  font-size: 17px;
  opacity: 0.8;
  max-width: 600px;
  line-height: 1.6;
}

.cat-stats {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .cat-hero {
    height: 280px;
  }

  .cat-hero-content {
    bottom: 28px;
    left: 20px;
    right: 20px;
  }

  .cat-title {
    font-size: 36px;
  }

  .cat-desc {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cat-hero {
    height: 240px;
  }

  .cat-title {
    font-size: 28px;
  }
}


/* ============================
   CATEGORY — Featured grid (1 big + 2 small)
   Classes : .feat-grid, .feat-card, .feat-big, .feat-sm, .feat-overlay, .feat-text, .feat-title-big, .feat-title-sm
   Pages : viea-category.html
   ============================ */

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feat-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.feat-card img {
  transition: transform 0.6s;
}

.feat-card:hover img {
  transform: scale(1.05);
}

.feat-big {
  grid-row: 1 / 3;
  min-height: 400px;
}

.feat-sm {
  min-height: 186px;
}

.feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.65) 0%, transparent 60%);
}

.feat-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: var(--white);
  z-index: 2;
}

.feat-cat {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feat-title-big {
  font-family: var(--ff-d);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.feat-title-sm {
  font-family: var(--ff-d);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.feat-excerpt {
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }

  .feat-big {
    grid-row: auto;
    min-height: 280px;
  }

  .feat-sm {
    min-height: 200px;
  }
}


/* ============================
   CATEGORY — Subcategory cards (overlay mini)
   Classes : .subcat-grid, .subcat-card, .subcat-overlay, .subcat-text, .subcat-name, .subcat-count
   Pages : viea-category.html
   ============================ */

.subcat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.subcat-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 160px;
  cursor: pointer;
}

.subcat-card img {
  transition: transform 0.6s;
}

.subcat-card:hover img {
  transform: scale(1.08);
}

.subcat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.55) 0%, rgba(26, 26, 24, 0.1) 60%);
}

.subcat-text {
  position: absolute;
  bottom: 16px;
  left: 20px;
  color: var(--white);
  z-index: 2;
}

.subcat-name {
  font-family: var(--ff-d);
  font-size: 19px;
  font-weight: 700;
}

.subcat-count {
  font-family: var(--ff-m);
  font-size: 11px;
  color: var(--accent-light);
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .subcat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .subcat-card {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .subcat-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================
   CATEGORY — Guide cards (4 colonnes)
   Classes : .guide-grid, .guide-card, .guide-img, .guide-body, .guide-label, .guide-title
   Pages : viea-category.html
   ============================ */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.guide-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}

.guide-card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 24, 0.1);
  transform: translateY(-4px);
}

.guide-img {
  height: 160px;
  overflow: hidden;
}

.guide-card img {
  transition: transform 0.6s;
}

.guide-card:hover img {
  transform: scale(1.06);
}

.guide-body {
  padding: 16px 16px 20px;
}

.guide-label {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.guide-title {
  font-family: var(--ff-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .guide-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================
   CATEGORY — Article grid (3 colonnes) + Filters + Load more
   Classes : .art-grid, .art-card, .art-img, .art-body, .art-meta, .filters, .filter-btn, .load-more, .load-btn
   Pages : viea-category.html
   ============================ */

.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px;
  /* 44px minimum touch target height */
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: transparent;
  color: var(--text);
  outline: 1px solid var(--accent-light);
  min-height: 44px;
}

.filter-btn.active {
  background: var(--accent);
  color: var(--white);
  outline: revert;
  box-shadow: 0 4px 12px rgba(196, 148, 61, 0.25);
}

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

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.art-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}

.art-card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 24, 0.1);
  transform: translateY(-4px);
}

.art-img {
  height: 200px;
  overflow: hidden;
}

.art-card img {
  transition: transform 0.6s;
}

.art-card:hover img {
  transform: scale(1.06);
}

.art-body {
  padding: 20px 20px 24px;
}

.art-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.art-cat {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}

.art-date {
  font-family: var(--ff-m);
  font-size: 10px;
  color: var(--muted);
}

.art-title {
  font-family: var(--ff-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.load-more {
  text-align: center;
  margin-top: 40px;
}

.load-btn {
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.load-btn:hover {
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 768px) {
  .art-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================
   NEWSLETTER — Variante dark unifiée (toutes pages)
   Classes : .nl, .nl-kicker, .nl-title, .nl-sub, .nl-form, .nl-input, .nl-btn
   Arbitrage : style dark premium appliqué partout
   ============================ */

.nl {
  text-align: center;
  padding: var(--space-section) 48px;
  background: var(--dark);
  color: var(--white);
}

.nl .nl-kicker {
  font-family: var(--ff-m);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.nl .nl-title {
  font-family: var(--ff-d);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}

.nl .hairline {
  background: var(--accent);
  margin-bottom: 2rem;
}

.nl .nl-sub {
  font-family: var(--ff-d);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: var(--text-lg);
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-inline: auto;
}

.nl .nl-input {
  padding: 14px 20px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  width: 320px;
  font-family: var(--ff-b);
  background: transparent;
  color: var(--white);
  outline: revert;
  transition: border-color 0.2s;
}

.nl .nl-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.nl .nl-input:focus {
  border-bottom-color: var(--accent);
}

.nl .nl-btn {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0;
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--ff-m);
  transition: opacity 0.2s;
}

.nl .nl-btn:hover {
  opacity: 0.88;
}

@media (max-width: 768px) {
  .nl {
    padding: var(--space-section-m) 20px;
  }

  .nl .nl-form {
    flex-direction: column;
    align-items: center;
  }

  .nl .nl-input {
    width: 100%;
    max-width: 360px;
  }
}


/* ============================
   CONTACT — Form + Sidebar layout
   Classes : .contact-section, .contact-grid, .form-group, .form-input, .form-textarea, .form-select, .form-submit, .contact-sidebar, .sidebar-card
   Pages : viea-contact.html
   ============================ */

.contact-section {
  padding: 64px 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--ff-b);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--accent-light);
  border-radius: 4px;
  outline: revert;
  transition: border-color 0.2s;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
  font-size: 14px;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8A85' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-submit {
  padding: 14px 36px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--ff-b);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}

.form-submit:hover {
  opacity: 0.88;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--bg-alt);
}

.sidebar-label {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.sidebar-title {
  font-family: var(--ff-d);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.sidebar-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.sidebar-text a {
  color: var(--accent);
  transition: color 0.2s;
}

.sidebar-text a:hover {
  color: var(--dark);
}

.social-list {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-light);
  color: var(--text);
  font-size: 16px;
  transition: all 0.2s;
  cursor: pointer;
}

.social-link:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ============================
   CONTACT — Page header
   Classes : .page-header, .breadcrumb, .page-title, .page-subtitle
   Pages : viea-contact.html
   ============================ */

.page-header {
  padding: 56px 48px 48px;
  text-align: center;
  border-bottom: 1px solid var(--bg-alt);
}

.breadcrumb {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0;
  margin-top: 20px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--accent);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--dark);
}

.page-title {
  font-family: var(--ff-d);
  font-size: 44px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-header {
    padding: 40px 20px 36px;
  }

  .page-title {
    font-size: 32px;
  }

  .page-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 28px;
  }
}


/* ============================
   ANNONCEURS — Stats grid
   Classes : .stats-grid, .stat-card, .stat-number, .stat-label, .stat-detail
   Pages : viea-annonceurs.html
   ============================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-card {
  padding: 32px 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--bg-alt);
}

.stat-number {
  font-family: var(--ff-d);
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-detail {
  font-size: 13px;
  color: var(--text);
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================
   ANNONCEURS — Audience profile
   Classes : .audience-grid, .audience-img, .audience-text, .audience-list
   Pages : viea-annonceurs.html
   ============================ */

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.audience-img {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.audience-text h3 {
  font-family: var(--ff-d);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.audience-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.audience-list {
  list-style: none;
  padding: 0;
}

.audience-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .audience-img {
    height: 260px;
  }
}


/* ============================
   ANNONCEURS — Offers grid
   Classes : .offers-grid, .offer-card, .offer-icon, .offer-label, .offer-title, .offer-desc, .offer-features
   Pages : viea-annonceurs.html
   ============================ */

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

.offer-card {
  padding: 36px 32px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--bg-alt);
  transition: box-shadow 0.3s, transform 0.3s;
}

.offer-card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 24, 0.08);
  transform: translateY(-4px);
}

.offer-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.offer-label {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.offer-title {
  font-family: var(--ff-d);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.offer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.offer-features {
  list-style: none;
  padding: 0;
}

.offer-features li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.offer-features li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--accent);
}

@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================
   ANNONCEURS — Magazine showcase (dark card)
   Classes : .mag-showcase, .mag-showcase-img, .mag-showcase-text, .mag-showcase-label, .mag-showcase-title, .mag-showcase-desc, .mag-showcase-stats
   Pages : viea-annonceurs.html
   ============================ */

.mag-showcase {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 56px;
  background: var(--dark);
  border-radius: 12px;
}

.mag-showcase-img {
  width: 200px;
  height: 270px;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.mag-showcase-text {
  color: var(--white);
  flex: 1;
}

.mag-showcase-label {
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.mag-showcase-title {
  font-family: var(--ff-d);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mag-showcase-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 8px;
}

.mag-showcase-stats {
  font-family: var(--ff-m);
  font-size: 12px;
  color: var(--accent-light);
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .mag-showcase {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }

  .mag-showcase-img {
    width: 140px;
    height: 190px;
  }

  .mag-showcase-title {
    font-size: 22px;
  }
}


/* ============================
   ANNONCEURS — Testimonials
   Classes : .testimonials-grid, .testimonial-card, .testimonial-quote, .testimonial-author, .testimonial-avatar
   Pages : viea-annonceurs.html
   ============================ */

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

.testimonial-card {
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--bg-alt);
}

.testimonial-quote {
  font-family: var(--ff-d);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 36px;
  color: var(--accent);
  font-style: normal;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.testimonial-role {
  font-family: var(--ff-m);
  font-size: 11px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================
   ANNONCEURS — CTA banner
   Classes : .cta-banner, .cta-label, .cta-title, .cta-desc, .cta-btns, .cta-info, .btn-accent, .btn-outline
   Pages : viea-annonceurs.html, viea-contact.html
   ============================ */

.cta-banner {
  text-align: center;
  padding: var(--space-section) 48px;
  background: var(--dark);
}

.cta-label {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--ff-d);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Centrer le desc uniquement dans les CTA centrés (banner), pas dans les 2 colonnes */
.cta-banner .cta-desc {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner .cta-btns,
.viea-product__cta .cta-btns {
  justify-content: center;
}

.cta-info {
  font-family: var(--ff-m);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 24px;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: var(--space-section-m) 20px;
  }

  .cta-title {
    font-size: 28px;
  }
}

/* ============================
   CTA DERNIER NUMÉRO — avec couverture
   Classes : .cta-lastissue, .cta-lastissue__inner, .cta-lastissue__cover, .cta-lastissue__content
   ============================ */

.cta-lastissue {
  background: var(--dark);
  padding: var(--space-section) 48px;
}

.cta-lastissue__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
}

.cta-lastissue__cover img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-lastissue__content .cta-label {
  color: var(--accent-light);
}

.cta-lastissue__content .cta-title {
  color: var(--white);
}

.cta-lastissue__content .cta-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .cta-lastissue {
    padding: var(--space-section-m) 20px;
  }

  .cta-lastissue__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .cta-lastissue__cover {
    max-width: 180px;
    margin: 0 auto;
  }
}


/* ============================
   ANNONCEURS — Hero with overlay
   Classes : .adv-hero, .adv-hero-overlay, .adv-hero-content, .adv-hero-label, .adv-hero-title, .adv-hero-sub
   Pages : viea-annonceurs.html
   ============================ */

.adv-hero {
  position: relative;
  height: 440px;
  overflow: hidden;
}

.adv-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.75) 0%, rgba(26, 26, 24, 0.3) 50%, rgba(26, 26, 24, 0.15) 100%);
}

.adv-hero-content {
  position: absolute;
  bottom: 56px;
  left: 48px;
  right: 48px;
  color: var(--white);
  z-index: 2;
  max-width: 680px;
}

.adv-hero-label {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
  display: inline-block;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.adv-hero-title {
  font-family: var(--ff-d);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 16px;
}

.adv-hero-sub {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .adv-hero {
    height: 360px;
  }

  .adv-hero-content {
    bottom: 32px;
    left: 20px;
    right: 20px;
  }

  .adv-hero-title {
    font-size: 32px;
  }

  .adv-hero-sub {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .adv-hero {
    height: 300px;
  }

  .adv-hero-title {
    font-size: 26px;
  }
}
