/* Featured card — patrón App Store Today (base compartida: parques + clases hub) */
.bb-feature-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  border-radius: var(--bb-radius-lg);
  background: var(--bb-color-bg);
  box-shadow:
    0 0 0 1px rgba(245, 245, 245, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.bb-feature-card--featured {
  box-shadow:
    0 0 0 1px rgba(191, 26, 36, 0.28),
    0 20px 48px rgba(0, 0, 0, 0.45);
}

.bb-feature-card__hero {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bb-color-surface-2);
}

.bb-feature-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.bb-feature-card__image--placeholder {
  background:
    linear-gradient(145deg, var(--bb-color-surface-3), var(--bb-color-surface-1));
}

.bb-feature-card__hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0) 35%,
    rgba(14, 14, 14, 0.55) 68%,
    var(--bb-color-bg) 100%
  );
  pointer-events: none;
}

.bb-feature-card__body {
  padding: var(--bb-space-3) var(--bb-space-3) var(--bb-space-1);
}

.bb-feature-card__eyebrow {
  margin: 0 0 var(--bb-space-eyebrow-title);
  color: var(--bb-color-text-secondary);
  font-family: var(--bb-font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bb-feature-card__title {
  margin: 0;
  width: 100%;
  max-width: none;
  font-family: var(--bb-font-heading);
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--bb-color-text-primary);
}

.bb-feature-card__footer {
  display: flex;
  align-items: center;
  gap: var(--bb-space-2);
  padding: var(--bb-space-1) var(--bb-space-3) var(--bb-space-3);
  margin-top: auto;
}

.bb-feature-card__app {
  display: flex;
  align-items: center;
  gap: var(--bb-space-2);
  min-width: 0;
  flex: 1;
}

.bb-feature-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  background: var(--bb-color-surface-2);
  box-shadow:
    0 0 0 1px rgba(245, 245, 245, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.35);
}

.bb-feature-card__icon--mobile,
.bb-feature-card__icon--location {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bb-color-text-primary);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--bb-color-surface-2);
}

.bb-feature-card__icon--mobile svg,
.bb-feature-card__icon--location svg {
  width: 24px;
  height: 24px;
}

.bb-feature-card__icon--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bb-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bb-color-text-primary);
}

.bb-feature-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bb-feature-card__meta-label {
  color: var(--bb-color-text-secondary);
  font-size: 0.6875rem;
  line-height: 1.3;
}

.bb-feature-card__meta-title {
  color: var(--bb-color-text-primary);
  font-family: var(--bb-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bb-feature-card__meta-subtitle {
  color: var(--bb-color-text-secondary);
  font-size: 0.8125rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bb-feature-card__meta-subtitle--solo {
  color: var(--bb-color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.45;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.bb-feature-card__cta.bb-cta--store {
  flex-shrink: 0;
  min-height: 32px;
  min-width: 72px;
  padding: 0 var(--bb-space-3);
  border-radius: var(--bb-radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.bb-feature-card__cta.bb-cta--store.bb-cta--glass-neutral {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--bb-color-surface-2);
  border: 1px solid rgba(245, 245, 245, 0.14);
  color: var(--bb-color-text-primary);
}

.bb-feature-card__cta.bb-cta--store.bb-cta--glass-neutral:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    var(--bb-color-surface-2);
  border-color: rgba(245, 245, 245, 0.22);
  color: var(--bb-color-text-primary);
}

@media (min-width: 768px) {
  .bb-feature-card__hero {
    aspect-ratio: 16 / 9;
  }

  .bb-feature-card__body {
    padding: var(--bb-space-3) var(--bb-space-4) var(--bb-space-1);
  }

  .bb-feature-card__footer {
    padding: var(--bb-space-1) var(--bb-space-4) var(--bb-space-4);
  }
}
