<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2em;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .about {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

.about__info {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .about__info {
    align-items: center;
    text-align: center;
  }
}

.about__title {
  font-size: 2em;
  font-weight: 700;
  color: #2b2e4a; /* Reemplazado $blue con su valor */
}

.about__description {
  color: #555;
}

.about__button {
  align-self: start;
}

@media screen and (max-width: 767px) {
  .about__button {
    align-self: center;
  }
}

.about__images {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .about__images {
    justify-content: center;
  }
}

.about__images-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1em;
  width: 100%;
  max-width: 700px;
}

.about__image-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about__image-item--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.about__image-item--2 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.about__image-item--3 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
</pre></body></html>