/* --- Fuentes --- */
.page-header-blog h1,
.destination-article h2,
.destination-spot-card .card-title,
.sidebar-card .card-header h5,
.gastronomy-grid h4 {
  font-family: "Montserrat", sans-serif;
}

/* --- Encabezado de Página (Hero) --- */
.page-header-blog {
  /* Placeholder evocando comida peruana */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://placehold.co/1920x1080/FF6347/FFFFFF?text=Platos+Peruanos");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.page-header-blog h1 {
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* --- Contenido Principal (Artículo) --- */
.destination-article h2 {
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 10px;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.destination-article h2 i {
  color: #ff6347;
  /* Rojo Tomate */
}

.destination-article h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6347;
  bottom: 0;
  left: 0;
}

.destination-article h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #34495e;
  margin-top: 1.5rem;
}

/* --- Estructura: Tarjeta de Plato --- */
/* Usamos la misma clase que las guías de destino */
.destination-spot-card {
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.destination-spot-card .card-title {
  font-weight: 700;
  color: #34495e;
}

/* --- *** SOLUCIÓN AL SIDEBAR *** --- */
.sidebar-sticky-wrapper {
  position: sticky;
  top: 80px;
  /* 56px (navbar) + 24px (margen) */
  z-index: 1019;
  /* Menor que el z-index 1020 del navbar */
}

/* Estilos del Sidebar */
.sidebar-card {
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-card .card-header {
  background-color: #ff6347;
  /* Rojo Tomate */
  color: white;
  border-radius: 0.5rem 0.5rem 0 0 !important;
  border: 0;
}

.sidebar-card .card-header h5 {
  font-weight: 700;
  margin-bottom: 0;
}

.sidebar-card .card-header i {
  font-size: 1.5rem;
  vertical-align: middle;
}

/* Lista de Consejos (Sidebar) */
.list-styled-check {
  list-style: none;
  padding-left: 0;
}

.list-styled-check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.list-styled-check li::before {
  content: "\F26E";
  /* Icono check-circle-fill */
  font-family: "bootstrap-icons" !important;
  font-size: 1.1rem;
  color: #198754;
  position: absolute;
  left: 0;
  top: 0;
}
