/* === Landers Showcase === */
.landers-module {
  margin: clamp(1.5rem, 4vw, 3.5rem) auto;
  padding: clamp(1.8rem, 4vw, 3.25rem);
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(255, 250, 244, 0.95));
  box-shadow: 0 40px 80px rgba(18, 30, 52, 0.14);
  position: relative;
  overflow: hidden;
}

.landers-module::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -15%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 137, 50, 0.18), transparent 60%);
  filter: blur(0px);
  pointer-events: none;
}

.landers-module .text--large {
  color: #132339;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  position: relative;
  z-index: 1;
}

.landers-module .text--large + .text--large {
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  color: rgba(31, 47, 67, 0.78);
  font-weight: 500;
  margin-top: -0.5rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.1rem);
}

.lander-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.lander-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 252, 0.98) 100%);
  border-radius: 22px;
  border: 1px solid rgba(17, 43, 78, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65), 0 20px 45px rgba(15, 33, 61, 0.12);
  overflow: hidden;
  color: #1f2f43;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lander-card:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(241, 137, 50, 0.85), 0 26px 55px rgba(241, 137, 50, 0.26);
  transform: translateY(-8px);
}

.lander-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: inset 0 0 0 2px rgba(241, 137, 50, 0.65), 0 32px 65px rgba(15, 33, 61, 0.18);
  color: #f18932;
}

.lander-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lander-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 37, 58, 0) 50%, rgba(12, 37, 58, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lander-card:hover .lander-image-wrapper::after,
.lander-card:focus-visible .lander-image-wrapper::after {
  opacity: 1;
}

.lander-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.lander-card:hover .lander-image-wrapper img,
.lander-card:focus-visible .lander-image-wrapper img {
  transform: scale(1.06);
}

.lander-name {
  display: block;
  padding: clamp(0.85rem, 2vw, 1.2rem) clamp(1rem, 2.2vw, 1.35rem);
  font-size: clamp(0.95rem, 1.9vw, 1.08rem);
  font-weight: 600;
  text-align: center;
  color: inherit;
}

@media (max-width: 640px) {
  .landers-module {
    border-radius: 22px;
    margin: clamp(1rem, 4vw, 2rem);
    padding: clamp(1.25rem, 5vw, 2.1rem);
  }

  .lander-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
