/* WO-353 Featured Adventures — homepage carousel (Dude RV tokens) */
.fa-section {
  --fa-blue: #1e3a8a;
  --fa-blue-deep: #172554;
  --fa-red: #dc2626;
  --fa-amber: #f59e0b;
  --fa-slate: #475569;
  --fa-border: #e2e8f0;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}
.fa-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.fa-section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--fa-blue);
  letter-spacing: -0.02em;
}
.fa-section-head p {
  margin-top: 0.5rem;
  color: var(--fa-slate);
  font-weight: 500;
  font-size: 1.125rem;
}
.fa-rule {
  width: 6rem;
  height: 0.25rem;
  background: var(--fa-red);
  margin: 1rem auto 0;
  border-radius: 999px;
}
.fa-carousel {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}
.fa-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.fa-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.35s ease;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .fa-track { transition: none; }
}
.fa-card {
  flex: 0 0 100%;
  background: #fff;
  border: 1px solid var(--fa-border);
  border-radius: 1rem;
  box-shadow: 0 10px 25px -12px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (min-width: 640px) {
  .fa-card { flex-basis: calc(50% - 0.5rem); }
}
@media (min-width: 1024px) {
  .fa-card { flex-basis: calc(33.333% - 0.667rem); }
}
.fa-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  overflow: hidden;
}
.fa-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fa-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.fa-card-state {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b45309;
}
.fa-card-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--fa-blue-deep);
  line-height: 1.25;
}
.fa-card-teaser {
  font-size: 0.875rem;
  color: var(--fa-slate);
  line-height: 1.45;
  flex: 1;
}
.fa-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.fa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.55rem 0.85rem;
  border-radius: 0.65rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.fa-btn:focus-visible,
.fa-nav-btn:focus-visible,
.fa-view-all:focus-visible {
  outline: 3px solid var(--fa-amber);
  outline-offset: 2px;
}
.fa-btn-primary {
  background: var(--fa-red);
  color: #fff;
  border-color: #991b1b;
}
.fa-btn-primary:hover { background: #b91c1c; }
.fa-btn-secondary {
  background: #eff6ff;
  color: var(--fa-blue);
  border-color: #bfdbfe;
}
.fa-btn-secondary:hover { background: #dbeafe; }
.fa-nav-btn {
  flex: 0 0 auto;
  align-self: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 2px solid #bfdbfe;
  background: #fff;
  color: var(--fa-blue);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}
.fa-nav-btn:hover:not(:disabled) { background: #eff6ff; }
.fa-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.fa-footer {
  text-align: center;
  margin-top: 1.75rem;
}
.fa-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, #1e3a8a, #1d4ed8);
  padding: 0.85rem 1.4rem;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}
.fa-view-all:hover { filter: brightness(1.05); }
.fa-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.fa-empty {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border: 1px solid var(--fa-border);
  border-radius: 1rem;
}
.fa-empty a {
  color: var(--fa-blue);
  font-weight: 800;
}
/* noscript / pre-JS: show first cards as a simple grid */
.fa-fallback-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .fa-fallback-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .fa-fallback-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.fa-js .fa-fallback-grid { display: none; }
.fa-no-js .fa-carousel-controls { display: none; }

/* WO-360 Atlas selection sync */
.fa-btn-ghost {
  background: #fff;
  color: var(--fa-blue);
  border: 1px solid #cbd5e1;
}
.fa-btn-ghost:hover {
  background: #eff6ff;
}
.fa-card.is-atlas-selected {
  outline: 2px solid var(--fa-red);
  outline-offset: 2px;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.18);
}
