/* Scribbled Fox — Star Sign Finder (2026-07-05). Scoped to .sf-sign-finder. */
.sf-sign-finder {
  max-width: 620px;
  margin: 0 auto;
  padding: 26px 26px 22px;
  background: linear-gradient(150deg, #0E1428 0%, #1B2749 100%);
  border: 1px solid rgba(201, 162, 75, 0.45);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(14, 20, 40, 0.35);
  text-align: center;
}
.sf-finder__form { margin: 0; }
.sf-finder__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
}
.sf-finder__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.sf-finder__label {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #E8C87E;
}
.sf-finder__select {
  min-width: 140px;
  padding: 12px 14px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: #23222B;
  background: #F5EEE1;
  border: 1px solid #C9A24B;
  border-radius: 6px;
  cursor: pointer;
}
.sf-finder__select:focus-visible {
  outline: 2px solid #E8C87E;
  outline-offset: 2px;
}
.sf-finder__button {
  padding: 13px 26px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0E1428;
  -webkit-text-fill-color: #0E1428;
  background: #C9A24B;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.sf-finder__button:hover { background: #E8C87E; }
.sf-finder__button:focus-visible { outline: 2px solid #E8C87E; outline-offset: 2px; }
.sf-finder__note {
  margin: 14px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 238, 225, 0.7);
}
.sf-finder__result {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 162, 75, 0.3);
}
.sf-finder__result[hidden] { display: none; }
.sf-finder__glyph {
  font-size: 40px;
  line-height: 1;
  color: #E8C87E;
}
.sf-finder__sign {
  margin: 8px 0 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  color: #F5EEE1;
}
.sf-finder__dates {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  letter-spacing: 0.6px;
  color: rgba(245, 238, 225, 0.7);
}
.sf-finder__cta {
  display: inline-block;
  margin-top: 16px;
  padding: 13px 28px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0E1428 !important;
  -webkit-text-fill-color: #0E1428;
  background: #C9A24B;
  border-radius: 3px;
  text-decoration: none;
}
.sf-finder__cta:hover { background: #E8C87E; color: #0E1428 !important; }
.sf-finder__reveal { animation: sf-finder-in 0.45s ease; }
@keyframes sf-finder-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .sf-finder__reveal { animation: none; } }
@media (max-width: 560px) {
  .sf-finder__fields { flex-direction: column; align-items: stretch; }
  .sf-finder__select, .sf-finder__button { width: 100%; }
}
