.calfest_container {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f8fc;
  padding: 20px;
  max-width: 700px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.calfest_title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
}

.calfest_today {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
  font-style: italic;
}

.calfest_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calfest_item {
  display: flex;
  align-items: center;
  background: white;
  border-left: 5px solid #0647A3;
	border-right: 5px solid #0647A3;
	border-top: 5px solid #0647A3;
	border-bottom: 5px solid #0647A3;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.calfest_item:nth-child(2) {
  border-left-color: #1890ff;
}
.calfest_item:nth-child(3) {
  border-left-color: #00b894;
}


.calfest_item-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 10px;
}

.calfest_item-link:hover .calfest_item {
  background-color: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Quitar subrayado de texto dentro del enlace cuando se hace hover */
.calfest_item-link:hover .calfest_name,
.calfest_item-link:hover .calfest_date {
  text-decoration: none;
}



.calfest_info {
  flex-grow: 1;
}

.calfest_name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 6px;
  color: #222;
}

.calfest_date {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 8px;
}

.calfest_tag {
  display: inline-block;
  background-color: #e92b03;
  color: white;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: bold;
}

.calfest_img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-left: 15px;
}

/* Responsive */
@media (max-width: 600px) {
  .calfest_item {
    flex-direction: column;
    align-items: flex-start;
  }
  .calfest_img {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    height: auto;
  }
}

/* Evita que el texto se subraye al hacer hover sobre el enlace completo */
.calfest_item-link {
  text-decoration: none !important;
  color: inherit !important;
}

.calfest_item-link:hover,
.calfest_item-link:visited,
.calfest_item-link:focus,
.calfest_item-link:active {
  text-decoration: none !important;
  color: inherit !important;
}

/* Además, apuntamos a los elementos internos explícitamente */
.calfest_item-link .calfest_name,
.calfest_item-link .calfest_date {
  text-decoration: none !important;
}
