/* MineCo Studios homepage crawlable brand/content section */
.seo-intro-section {
  width: min(1080px, 92%);
  margin: 0 auto 88px;
  padding: 40px 42px;
  border: 1px solid rgba(3, 252, 240, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(3, 252, 240, 0.045), rgba(3, 252, 240, 0.012)),
    rgba(10, 12, 12, 0.86);
}

.seo-intro-section .section-kicker {
  margin: 0 0 10px;
  color: #03fcf0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-intro-section h2 {
  margin: 0 0 16px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.15;
}

.seo-intro-section h2 span {
  color: #03fcf0;
  text-shadow: 0 0 16px rgba(3, 252, 240, 0.22);
}

.seo-intro-section > p:not(.section-kicker) {
  max-width: 900px;
  margin: 0;
  color: #c9cfd0;
  font-size: 1rem;
  line-height: 1.75;
}

.seo-intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.seo-intro-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(3, 252, 240, 0.24);
  border-radius: 12px;
  color: #eefafa;
  text-decoration: none;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.seo-intro-links a:hover,
.seo-intro-links a:focus-visible {
  border-color: #03fcf0;
  background: rgba(3, 252, 240, 0.08);
  color: #03fcf0;
}

@media (max-width: 700px) {
  .seo-intro-section {
    width: min(94%, 680px);
    margin-bottom: 56px;
    padding: 28px 22px;
  }

  .seo-intro-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .seo-intro-links a {
    width: 100%;
  }
}
