/* ── Hero ─────────────────────────────────────────────────────────────────── */

.stories-hero {
  background: #fff;
  padding: 80px 2.5rem 64px;
  max-width: 720px;
}

.stories-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4d9090;
  margin-bottom: 16px;
}

.stories-heading {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #111;
  line-height: 1.2;
  margin-bottom: 16px;
}

.stories-subtext {
  font-size: 1rem;
  color: #666;
  line-height: 1.65;
  max-width: 520px;
}

/* ── Grid ─────────────────────────────────────────────────────────────────── */

.stories-grid-section {
  background: #ede9e3;
  padding: 64px 2.5rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.story-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #e0dbd3;
}

.story-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-name {
  font-weight: 700;
  font-size: 1rem;
  color: #111;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.story-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f0ede8;
  color: #555;
  font-weight: 500;
}

.story-tag.visa {
  background: #e8f2f2;
  color: #4d9090;
}

.story-quote {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
}

/* ── Submit form ──────────────────────────────────────────────────────────── */

.stories-submit {
  background: #0d2137;
  padding: 80px 2.5rem;
}

.stories-submit-inner {
  max-width: 640px;
  margin: 0 auto;
}

.stories-submit .stories-label {
  color: #4d9090;
}

.stories-submit-heading {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #f0f0f0;
  line-height: 1.2;
  margin-bottom: 12px;
}

.stories-submit-sub {
  font-size: 0.95rem;
  color: #8a9bb0;
  line-height: 1.65;
  margin-bottom: 40px;
}

.stories-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a9bb0;
}

.form-label-hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #5a6e82;
}

.form-input {
  padding: 13px 16px;
  background: #0f2a40;
  border: 1.5px solid #1e3a52;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #f0f0f0;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}

.form-input::placeholder { color: #4a6070; }
.form-input:focus { border-color: #4d9090; }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a6070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-select option { background: #0f2a40; color: #f0f0f0; }

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  align-self: flex-start;
  background: #4d9090;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.form-submit:hover { background: #3d7878; }
.form-submit:disabled { cursor: default; }

/* ── Navbar active state for this page ───────────────────────────────────── */

.share-journey.active {
  color: #4d9090;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .stories-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stories-hero { padding: 48px 1.5rem 40px; }
  .stories-grid-section { padding: 48px 1.5rem; }
  .stories-submit { padding: 56px 1.5rem; }
}
