.itinerario-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0;
}

.itinerario-list {
  position: relative;
  padding-left: 15px;
}

.itinerario-list::before {
  content: " ";
  position: absolute;
  top: 23px;
  left: 0;
  width: 2px;
  height: 100%;
  background: #444;

  z-index: 1;
}

.itinerario-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border: 1px solid #eee;
  position: relative;
}

.itinerario-card::before {
  content: " ";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s;
}

.itinerario-card-header {
  width: 100%;
  display: flex;
  gap: 20px;
  padding: 20px;
}

.itinerario-card-header-thumbnail {
  width: 200px;
  height: 150px;
  overflow: hidden;
  border-radius: 20%;
}

.itinerario-card-header-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-col {
  flex: 0 0 200px;
}

.img-col img {
  width: 100%;
  border-radius: 8px;
}

.dia-label {
  color: #d35400;
  font-weight: bold;
}

.content-col {
  display: none;
  flex-direction: column;
  position: relative;
}

.itinerario-card-content {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.itinerario-card-content-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  z-index: 1;
}

.itinerario-card-content-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.itinerario-card-content-information {
  position: relative;
  padding: 40px;
  z-index: 2;
  margin-top: 50px;
}

.content-col h3 {
  margin: 5px 0;
}


.itinerario-desc p {
  margin-bottom: 1em;
}

/* Opcional: Si el RichText no genera etiquetas <p> y solo usa <br> */
.itinerario-desc {
  white-space: pre-line;
  word-wrap: break-word;
  line-height: 1.4;
}

.horario {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Estilos Editor */
.sashii-editor-container {
  padding: 20px;
  background: #f0f0f0;
}

.sashii-item-box {
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid #d35400;
}

.item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.sashii-item-box input,
.sashii-item-box textarea {
  width: 100%;
  margin-bottom: 10px;
}




.is-active {
  border: 1px solid #ccc;
  display: inline-flex;
}

.itinerario-card.is-active .itinerario-card-header {
  display: none;
}

.itinerario-card.is-active .content-col {
  display: flex;
}


.itinerario-active {
  display: inline-flex;
}






/* Estilos para el Frontend y el Editor
.itinerario-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  gap: 20px;
  font-family: sans-serif;
  margin-bottom: 20px;
  border: 1px solid #f0f0f0;
}

.itinerario-dia {
  color: #e67e22;
  font-weight: bold;
  font-size: 1.2rem;
  min-width: 60px;
}

.itinerario-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  color: #1a1a1a;
}

.itinerario-horario {
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.itinerario-desc {
  color: #666;
  line-height: 1.6;
  margin: 0;
}


.sashii-editor-container {
  background: #f9f9f9;
  padding: 15px;
  border: 2px dashed #ddd;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sashii-editor-container input,
.sashii-editor-container textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
} */