/* Beach front door — Best Picks strip + Pick Your Beach list rows
   (doctrine §6 design pass). Mood gradients stand in for per-beach photos
   until Nick supplies them (founder-shot > stock) — the layout is photo-ready:
   set a background-image on .bpick / .brow-thumb and the text still reads. */

.cards-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Gold like the Share pill — the one action pill that should pull the eye
   (Nick's call). Flips to green once sorted: gold = act, green = done. */
.cards-near {
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 196, 0, 0.45);
  background: rgba(255, 196, 0, 0.1);
  color: #ffc400;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.cards-near:hover:not(:disabled) {
  background: rgba(255, 196, 0, 0.2);
  border-color: rgba(255, 196, 0, 0.7);
}
.cards-near:disabled {
  color: #34D399;
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.08);
  cursor: default;
}

/* Shared mood gradients (photo placeholders) */
.mood-gulf { background: linear-gradient(150deg, rgba(18, 51, 80, 0.85), rgba(14, 94, 99, 0.45) 60%, var(--panel-3)); }
.mood-bay  { background: linear-gradient(150deg, rgba(18, 51, 80, 0.85), rgba(22, 116, 95, 0.45) 60%, var(--panel-3)); }

/* ---- Best Picks strip: role-badge photo cards ---- */
.bpick-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 760px) { .bpick-strip { grid-template-columns: repeat(4, 1fr); } }

.bpick {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  text-decoration: none;
  color: var(--text);
  background-size: cover;
  background-position: center;
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.bpick:hover, .bpick:focus-visible { transform: translateY(-2px); border-color: #27C3A5; outline: none; }

.bpick-badge {
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #ffc400;
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid rgba(255, 196, 0, 0.4);
  border-radius: 999px;
  padding: 3px 9px;
}
.bpick-body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.bpick-body strong { font-size: 0.92rem; line-height: 1.25; }
.bpick-line { font-size: 0.72rem; line-height: 1.4; color: #C6D6E3; }
.bpick-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 700;
}
.bpick-cam { color: var(--muted); }

/* ---- Pick Your Beach: compact list rows ---- */
.brow-list { display: flex; flex-direction: column; gap: 9px; margin-top: 12px; }

.brow {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 13px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.brow:hover, .brow:focus-visible { transform: translateY(-1px); border-color: #27C3A5; outline: none; }

/* Monogram thumb — becomes the photo slot */
.brow-thumb {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: rgba(231, 240, 247, 0.85);
  background: linear-gradient(150deg, rgba(39, 195, 165, 0.28), rgba(18, 51, 80, 0.8));
  border: 1px solid var(--border-soft);
  background-size: cover;
  background-position: center;
}

.brow-body { flex: 1; min-width: 0; }
.brow-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.brow-head strong { font-size: 0.96rem; line-height: 1.2; }
.brow-role {
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffc400;
  background: rgba(255, 196, 0, 0.1);
  border: 1px solid rgba(255, 196, 0, 0.35);
  border-radius: 999px;
  padding: 2px 7px;
  white-space: nowrap;
}
.brow-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 2px;
  font-size: 0.66rem;
  color: var(--muted);
}
.brow-tag {
  padding: 1px 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 30, 44, 0.5);
  font-size: 0.62rem;
}
.brow-insight {
  margin: 5px 0 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #C6D6E3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brow-side {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.66rem;
  font-weight: 700;
}
.brow-cam { color: var(--muted); }
.bcard-dist { color: #34D399; }
.brow-chev { color: var(--muted); font-size: 1.2rem; line-height: 1; }

@media (max-width: 480px) {
  .brow-insight { -webkit-line-clamp: 1; }
}
