/* Contenedor del componente */
.home-ind-2 {
  display: flex;
  gap: 20px;
  height: 27rem;
}

/* Columna izquierda */
.home-ind-2 .left-column {
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 2px solid #abb8c3;
}

/* Columna derecha (60% de ancho) */
.home-ind-2 .right-column {
  flex: 0 0 67%;
  justify-content: flex-start;
}

/* Estilos del texto */
.home-ind-2 .category,
.home-ind-2 .title,
.home-ind-2 .excerpt,
.home-ind-2 .meta {
  margin-bottom: 10px;
}

.home-ind-2 .category {
  font-size: 0.9rem;
  color: #666;
}

.home-ind-2 .title {
  text-transform: math-auto;
  font-size: 1.7rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
  font-weight: 700;
  height:20%;
}

.home-ind-2 .excerpt {
  font-size: 0.9rem;
  color: black;
  line-height: 1.3;
  height: 18%;
}

.home-ind-2 .meta {
  font-size: 0.7rem;
  color: black;
  margin-top: 0 !important;
}

/* Imagen a ancho completo */
.home-ind-2 .right-column img {
  width: 100%;
  object-fit: cover;
  height: 27rem;
  border-radius: 0.4rem;
  height: 26rem !important;
}

.left-column .category {
  display: flex;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #009BD9;
  color: white !important;
  padding: 1px 18px 1px 18px;
  border-radius: 2rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
}