/* =====================================================
   MOBILE STYLES ONLY
   Loaded ONLY under 768px
   Desktop layout is completely untouched
   ===================================================== */

.hero,
.section,
.container {
  width: 100%;
}

.hero-content,
.row,
.columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

nav a {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  width: 100%;
}


/* ---- Mobile refinement (V2) ---- */
.hero {
  padding-top: 48px;
}

.hero h1 {
  font-size: 1.9rem;
}

.hero p {
  max-width: 100%;
}

.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.card {
  width: 100%;
}

nav {
  justify-content: flex-start;
}



/* ---- Mobile refinement V3 ---- */
.option-subtext {
  display: block;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .option-subtext {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .card, .option {
    padding: 20px;
  }
}
