.fellowship-landing {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 40%, var(--bg3) 75%, var(--bg4) 100%);
}

.fellowship-landing-shell {
  width: min(720px, 100%);
  margin: 0 auto;
}

.fellowship-landing-card {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 32px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.fellowship-landing-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.fellowship-landing-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.fellowship-landing-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: contain;
}

.fellowship-landing-kicker {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.fellowship-landing-title {
  margin: 0;
  font-size: clamp(1.55rem, 4.5vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
}

.fellowship-landing-lang {
  flex-shrink: 0;
}

.fellowship-landing-lang .site-language-fallback {
  position: static;
  margin: 0;
}

.fellowship-landing-body p {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.fellowship-landing-body p:last-child {
  margin-bottom: 0;
}

.fellowship-landing-link {
  color: #fff;
  font-weight: 700;
  text-underline-offset: 2px;
}

.fellowship-landing-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 18px;
}

.fellowship-landing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.fellowship-landing-btn:hover,
.fellowship-landing-btn:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.fellowship-landing-btn--primary {
  background: rgba(255, 255, 255, 0.28);
}

.fellowship-landing-footnote {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 560px) {
  .fellowship-landing-header {
    flex-direction: column;
    align-items: stretch;
  }

  .fellowship-landing-lang {
    display: flex;
    justify-content: flex-end;
  }

  .fellowship-landing-actions {
    grid-template-columns: 1fr;
  }
}
