
/* =========================================================
   HISTORIA PAGE
   ========================================================= */

/* ── Divider: spans only one column width ── */
.historia-divider {
  border: none;
  border-top: 1px solid #d4dce6;
  width: calc(50% - 24px); /* exact width of 1 column in 1fr/1fr + 48px gap */
  margin: 0 0 48px;
}

/* push to the right column */
.historia-divider--right {
  margin-left: calc(50% + 24px);
}

/* ── Entry: 2 equal columns, rows stretch to match tallest cell ── */
.historia-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  align-items: stretch;
}

.historia-entry__content,
.historia-entry__right {
  display: flex;
  flex-direction: column;
}

/* images column fills the full row height and splits it equally */
.historia-entry__images {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.historia-entry__img-slot {
  flex: 1;            /* each block takes half the column height */
  min-height: 0;
  width: 100%;
  background: #c7e0ee;
  display: block;
  object-fit: cover;
}

/* Year heading: centered */
.historia-year {
  font-size: 7rem;
  font-weight: 700;
  color: #0f74b7;
  line-height: 0.9;
  margin: 0 0 28px;
  text-align: center;
  width: 100%;
}

.historia-text {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.72;
  font-weight: 300;
}

.historia-text p {
  margin: 0 0 1em;
}

.historia-text p:last-child {
  margin-bottom: 0;
}

.historia-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #c7e0ee;
}