@charset "utf-8";
/* CSS Document */

/* =========================
   TALLER
========================= */
#taller.workshop-section {
  padding: 80px 0;
  background: #f6f3f2;
  overflow: hidden;
}

#taller .container {
  width: 100%;
}

#taller .workshop-core {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  min-width: 0;
}

#taller .workshop-visual {
  position: relative;
  min-width: 0;
}

#taller .workshop-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e9e6e3;
}

#taller .workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.7s ease, filter 0.7s ease;
}

#taller .workshop-image:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

#taller .workshop-overlay {
  position: absolute;
  right: -24px;
  bottom: -24px;
  background: #322214;
  padding: 24px 30px;
  max-width: 220px;
  z-index: 2;
}

#taller .workshop-overlay-number {
  margin: 0 0 8px;
  font-family: "Noto Serif", serif;
  font-size: 42px;
  line-height: 1;
  font-style: italic;
  color: #ffffff;
}

#taller .workshop-overlay-text {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

#taller .workshop-content {
  min-width: 0;
  padding-top: 8px;
}

#taller .workshop-content h2 {
  margin: 0 0 20px;
  font-family: "Noto Serif", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
  color: #322214;
}

#taller .workshop-intro {
  margin: 0 0 28px;
  max-width: 620px;
  font-size: 14px;
  line-height: 1.625;
  color: #625e57;
}

#taller .workshop-content h3 {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f2a93b;
}

#taller .workshop-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px 28px;
}

#taller .workshop-steps > div {
  min-width: 0;
}

#taller .workshop-steps span {
  display: block;
  margin-bottom: 8px;
  font-family: "Noto Serif", serif;
  font-size: 30px;
  line-height: 1;
  color: rgba(50, 34, 20, 0.14);
}

#taller .workshop-steps h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #322214;
}

#taller .workshop-steps p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #625e57;
}

/* =========================
   DESKTOP ONLY
========================= */
@media (min-width: 769px) {
  #taller.workshop-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  #taller .container {
    display: flex;
    align-items: center;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  #taller .workshop-core {
    grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
    gap: 32px;
  }

  #taller .workshop-content h2 {
    font-size: 44px;
  }

  #taller .workshop-overlay {
    right: -18px;
    bottom: -18px;
    padding: 20px 24px;
    max-width: 200px;
  }

  #taller .workshop-overlay-number {
    font-size: 36px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  #taller.workshop-section {
    padding: 64px 0;
    min-height: auto;
    display: block;
  }

  #taller .container {
    display: block;
  }

  #taller .workshop-core {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  #taller .workshop-content {
    padding-top: 0;
  }

  #taller .workshop-content h2 {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1.04;
  }

  #taller .workshop-intro {
    margin-bottom: 24px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
  }

  #taller .workshop-content h3 {
    margin-bottom: 18px;
  }

  #taller .workshop-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #taller .workshop-overlay {
    right: 0;
    bottom: 0;
    padding: 18px 22px;
    max-width: 180px;
  }

  #taller .workshop-overlay-number {
    font-size: 34px;
  }

  #taller .workshop-overlay-text {
    font-size: 10px;
  }
}