<style>
/* TRANSPORTE COOL OFF 2026 */

.tc-transport {
  width: 100%;
}

.tc-transport__inner {
  display: flex;
  flex-wrap: wrap;
}

/* -- Contenido -- */
.tc-transport__content {
  width: 100%;
  padding: 40px 24px;
  text-align: center;
  box-sizing: border-box;
  order: 2;
}

/* Titulo y subtitulo: DIN bold, blanco */
.tc-transport__title {
  font-family: 'DIN bold', 'DIN', sans-serif;
  font-size: 35px;
  color: #fff !important;
  margin: 0;
  line-height: 1.1;
}

.tc-transport__badge {
  font-family: 'DIN bold', 'DIN', sans-serif;
  font-size: 35px;
  color: #fff !important;
  margin: 0 0 16px;
}

/* Descripcion: DIN book, negro */
.tc-transport__desc,
.tc-transport__desc p {
  font-family: 'DIN book', 'DIN', sans-serif;
  color: #222;
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Titulo salidas */
.tc-transport__dep-title {
  font-family: 'DIN book', 'DIN', sans-serif;
  font-weight: 700;
  color: #222;
  font-size: 1.15em;
  margin: 0 0 6px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Cada casa */
.tc-transport__dep {
  margin-bottom: 2px;
}

/* Nombre casa + fechas (una linea) */
.tc-transport__dep-name {
  font-family: 'DIN bold', 'DIN', sans-serif;
  font-weight: 700;
  color: #222;
  margin: 0;
  font-size: 1em;
  line-height: 1.2;
}

/* Rutas */
.tc-transport__dep-route {
  font-family: 'DIN book', 'DIN', sans-serif;
  color: #222;
  margin: 0;
  font-size: 0.9em;
  line-height: 1.2;
}

/* Boton: usa clase rr_cta nativa, solo ajusto margen */
.tc-transport__btn-wrap {
  margin-top: 20px;
}

/* -- Imagen -- */
.tc-transport__media {
  width: 100%;
  line-height: 0;
  min-height: 250px;
  order: 1;
}

.tc-transport__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* DESKTOP */
@media (min-width: 768px) {
  .tc-transport__inner {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .tc-transport__content {
    width: 50%;
    padding: 60px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
  }

  .tc-transport__title {
    font-size: 60px;
  }

  .tc-transport__badge {
    font-size: 60px;
  }

  .tc-transport__media {
    width: 50%;
    position: relative;
    overflow: hidden;
    order: 2;
  }

  .tc-transport__media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 1280px) {
  .tc-transport__content {
    padding: 80px 70px;
  }
}
</style>