/* ===================================================
   EL TURNO ES TUYO — RECETAS INDIVIDUALES CSS
   Prefijo: ety26-
   Tipografías: Quicksand 700 + Open Sans
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&family=Open+Sans:wght@400;600&display=swap');

/* --- TOKENS --- */
:root {
  --ety-bg:      #FFFFFF;
  --ety-surface: #FFFFFF;
  --ety-dark:    #151515;
  --ety-mid:     #444444;
  --ety-muted:   #888888;
  --ety-blue:    #0061FF;
  --ety-cyan:    #07C8F9;
  --ety-border:  #E4E4E0;
  --ety-radius:  12px;
  --ety-font-display: 'Quicksand', sans-serif;
  --ety-font-body:    'Open Sans', sans-serif;
}

.ety26-rec * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ety26-rec {
  font-family: var(--ety-font-body);
  background: var(--ety-bg);
  color: var(--ety-dark);
  width: 100%;
}

/* ===================================================
   HERO — split 50/50: texto izq | imagen circular der
   =================================================== */
.ety26-rec__hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  background: #fff;
  overflow: visible;
  padding: 56px 5% 56px 5%;
  /* Clip solo horizontal para que los círculos no generen scroll */
  clip-path: inset(0);
}

/* Bloque decorativo azul en esquina derecha — igual al screenshot */
.ety26-rec__hero::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, var(--ety-blue), var(--ety-cyan));
  border-radius: 50%;
  z-index: 0;
}

/* Segundo círculo decorativo más pequeño abajo */
.ety26-rec__hero::before {
  content: '';
  position: absolute;
  right: 60px;
  bottom: 50px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--ety-cyan), var(--ety-blue));
  border-radius: 50%;
  z-index: 0;
}

/* LADO IZQUIERDO — texto */
.ety26-rec__hero-info {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  max-width: 54%;
  padding-right: 48px;
}

/* LADO DERECHO — imagen circular */
.ety26-rec__hero-img-wrap {
  position: relative;
  z-index: 1;
  flex: 0 0 42%;
  width: 42%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.3);
}

.ety26-rec__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post img, .single-postlike img {min-height: 420px;}

/* Quitamos el ::after que usábamos antes para el degradado */
.ety26-rec__hero-img-wrap::after { display: none; }

/* --- BACK LINK --- */
.ety26-rec__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ety-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.ety26-rec__back:hover { color: var(--ety-blue); }

.ety26-rec__back svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none; stroke-width: 2.5;
}

/* --- EYEBROW --- */
.ety26-rec__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ety26-rec__slash {
  color: var(--ety-blue);
  font-family: var(--ety-font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.ety26-rec__category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ety-blue);
}

/* --- TÍTULO --- */
.ety26-rec__title {
  font-family: var(--ety-font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  color: #0547c2;;
  margin-bottom: 8px;
}

.ety26-rec__subtitle {
  font-size: 0.95rem;
  color: var(--ety-muted);
  font-weight: 600;
  margin-bottom: 18px;
  font-style: italic;
}

/* --- SEO / DESCRIPCIÓN --- */
.ety26-rec__seo {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ety-mid);
  margin-bottom: 32px;
}

/* --- META ROW --- */
.ety26-rec__meta {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--ety-border);
  border-radius: var(--ety-radius);
  overflow: hidden;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
}

.ety26-rec__meta-item {
  flex: 1;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-right: 1.5px solid var(--ety-border);
}

.ety26-rec__meta-item:last-child { border-right: none; }

.ety26-rec__meta-icon {
  width: 20px; height: 20px;
  stroke: var(--ety-blue); fill: none; stroke-width: 1.8;
}

.ety26-rec__meta-label {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ety-muted);
}

.ety26-rec__meta-val {
  font-family: var(--ety-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ety-dark);
  text-align: center;
}

/* --- DIFICULTAD + CHEF en una línea --- */
.ety26-rec__footer-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ety26-rec__diff {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ety26-rec__diff--facil   { background: #1DB954; color: #fff; }
.ety26-rec__diff--media   { background: #F59E0B; color: #111; }
.ety26-rec__diff--dificil { background: #EF4444; color: #fff; }

.ety26-rec__chef-line {
  font-size: 0.8rem;
  color: var(--ety-muted);
}

.ety26-rec__chef-line strong { color: var(--ety-blue); font-weight: 600; }

/* ===================================================
   BODY — DOS COLUMNAS: ingredientes | preparación
   =================================================== */
.ety26-rec__body {
  display: grid;
  grid-template-columns: 1fr 32px 1.7fr;
  max-width: 90%;
  margin: 0 auto;
  padding: 56px 5% 80px;
}

.ety26-rec__divider {
  background: var(--ety-border);
  margin: 0 48px;
  align-self: stretch;
}

.ety26-rec__col-title {
  font-family: var(--ety-font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--ety-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ety26-rec__col-title::before {
  content: '//';
  color: var(--ety-blue);
  font-size: 1rem;
  font-weight: 700;
}

/* --- INGREDIENTES --- */
.ety26-ing-list { list-style: none; }

.ety26-ing-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ety-border);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ety-mid);
}

.ety26-ing-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ety-cyan);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* --- PASOS --- */
.ety26-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ety26-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.ety26-step__num {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--ety-blue), var(--ety-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ety-font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.ety26-step__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ety-mid);
  padding-top: 5px;
}

/* --- TIP --- */
.ety26-tip {
  margin: auto;
  background: #EEF5FF;
  border: 1.5px solid #C8DAFF;
  border-radius: var(--ety-radius);
  padding: 18px 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 90%
}

.ety26-tip__icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }

.ety26-tip__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ety-blue);
  margin-bottom: 5px;
}

.ety26-tip__text {
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--ety-mid);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .ety26-rec__hero {
    flex-direction: column;
    padding: 40px 5% 48px;
    min-height: auto;
  }

  .ety26-rec__hero::after {
    width: 220px;
    height: 220px;
    right: -40px;
    top: -40px;
  }

  .ety26-rec__hero::before {
    display: none;
  }

  .ety26-rec__hero-info {
    max-width: 100%;
    padding-right: 0;
    order: 2;
  }

  .ety26-rec__hero-img-wrap {
    order: 1;
    flex: 0 0 auto;
    width: 260px;
    max-width: 260px;
    margin: 0 auto 32px;
  }

  .ety26-rec__body {
    grid-template-columns: 1fr;
    padding: 40px 5% 64px;
  }

  .ety26-rec__divider {
    width: 100%;
    height: 1.5px;
    margin: 36px 0;
  }
}

@media (max-width: 480px) {
  .ety26-rec__hero-img-wrap {
    width: 200px;
    max-width: 200px;
  }

  .ety26-rec__meta { flex-wrap: wrap; }
  .ety26-rec__meta-item {
    flex: 0 0 50%;
    border-bottom: 1.5px solid var(--ety-border);
  }
}