/* Keyword landing pages */

.landing-page__hero {
  margin-bottom: 1rem;
}

.landing-page__direct {
  margin: 0 0 1.75rem;
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(47, 111, 126, 0.18);
  background: rgba(238, 246, 244, 0.65);
}

.landing-page__direct .direct-answer__label,
.landing-page__direct h2 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: var(--sea-deep, #2f6f7e);
}

.landing-page__section {
  margin: 0 0 1.5rem;
  max-width: 48rem;
}

.landing-page__section h2 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
}

.landing-page__section p {
  margin: 0;
  line-height: 1.85;
}

.landing-page__tools,
.landing-page__answers,
.landing-page__faq,
.landing-page__sources {
  margin: 2rem 0 1.5rem;
}

.landing-page__tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.landing-page__tool-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(47, 111, 126, 0.2);
  background: #fff;
  color: var(--ink, #0c1c24);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.landing-page__tool-card:hover,
.landing-page__tool-card:focus-visible {
  background: rgba(47, 111, 126, 0.1);
  border-color: rgba(47, 111, 126, 0.4);
  color: var(--sea-deep, #2f6f7e);
}

.landing-page__answer-list {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.landing-page__answer-list a {
  display: block;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(12, 28, 36, 0.1);
  background: #fff;
  font-weight: 650;
}

.landing-page__answer-list a:hover {
  border-color: rgba(47, 111, 126, 0.35);
  background: rgba(47, 111, 126, 0.08);
}

.landing-page__footer-links {
  margin-top: 1.5rem;
}

.landing-page__index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.landing-page__index-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(12, 28, 36, 0.1);
  background: rgba(255, 253, 249, 0.95);
  text-decoration: none;
  color: inherit;
  min-height: 11rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.landing-page__index-card:hover {
  border-color: rgba(47, 111, 126, 0.35);
  background: rgba(238, 246, 244, 0.55);
}

.landing-page__index-card h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.landing-page__index-card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted, #5c6b73);
  line-height: 1.7;
}
