/* Ski Touring Specific Styles */

/* Featured Custom Trip Section */
.featured-section {
  padding: 60px 0;
  background: white;
}

.featured-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
  border: 2px solid #e0e7ff;
}

.featured-icon {
  width: 80px;
  height: 80px;
  background: #13314f;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  flex-shrink: 0;
}

.featured-content {
  flex: 1;
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 24px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.featured-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #111827;
  margin-bottom: 12px;
}

.featured-description {
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}

.featured-benefits li {
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #13314f;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-benefits li i {
  font-size: 16px;
}

.featured-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #13314f;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  flex-shrink: 0;
}

.featured-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px;
  }

  .featured-icon {
    margin: 0 auto;
  }

  .featured-benefits {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .featured-button {
    width: 100%;
    justify-content: center;
  }
}
