/* ---------- Lifestyle / creators pages (shared by every country) ---------- */

/* Start-here row */
.ls-start { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 20px; margin-top: 28px; }
.ls-pick { background: var(--white); border: 1px solid rgba(2,28,63,.08); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; position: relative; transition: transform var(--transition-normal), box-shadow var(--transition-normal); }
.ls-pick::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); z-index: 2; }
.ls-pick:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.ls-pick-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ls-pick .ls-why { font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--navy-600); margin-bottom: 10px; }
.ls-pick h3 { font-size: 22px; margin-bottom: 8px; }
.ls-pick h3 a { color: inherit; text-decoration: none; }
.ls-pick h3 a:hover { color: var(--red); }
.ls-pick p { font-size: 15.5px; line-height: 1.55; color: var(--navy-700); margin-bottom: 16px; flex: 1; }
.ls-pick .ls-go { font-family: var(--sans); font-weight: 700; font-size: 15px; color: var(--red); text-decoration: none; }
.ls-pick .cr-media { border-radius: 0; }

/* Filter bar */
.ls-filters { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid rgba(2,28,63,.08); border-bottom: 1px solid rgba(2,28,63,.08); padding: 14px 0; margin: 0 0 8px; }
.ls-filters .wrap { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; }
.ls-filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ls-filter-group .label { margin-right: 6px; font-size: 12px; }
.ls-chip { font-family: var(--sans); font-size: 15px; font-weight: 600; padding: 9px 16px; min-height: 44px; border-radius: var(--radius-pill); border: 2px solid var(--navy); background: var(--white); color: var(--navy); cursor: pointer; line-height: 1.2; }
.ls-chip.on { background: var(--navy); color: var(--white); }
.ls-chip:hover:not(.on) { background: var(--sand); }
.ls-count { font-family: var(--sans); font-size: 14px; color: var(--navy-600); margin-left: auto; white-space: nowrap; }

/* Group sections */
.ls-group { padding: 56px 0 24px; }
.ls-group.section-sand { padding: 56px 0 40px; }
.ls-group h2 { margin: 8px 0 8px; }
.ls-group .ls-group-lede { max-width: 720px; color: var(--navy-700); margin-bottom: 28px; font-size: 18px; }
.ls-group[hidden] { display: none; }

/* Creator cards */
.cr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.cr-card { background: var(--white); border: 1px solid rgba(2,28,63,.08); border-radius: var(--radius-lg); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal); }
.cr-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--navy); opacity: .12; z-index: 2; }
.cr-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: rgba(163,39,44,.25); }
.cr-card[hidden] { display: none; }
.cr-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.cr-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; }
.cr-platform { font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; background: var(--navy); color: var(--white); }
.cr-card[data-platform="instagram"] .cr-platform, .cr-card[data-platform="tiktok"] .cr-platform { background: var(--navy-700); }
.cr-card[data-platform="podcast"] .cr-platform { background: var(--navy-800); }
.cr-card[data-platform="blog"] .cr-platform, .cr-card[data-platform="community"] .cr-platform { background: var(--white); color: var(--navy); border: 1.5px solid var(--navy); }
.cr-size { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--navy-600); text-align: right; }
.cr-card h3 { font-size: 20px; margin-bottom: 6px; line-height: 1.25; }
.cr-card h3 a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
.cr-card h3 a:hover { color: var(--red); }
.cr-who { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--navy-700); margin-bottom: 10px; line-height: 1.45; }
.cr-themes { font-size: 15.5px; line-height: 1.55; color: var(--navy-700); margin-bottom: 16px; flex: 1; }
.cr-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; border-top: 1px solid rgba(2,28,63,.08); padding-top: 12px; }
.cr-region { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-500); }
.cr-go { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--red); white-space: nowrap; text-decoration: none; }
.cr-go:hover { text-decoration: underline; }
.cr-card.cr-sister { border-color: rgba(163,39,44,.35); }
.cr-card.cr-sister::before { background: var(--red); opacity: .7; }

/* Media facades: the creator's own thumbnail, then the official embed on click */
.cr-media { position: relative; background: var(--navy); aspect-ratio: 16 / 9; overflow: hidden; }
.cr-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.cr-play { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border-radius: 50%; border: none; background: var(--red); cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,.35); transition: transform var(--transition-fast), background var(--transition-fast); }
.cr-play:hover { transform: scale(1.08); background: #8f1f24; }
.cr-play-tri { display: block; width: 0; height: 0; margin: 0 auto; border-style: solid; border-width: 11px 0 11px 20px; border-color: transparent transparent transparent var(--white); transform: translateX(3px); }
.cr-media-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 10px; font-family: var(--sans); font-size: 12.5px; font-weight: 600; color: var(--white); background: linear-gradient(to top, rgba(2,28,63,.85), rgba(2,28,63,0)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cr-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.cr-media.is-loaded { aspect-ratio: auto; min-height: 220px; background: var(--sand); }
.cr-media.cr-media-yt.is-loaded { aspect-ratio: 16 / 9; min-height: 0; }
.cr-media-ig, .cr-media-tt, .cr-media-pod { aspect-ratio: 16 / 7; background: var(--navy); }
.cr-load { width: 100%; height: 100%; border: none; background: transparent; color: var(--white); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 16px; font-family: var(--sans); }
.cr-load-handle { font-family: var(--display, var(--serif)); font-size: 24px; font-weight: 700; letter-spacing: -.01em; }
.cr-load-txt { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red-tint); }
.cr-load:hover .cr-load-txt { color: var(--white); text-decoration: underline; }
.cr-media.is-loaded .cr-load { display: none; }
.cr-media.is-loaded blockquote, .cr-media.is-loaded .instagram-media, .cr-media.is-loaded .tiktok-embed { margin: 0 auto !important; max-width: 100% !important; min-width: 0 !important; }
.cr-media-pod iframe { height: 450px; }
.cr-media.cr-media-pod.is-loaded { min-height: 450px; }

/* Empty state, method note */
.ls-empty { display: none; padding: 40px 0 60px; text-align: center; color: var(--navy-600); }
.ls-empty.show { display: block; }
.ls-method { max-width: 760px; font-size: 15.5px; color: var(--navy-700); line-height: 1.6; }
.ls-method p { margin-bottom: 12px; }

@media (max-width: 640px) {
  .ls-filters { position: static; }
  .ls-chip { font-size: 14px; padding: 8px 13px; }
  .ls-count { margin-left: 0; width: 100%; }
  .cr-grid { grid-template-columns: 1fr; }
}
