:root {
  --primary-pink: #FBDAD1;
  --primary-fuxia: #E83368;
  --primary-pink-medium: #FF88AB;
  --cream: #FFF9F0;
  --neutral-dark-grey: #8F8F8F;
  --neutral-black: #000;
  --primary-fuxia-rgb: 232, 51, 104;
  --text-dark: #333;
  --text-gray: #666;
  --border-gray: #e0e0e0;
  --bg-gray: #f5f5f5;
  --bg-white: #fff;
  --sidebar-bg: var(--primary-pink);
  --footer-text: var(--cream);
  --pink-strong: #ed2256;
  --pink-strong-rgb: 237, 34, 86; }

/* ---------- SEZIONI ---------- */
.ccl-section {
  padding: 64px 0; }

.ccl-section--cream {
  background: var(--cream); }

.ccl-section--white {
  background: var(--bg-white); }

.ccl-section--cream .ccl-inner {
  padding: 0 64px; }
  @media (max-width: 768px) {
    .ccl-section--cream .ccl-inner {
      padding: 0 20px; } }
.ccl-section--white .ccl-inner {
  padding: 0 60px; }
  @media (max-width: 768px) {
    .ccl-section--white .ccl-inner {
      padding: 0 20px; } }
/* ---------- TITOLI ---------- */
.ccl-title {
  color: var(--primary-fuxia);
  font-size: 44px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: normal;
  margin: 0 0 16px 0; }
  @media (max-width: 768px) {
    .ccl-title {
      font-size: 32px;
      line-height: 36px; } }
/* ---------- TESTI ---------- */
/* I due blocchi alternati (crema e bianco) condividono la stessa tipografia:
   un unico selettore evita che tornino a divergere. */
.ccl-intro,
.ccl-text {
  max-width: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: normal;
  color: var(--neutral-dark-grey); }
  .ccl-intro p,
  .ccl-text p {
    margin: 0 0 22px;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit; }
    .ccl-intro p:last-child,
    .ccl-text p:last-child {
      margin-bottom: 0; }
  .ccl-intro span, .ccl-intro br,
  .ccl-text span,
  .ccl-text br {
    color: inherit; }
  .ccl-intro strong, .ccl-intro b,
  .ccl-text strong,
  .ccl-text b {
    font-weight: 700; }
  .ccl-intro a,
  .ccl-text a {
    color: var(--primary-fuxia);
    font-weight: 700;
    text-decoration: none; }
    .ccl-intro a:hover,
    .ccl-text a:hover {
      text-decoration: underline; }

/* ---------- SEZIONE CON IMMAGINE ---------- */
.ccl-inner--with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start; }
  .ccl-inner--with-image .ccl-title {
    grid-column: 1 / -1; }
  .ccl-inner--with-image .ccl-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px; }
  @media (max-width: 768px) {
    .ccl-inner--with-image {
      grid-template-columns: 1fr; }
      .ccl-inner--with-image .ccl-image {
        order: -1; } }
