/* ============================================================
   Ibixa.css - Estilos específicos del cuento "Ibixa"
   ============================================================ */

/* === DOS IMÁGENES FLOTANTES === */
.imagenes-dobles {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.imagenes-dobles img {
    width: 300px;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 700px) {
    .imagenes-dobles {
        float: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 0;
    }
    .imagenes-dobles img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}
/* ============================================
   caballetes
   ============================================ */
.twocolumn {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.twocolumn .quote {
  flex: 1 1 300px;
  max-width: 400px;
  min-width: 250px;
}

.quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  text-align: center;
  background: #ffffff;
  color: #000000;
  padding: 1.5rem 1.8rem;
  border: 8px solid #8b0000;
  border-radius: 4px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.7;
  box-shadow: 0 4px 0 #5a0000, 0 8px 16px rgba(0,0,0,0.25);
}

.quote .price {
  font-family: 'Times New Roman', Times, serif;
  font-size: 2em;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.8rem;
}

.quote .price span {
  font-style: italic;
  color: #cc2233;
}

.quote .text {
  display: block;
  width: 100%;
}

.quote .text .title {
  display: block;
  font-size: 1.6em;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.quote .text .subtitle {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.quote br {
  display: block;
  content: "";
  margin: 0.1rem 0;
}

/* Cartel 1: letra manuscrita cursiva */
.quote.hand1 {
  font-family: 'Brush Script MT', 'Segoe Script', 'Comic Sans MS', cursive;
  text-transform: none;
  letter-spacing: 0.02em;
}

.quote.hand1 .price {
  font-family: 'Brush Script MT', 'Segoe Script', 'Comic Sans MS', cursive;
  font-size: 2.8em;
}

.quote.hand1 .text .title {
  font-size: 2em;
}

/* Cartel 2: letra manuscrita diferente */
.quote.hand2 {
  font-family: 'Lucida Handwriting', 'Kristen ITC', 'Comic Sans MS', cursive;
  text-transform: none;
  letter-spacing: 0.03em;
}

.quote.hand2 .price {
  font-family: 'Lucida Handwriting', 'Kristen ITC', 'Comic Sans MS', cursive;
  font-size: 3em;
}

.quote.hand2 .text .title {
  font-size: 2em;
}

/* Segundo cartel: fondo rojo, texto blanco */
.quote.bg-red {
  background: #b22222;
  color: #ffffff;
  border-color: #8b0000;
  box-shadow: 0 4px 0 #5a0000, 0 8px 16px rgba(0,0,0,0.35);
}

.quote.bg-red .price {
  color: #ffffff;
}

.quote.bg-red .price span {
  color: #ffffff;
}