/* =========================================================
   HISTORIA.CSS — ESTILOS EXCLUSIVOS DE LA PÁGINA DE HISTORIA
   ========================================================= */

.history-story {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.2rem 4rem;
  color: #fff;
}

.story-block {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.2rem;
  align-items: start;
  margin-bottom: 1.4rem;
  padding: 1.2rem;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.story-text h2 {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 1.25rem;
  color: var(--color-guitar-highlight, #d1a470);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.story-text p {
  color: #ddd;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.story-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.photo-slot {
  width: 100%;
  min-height: 140px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
  .story-block {
    grid-template-columns: 1fr;
  }

  .story-photo {
    min-height: 100px;
  }
}

