/* KappNord shared styles */

.hero-section {
  background: linear-gradient(135deg, #002F6C 0%, #0a4a8f 60%, #BA0C2F 140%);
}

.flag-fi { text-decoration: underline; text-decoration-color: #002F6C; text-decoration-thickness: 3px; text-underline-offset: 4px; }
.flag-no { text-decoration: underline; text-decoration-color: #BA0C2F; text-decoration-thickness: 3px; text-underline-offset: 4px; }
.flag-se { text-decoration: underline; text-decoration-color: #FFC107; text-decoration-thickness: 3px; text-underline-offset: 4px; }

/* Trip cards on the home page */
.trip-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  height: 100%;
}
.trip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}
.trip-card .trip-img {
  height: 220px;
  object-fit: cover;
}
.badge-complete { background-color: #198754; }
.badge-upcoming { background-color: #FFC107; color: #212529; }

/* Itinerary day cards (Romania) */
.day-card { border-left: 0.3rem solid #BA0C2F; }
.day-tag {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #BA0C2F;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.day-stat { line-height: 1.1; }
.day-stat .num { font-size: 1.5rem; font-weight: 700; }
.day-stat .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: #6c757d; }
.route-line { font-style: italic; color: #495057; }
.overview-list { list-style: none; padding-left: 0; margin-bottom: 0; }
.overview-list li { padding: 0.3rem 0; }
@media (min-width: 768px) {
  .overview-list { column-count: 2; column-gap: 2.5rem; }
  .overview-list li { break-inside: avoid; }
}
