/* =============================================================
   Creators Club — Homepage CSS
   Direction : lifestyle éditorial, italique & traits
   Mobile-first — v2 2026-06-24
   ============================================================= */

:root {
  --cc-ink:         #111111;
  --cc-green:       #2A6B3C;
  --cc-green-dark:  #1e5230;
  --cc-green-light: #e8f3ec;
  --cc-white:       #ffffff;
  --cc-off:         #f8f8f8;
  --cc-border:      #ebebeb;
  --cc-muted:       #777777;
}

/* ── RESET ───────────────────────────────────────────────────── */
.cc-homepage * { box-sizing: border-box; }
.cc-homepage h1,
.cc-homepage h2,
.cc-homepage h3,
.cc-homepage p  { margin: 0; }
.cc-homepage ul { list-style: none; margin: 0; padding: 0; }
.cc-homepage    { background: var(--cc-white); font-family: inherit; }

/* ── TICKER ──────────────────────────────────────────────────── */
.cc-ticker {
  background: var(--cc-green);
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
}
.cc-ticker__inner {
  display: inline-block;
  animation: cc-roll 14s linear infinite;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--cc-white);
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes cc-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HÉRO ────────────────────────────────────────────────────── */
.cc-hero {
  padding: clamp(28px, 7vw, 60px) clamp(20px, 5vw, 48px) clamp(24px, 6vw, 52px);
  background: var(--cc-white);
  border-bottom: 1px solid var(--cc-border);
}

.cc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-green);
  font-weight: 600;
  margin-bottom: 14px;
}

.cc-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cc-green);
  flex-shrink: 0;
  animation: cc-pulse 2s ease-in-out infinite;
}
@keyframes cc-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: .5; }
}

.cc-hero__title {
  font-size: clamp(2.6rem, 10vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: .88;
  color: var(--cc-ink);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cc-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--cc-green);
  letter-spacing: -0.02em;
  text-transform: none;
}

.cc-hero__phrase {
  font-size: clamp(0.76rem, 2.5vw, 0.9rem);
  color: var(--cc-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 22px;
}

.cc-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cc-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--cc-ink);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.cc-hero__cta:hover {
  color: var(--cc-green);
  border-color: var(--cc-green);
}

/* ── EN-TÊTES DE SECTION ─────────────────────────────────────── */
.cc-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 4vw, 24px) clamp(20px, 5vw, 48px) clamp(12px, 3vw, 18px);
  border-bottom: 1px solid var(--cc-border);
}

.cc-section-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-ink);
  margin: 0;
}
.cc-section-title__line {
  width: 16px;
  height: 2px;
  background: var(--cc-green);
  flex-shrink: 0;
}

.cc-section-link {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--cc-green);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity .15s;
}
.cc-section-link:hover { opacity: .7; }

/* ── DERNIÈRES SORTIES ───────────────────────────────────────── */
.cc-latest {
  padding: 0 0 clamp(24px, 5vw, 40px);
  background: var(--cc-white);
  border-bottom: 1px solid var(--cc-border);
}

.cc-latest__swiper {
  padding-left:  clamp(20px, 5vw, 48px) !important;
  padding-right: clamp(20px, 5vw, 48px) !important;
  overflow: visible !important;
  margin-top: clamp(14px, 3vw, 22px);
}

/* ── CARTE PRODUIT ───────────────────────────────────────────── */
.swiper-slide.cc-product-card {
  width: clamp(140px, 46vw, 200px) !important;
  flex-shrink: 0;
}

.cc-product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  outline-offset: 3px;
}

.cc-product-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0efec;
  border-radius: 4px;
  margin-bottom: 10px;
}
.cc-product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.cc-product-card__link:hover .cc-product-card__img-wrap img {
  transform: scale(1.04);
}

.cc-product-card__tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--cc-green);
  color: var(--cc-white);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  z-index: 1;
}

.cc-product-card__no-img {
  aspect-ratio: 3 / 4;
  background: #ece9e4;
  border-radius: 4px;
}

.cc-product-card__info { padding: 0 2px; }

.cc-product-card__brand {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cc-green);
  margin-bottom: 4px;
}

.cc-product-card__name {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cc-ink);
  line-height: 1.3;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cc-product-card__price {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cc-muted);
  margin-bottom: 8px;
}
.cc-product-card__price .woocommerce-Price-amount,
.cc-product-card__price bdi {
  color: var(--cc-ink);
  font-weight: 700;
}

.cc-product-card__cta {
  display: inline-block;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cc-ink);
  border-bottom: 1.5px solid var(--cc-ink);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.cc-product-card__link:hover .cc-product-card__cta {
  color: var(--cc-green);
  border-color: var(--cc-green);
}

/* Boutons Swiper */
.cc-swiper-btn.swiper-button-prev,
.cc-swiper-btn.swiper-button-next {
  background: var(--cc-white) !important;
  border: 1px solid var(--cc-border) !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 0 !important;
  top: 35% !important;
}
.cc-swiper-btn::after {
  font-size: 11px !important;
  color: var(--cc-ink) !important;
  font-weight: 700 !important;
}

/* ── DROPS À VENIR ───────────────────────────────────────────── */
.cc-upcoming {
  background: var(--cc-white);
  border-bottom: 1px solid var(--cc-border);
}

.cc-upcoming__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc-drop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(12px, 3vw, 16px) clamp(20px, 5vw, 48px);
  border-top: 1px solid var(--cc-border);
  transition: background .12s;
}
.cc-drop-item:hover { background: var(--cc-off); }

.cc-drop-item__img {
  width: 140px;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  background: #f0efec;
  flex-shrink: 0;
}
.cc-drop-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.cc-drop-item__info {
  flex: 1;
  min-width: 0;
}

.cc-drop-item__brand {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cc-green);
  margin-bottom: 2px;
}

.cc-drop-item__name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cc-ink);
  line-height: 1.25;
}

.cc-drop-item__date {
  font-size: 0.58rem;
  color: var(--cc-muted);
  margin-top: 3px;
}

.cc-drop-item__btn {
  flex-shrink: 0;
  background: var(--cc-green);
  color: var(--cc-white);
  border: none;
  padding: 8px 14px;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}
.cc-drop-item__btn:hover { background: var(--cc-green-dark); }

/* ── NEWSLETTER ──────────────────────────────────────────────── */
.cc-footer-capture {
  background: var(--cc-ink);
  color: var(--cc-white);
  padding: clamp(36px, 8vw, 72px) clamp(20px, 5vw, 48px);
}

.cc-footer-capture__title {
  font-size: clamp(1.9rem, 7vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: .9;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cc-footer-capture__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--cc-green);
}

.cc-footer-capture__desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 380px;
}

.cc-newsletter-form .cc-notify-form__row {
  display: flex;
  gap: 0;
  max-width: 420px;
}

.cc-newsletter-form .cc-input {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
  color: var(--cc-white);
  padding: 13px 16px;
  font-size: 0.8rem;
  outline: none;
  border-radius: 0;
  font-family: inherit;
  min-width: 0;
}
.cc-newsletter-form .cc-input::placeholder { color: rgba(255,255,255,.3); }
.cc-newsletter-form .cc-input:focus       { border-color: var(--cc-green); }

.cc-newsletter-form .cc-btn--primary {
  background: var(--cc-green);
  color: var(--cc-white);
  border: none;
  padding: 13px 20px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
  font-family: inherit;
  transition: background .15s;
}
.cc-newsletter-form .cc-btn--primary:hover { background: var(--cc-green-dark); }

.cc-notify-form__mention {
  font-size: 0.52rem;
  color: rgba(255,255,255,.2);
  line-height: 1.8;
  max-width: 460px;
  margin-top: 14px;
}
.cc-notify-form__mention a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
}

#cc-newsletter-msg,
#cc-drop-msg {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  margin-top: 10px;
  min-height: 18px;
}
#cc-newsletter-msg.success, #cc-drop-msg.success { color: #5aab72; }
#cc-newsletter-msg.error,   #cc-drop-msg.error   { color: #ff6b6b; }

/* ── MARQUES ─────────────────────────────────────────────────── */
.cc-brands {
  background: var(--cc-white);
  padding-bottom: clamp(16px, 4vw, 32px);
}

.cc-brands__row {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: clamp(10px, 3vw, 14px) clamp(20px, 5vw, 48px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cc-brands__row::-webkit-scrollbar { display: none; }

.cc-brand-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border: 1px solid var(--cc-border);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s;
  min-width: 72px;
  flex-shrink: 0;
}
.cc-brand-chip:hover { border-color: var(--cc-green); }

.cc-brand-chip__initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cc-off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cc-ink);
  transition: background .15s, color .15s;
}
.cc-brand-chip:hover .cc-brand-chip__initial {
  background: var(--cc-green-light);
  color: var(--cc-green);
}

.cc-brand-chip img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}

.cc-brand-chip__name {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cc-muted);
  white-space: nowrap;
  transition: color .15s;
}
.cc-brand-chip:hover .cc-brand-chip__name { color: var(--cc-green); }

/* ── MODALE ──────────────────────────────────────────────────── */
.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
}
.cc-modal[hidden] { display: none !important; }

.cc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cc-modal__box {
  position: relative;
  z-index: 1;
  background: var(--cc-white);
  width: 100%;
  padding: 32px 24px 40px;
  animation: cc-slide-up .28s cubic-bezier(.34,1.2,.64,1);
}
@keyframes cc-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cc-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--cc-muted);
  line-height: 1;
  padding: 4px 6px;
  font-family: inherit;
}

.cc-modal__title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--cc-ink);
}

.cc-modal__desc {
  font-size: 0.78rem;
  color: var(--cc-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cc-modal .cc-notify-form__row { display: flex; gap: 0; }

.cc-modal .cc-input {
  flex: 1;
  border: 1px solid var(--cc-border);
  border-right: none;
  padding: 12px 14px;
  font-size: 0.8rem;
  outline: none;
  border-radius: 0;
  font-family: inherit;
  min-width: 0;
  background: var(--cc-white);
  color: var(--cc-ink);
}
.cc-modal .cc-input:focus { border-color: var(--cc-green); }

.cc-modal .cc-btn--primary {
  background: var(--cc-green);
  color: var(--cc-white);
  border: none;
  padding: 12px 18px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  border-radius: 0;
  font-family: inherit;
  transition: background .15s;
  white-space: nowrap;
}
.cc-modal .cc-btn--primary:hover { background: var(--cc-green-dark); }

.cc-modal .cc-notify-form__mention {
  font-size: 0.54rem;
  color: var(--cc-muted);
  line-height: 1.8;
  margin-top: 12px;
}

/* ── ACCESSIBILITÉ ───────────────────────────────────────────── */
.cc-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--cc-green);
  outline-offset: 2px;
}

/* ── BREAKPOINTS ─────────────────────────────────────────────── */
@media (min-width: 600px) {
  .swiper-slide.cc-product-card { width: 200px !important; }
  .cc-drop-item__img { width: 64px; height: 64px; }
  .cc-drop-item__name { font-size: 0.85rem; }
}

@media (min-width: 900px) {
  .cc-modal { align-items: center; }
  .cc-modal__box { max-width: 440px; }
  .cc-brands__row { flex-wrap: wrap; overflow-x: visible; }
  .cc-upcoming__list { display: grid; grid-template-columns: 1fr 1fr; }
  .cc-drop-item:nth-child(2n) { border-left: 1px solid var(--cc-border); }
}

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

/* ── AMÉLIORATIONS v2.1 ─────────────────────────────────────────── */

/* Hero — titre blanc (newsletter) */
.cc-footer-capture__title { color: #ffffff; }

/* Hero — ligne verte sous le titre */
.cc-hero__title { margin-bottom: 0; }
.cc-hero__title::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--cc-green);
  margin-top: 20px;
}
.cc-hero__phrase { margin-top: 18px; }

/* Cartes produit — lift + ombre au hover */
.cc-product-card__link { transition: transform .22s ease; }
.cc-product-card__link:hover { transform: translateY(-5px); }
.cc-product-card__img-wrap {
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: box-shadow .22s ease, transform .55s cubic-bezier(.25,.46,.45,.94);
}
.cc-product-card__link:hover .cc-product-card__img-wrap {
  box-shadow: 0 12px 32px rgba(0,0,0,.13);
}

/* État vide — drops */
.cc-drop-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: clamp(36px, 7vw, 60px) clamp(20px, 5vw, 48px);
  text-align: center;
}
.cc-drop-empty__icon {
  color: var(--cc-green);
  margin-bottom: 8px;
  opacity: .85;
}
.cc-drop-empty__title {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-ink);
  margin-bottom: 4px;
}
.cc-drop-empty__desc {
  font-size: 0.7rem;
  color: var(--cc-muted);
  margin-bottom: 20px;
  line-height: 1.65;
  max-width: 300px;
}
.cc-drop-empty .cc-notify-form__row {
  display: flex;
  gap: 0;
  max-width: 360px;
  width: 100%;
}
.cc-drop-empty .cc-input {
  flex: 1;
  border: 1px solid var(--cc-border);
  border-right: none;
  padding: 11px 14px;
  font-size: 0.8rem;
  outline: none;
  border-radius: 0;
  font-family: inherit;
  min-width: 0;
  background: var(--cc-white);
  color: var(--cc-ink);
}
.cc-drop-empty .cc-input:focus { border-color: var(--cc-green); }
.cc-drop-empty .cc-btn--primary {
  background: var(--cc-green);
  color: var(--cc-white);
  border: none;
  padding: 11px 16px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  border-radius: 0;
  font-family: inherit;
  transition: background .15s;
  white-space: nowrap;
}
.cc-drop-empty .cc-btn--primary:hover { background: var(--cc-green-dark); }
.cc-drop-empty .cc-notify-form__mention {
  font-size: 0.52rem;
  color: var(--cc-muted);
  margin-top: 10px;
  line-height: 1.8;
  max-width: 360px;
}

/* Marques — palette chromatique des initiales */
.cc-brands__row li:nth-child(5n+1) .cc-brand-chip__initial { background: #e8f3ec; color: #2A6B3C; }
.cc-brands__row li:nth-child(5n+2) .cc-brand-chip__initial { background: #1a1a1a; color: #ffffff; }
.cc-brands__row li:nth-child(5n+3) .cc-brand-chip__initial { background: #2A6B3C; color: #ffffff; }
.cc-brands__row li:nth-child(5n+4) .cc-brand-chip__initial { background: #f0f7f2; color: #1e5230; }
.cc-brands__row li:nth-child(5n+5) .cc-brand-chip__initial { background: #e8e8e8; color: #111111; }

/* ── AMÉLIORATIONS v2.2 ─────────────────────────────────────────── */

/* Masquer le titre texte "Creators Club" sous le logo */
.site-title { display: none !important; }

/* Masquer le copyright Blocksy */
.ct-footer-copyright { display: none !important; }

/* Titres de section — plus grands et plus présents */
.cc-section-title {
  font-size: 0.82rem !important;
  letter-spacing: 0.16em !important;
  font-weight: 900 !important;
}
.cc-section-title__line {
  width: 20px !important;
  height: 2.5px !important;
}
.cc-section-link {
  font-size: 0.68rem !important;
}


/* ── Drops à venir : cartes photo plein format (2026-07-10 v2) ── */
.cc-upcoming__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 18px;
  padding: 8px clamp(20px, 5vw, 48px) 16px;
  list-style: none;
}
.cc-drop-card {
  position: relative;
  min-height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #101010;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border-top: none;
}
.cc-drop-card__overlay {
  width: 100%;
  padding: 90px 22px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,0) 100%);
}
.cc-drop-card__brand {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #a5dcb0;
  margin-bottom: 4px;
}
.cc-drop-card__name {
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}
.cc-drop-card__date {
  font-size: 0.72rem;
  color: rgba(255,255,255,.75);
  margin: 6px 0 0;
}
.cc-drop-card__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cc-drop-card__link {
  color: #a5dcb0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  font-size: 0.82rem;
}
.cc-drop-card__link:hover { color: #fff; }
.cc-drop-card__btn {
  background: var(--cc-green);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 24px;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
}
.cc-drop-card__btn:hover { opacity: .88; }
@media (max-width: 782px) {
  .cc-upcoming__list { grid-template-columns: 1fr; }
  .cc-drop-card { min-height: 280px; }
  .cc-drop-card__overlay { padding: 70px 16px 16px; }
}

/* page publique d'un drop */
.cc-drop-single__date {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cc-muted, #777);
  margin-bottom: 18px;
}
