.uno-mas-tres-horizontal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
}

/* COLUMNA IZQUIERDA */
.uno-mas-tres-horizontal .tarjeta-destacado {
  flex: 1;
}

/* COLUMNA DERECHA */
.uno-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 600px;
  overflow-y: auto;
  padding: 10px;
}

.subcard {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  box-shadow: var(--sombra-predeterminada);
  background-color: #ffffff;
}

.subcard a:has(img) {
  width: 100%;
}

.subcard img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

.subcard .content {
  flex: 1;
}

.subcard .content h3 {
  margin: 0 0 5px;
  font-size: 1.5em;
}

.subcard .content p {
  margin: 0 0 10px;
}

.contenedor-uno-tres .tab-content {
  border: none;
  box-shadow: none;
  padding: 0;
}

@media (min-width: 768px) {
  .uno-mas-tres-horizontal {
    flex-direction: row;
  }

  .subcard {
    flex-direction: row;
  }

  .subcard a:has(img) {
    width: unset;
  }

  .subcard img {
    width: 120px;
    height: 120px;
  }
}
