/* /dog-assistant/assets/app.css
   Light / white ClientSlot-style theme
*/

:root{
  /* Brand-ish accent (tweak to match your ClientSlot exact) */
  --accent: #1f7cff;
  --accent2: #36b6ff;

  /* Light UI tokens */
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #0f172a;     /* slate-900 */
  --muted: #64748b;    /* slate-500 */
  --line: #e5e7eb;     /* gray-200 */
  --shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  --shadow2: 0 6px 14px rgba(15, 23, 42, 0.07);

  --good: #16a34a;
  --bad: #dc2626;
  --warn: #d97706;

  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{
  margin:0; padding:0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Arial,sans-serif;
}

a{ color: var(--accent); text-decoration:none; }
a:hover{ text-decoration: underline; }

.small{ font-size: 13px; color: var(--muted); }
.hint{ font-size: 12px; color: var(--muted); margin-top:6px; }

.app{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 16px 28px;
}

h2,h3{
  margin: 0 0 10px 0;
  font-size: 17px;
  line-height: 1.08;
  letter-spacing: -0.8px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
p{
margin: 0 0 14px 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}
ul li {
  padding: 6px 0;
  line-height: 1.5;
  position: relative;
  color: #333;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;

  padding: 14px 16px;

  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);

  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 16px 28px;
}


.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width: 200px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo img{
  width: 100%;
  height: 100%;
 
}

.title{ font-weight: 800; letter-spacing: -0.2px; }
.subtitle{ color: var(--muted); font-size: 13px; margin-top:2px; }

/* Layout grid */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.card.full{ grid-column: 1 / -1; }

@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr; }
}

/* Card */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.card h2{
  margin:0 0 10px 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.card h3{
  margin: 0 0 10px 0;
  font-size: 15px;
  letter-spacing: -0.1px;
}

.divider{
  height:1px;
  background: var(--line);
  margin: 14px 0;
}

/* Form */
.field{ display:flex; flex-direction:column; gap:6px; width:100%; }
label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}
input, select, textarea{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 14px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease, transform .05s ease;
}
textarea{ resize: vertical; }

input:focus, select:focus, textarea:focus{
  border-color: rgba(47,124,255,.55);
  box-shadow: 0 0 0 4px rgba(47,124,255,.12);
}

.row{
  display:flex;
  gap: 12px;
  align-items: end;
}
.row .field{ flex: 1; }

@media (max-width: 720px){
  .row{ flex-direction: column; align-items: stretch; }
}

/* Toggle */
.field.inline{ align-items:flex-start; }
.toggle{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  height: 43px;
}
.toggle input{ width: 18px; height: 18px; }
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 12px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  font-weight: 700;
  cursor:pointer;
  transition: transform .05s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  box-shadow: 0 8px 18px rgba(15,23,42,.08);
  border-color: rgba(47,124,255,.25);
}
.btn:active{ transform: translateY(1px); }
.btn:disabled{ opacity:.6; cursor:not-allowed; }

.btn-primary{
  border-color: rgba(47,124,255,.35);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 12px 24px rgba(47,124,255,.18);
}
.btn-primary:hover{
  border-color: rgba(47,124,255,.55);
  box-shadow: 0 16px 30px rgba(47,124,255,.20);
}
.btn-ghost{
  background: #fff;
  color: var(--muted);
}

/* Status */
.status{
  font-size: 13px;
  color: var(--muted);
  padding-top: 8px;
}

/* Lists */
.list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:10px;
}

.dog{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 6px 14px rgba(15,23,42,.04);
}

/* Breed dropdown */
.dropdown{
  position: relative;
  margin-top: 8px;
  border-radius: 14px;
  overflow:hidden;
}
.dropdown .item{
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  cursor:pointer;
}
.dropdown .item:first-child{ border-top: 1px solid var(--line); }
.dropdown .item:hover{
  background: rgba(47,124,255,.06);
}

/* Issues */
.issues{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.issue{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border: 1px solid var(--line);
  background:#fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 6px 14px rgba(15,23,42,.04);
}
.issue input{
  margin-top: 3px;
  width: 18px; height: 18px;
}
.issue .meta .t{ font-weight: 800; }
.issue .meta .d{ font-size: 12px; color: var(--muted); margin-top: 3px; }
.badge{
  margin-left:auto;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}
.badge.low{ border-color: rgba(22,163,74,.25); background: rgba(22,163,74,.06); color: #166534; }
.badge.medium{ border-color: rgba(217,119,6,.25); background: rgba(217,119,6,.07); color: #92400e; }
.badge.high{ border-color: rgba(220,38,38,.25); background: rgba(220,38,38,.06); color: #991b1b; }

/* Plan view */
.plan{
  margin-top: 10px;
}

/* Pretty plan renderer styles */
.planPretty .planTop{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.planTitle{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}
.planSection{ margin-top: 14px; }
.planSection h3{
  margin: 0 0 8px 0;
  font-size: 14px;
  color: var(--text);
}

.bullets{
  margin: 8px 0 0 18px;
  color: var(--text);
}
.cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.miniCard{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
}
.miniTitle{ font-weight: 850; margin-bottom: 6px; }

.daysGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.dayCard{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
}
.dayTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 8px;
}
.dayNo{ font-weight: 900; }
.exercise{ margin-top: 10px; }
.exName{ font-weight: 850; margin-bottom: 6px; }

.planRaw pre{
  margin-top: 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  overflow:auto;
  box-shadow: 0 8px 18px rgba(15,23,42,.04);
}

@media (max-width: 980px){
  .daysGrid, .cards{ grid-template-columns: 1fr; }
}

/* Check-in */
.checkin{
  margin-top: 10px;
}

/* Make pre blocks readable */
pre{
  margin:0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 12px;
  color: var(--text);
}
/* Landing */
.landing{ margin-top: 14px; display:flex; flex-direction:column; gap:14px; }

.hero{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,1));
  box-shadow: var(--shadow);
  padding: 18px;
  overflow:hidden;
}
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
}

.heroTag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 10px;
}
.heroH1{
  margin: 0 0 10px 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.8px;
}
.accentText{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.heroP{
  margin: 0 0 14px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.heroActions{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 14px; }

.trustRow{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 980px){
  .trustRow{ grid-template-columns: 1fr; }
}
.trustItem{
  display:flex;
  gap:10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 10px 12px;
}
.trustIcon{
  width: 28px; height: 28px;
  border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(47,124,255,.10);
  color: var(--accent);
  font-weight: 900;
}
.trustTitle{ font-weight: 850; }

/* Hero visual */
.heroVisual{
  position: relative;
  min-height: 320px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
  overflow:hidden;
}
.dogBlob{
  position:absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(54,182,255,.25), rgba(47,124,255,.10), rgba(255,255,255,0));
}
.heroCard{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  padding: 14px;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}
.heroCardTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom: 10px;
}
.heroMiniTitle{ font-weight: 900; letter-spacing: -0.2px; }
.heroCardRow{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom: 10px; }
.heroChip{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 700;
}
.heroLine{ margin-top: 8px; font-size: 13px; color: var(--text); }
.heroCardFooter{ margin-top: 10px; }

/* Landing sections */
.landingGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .landingGrid{ grid-template-columns: 1fr; }
}
.landingCard{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.landingNum{
  width: 28px; height: 28px;
  border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(47,124,255,.10);
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 10px;
}

.landingStrip{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(47,124,255,.08), rgba(54,182,255,.05), rgba(255,255,255,1));
  box-shadow: var(--shadow);
  padding: 16px;
}
.landingStripInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.stripTitle{ font-weight: 900; letter-spacing: -0.2px; margin-bottom: 4px; }

.landingFaq{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .landingFaq{ grid-template-columns: 1fr; }
}
.dogPlans{ margin-top:10px; }
.dogPlansTitle{ font-weight:900; font-size:13px; margin-bottom:6px; color: var(--text); }
.dogPlanRow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:14px;
  margin-top:8px;
  background:#fff;
}
.dogPlanRow.resolved{
  opacity:.75;
}
.dogPlanActions{ display:flex; gap:8px; align-items:center; }

.linkBtn{
  border:none;
  background:transparent;
  padding:0;
  cursor:pointer;
  text-align:left;
  font-weight:800;
  color: var(--accent);
}
.linkBtn:hover{ text-decoration: underline; }

.btn-sm{
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 13px;
}


/* -----------------------------
   Plan Chat (Ask about this plan)
-------------------------------- */
.planChat{margin-top:16px; padding-top:14px; border-top:1px solid rgba(0,0,0,.08)}
.planChatHeader{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;margin-bottom:12px}
.planChatTitle{font-weight:800;font-size:16px;letter-spacing:.2px}
.planChatMessages{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:14px;min-height:160px;max-height:360px;overflow:auto;padding:12px;box-shadow:0 10px 24px rgba(16,24,40,.04)}
.planChatMsg{display:flex;gap:10px;margin:10px 0}
.planChatMsg .avatar{width:28px;height:28px;border-radius:10px;flex:0 0 auto;background:rgba(0,0,0,.06);display:flex;align-items:center;justify-content:center;font-size:14px}
.planChatMsg.user .avatar{background:rgba(47,124,255,.12)}
.planChatMsg.assistant .avatar{background:rgba(16,185,129,.12)}
.planChatBubble{max-width:78%;padding:10px 12px;border-radius:14px;border:1px solid rgba(0,0,0,.06);background:rgba(0,0,0,.02)}
.planChatMsg.user .planChatBubble{background:rgba(47,124,255,.06)}
.planChatMsg.assistant .planChatBubble{background:#fff}
.planChatBubble p{margin:0 0 8px 0}
.planChatBubble p:last-child{margin:0}
.planChatBubble ul{margin:6px 0 0 18px}
.planChatBubble li{margin:4px 0}
.planChatForm{display:flex;gap:10px;margin-top:10px;align-items:flex-end}
#planChatInput{flex:1;resize:vertical;min-height:44px;max-height:160px}
@media(max-width:780px){
  .planChatBubble{max-width:100%}
  .planChatForm{flex-direction:column;align-items:stretch}
  #planChatSend{width:100%}
}
/* Modal */
.modal { position: fixed; inset: 0; z-index: 9999; }
.modalBackdrop{
  position:absolute; inset:0;
  background: rgba(15, 23, 42, .45);
  backdrop-filter: blur(6px);
}
.modalPanel {
  position: relative;
  /* 1. Calculate width to allow for 10px on each side (20px total) */
  width: min(920px, calc(100% - 20px)); 
  
  /* 2. Set 10px margin top and bottom, and auto for left/right centering */
  margin: 10px auto; 
  
  /* 3. Adjust height to account for the 10px top/bottom gap */
  height: calc(100vh - 20px); 
  /* Optional: Keep your max-height limit if you don't want it full-screen on desktop */
  max-height: 740px; 

  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(15,23,42,.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modalHeader{
  padding: 14px 16px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,1));
}
.modalTitle{ font-weight: 900; letter-spacing: -0.2px; }
.iconBtn{
  width: 36px; height: 36px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.iconBtn:hover{ box-shadow: var(--shadow); }

/* Chat inside modal */
.planChatMessages{
  padding: 14px 16px;
  overflow:auto;
  flex: 1;
  background: #fafbff;
}
.chatMsg{ display:flex; margin: 10px 0; }
.chatMsg.isUser{ justify-content:flex-end; }
.chatBubble{
  max-width: 76%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.chatMsg.isUser .chatBubble{
  background: rgba(47,124,255,.08);
  border-color: rgba(47,124,255,.25);
}
.chatBubbleRole{
  font-weight: 800;
  font-size: 12px;
  color: var(--muted);
  display:flex;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.chatBubbleBody p{ margin: 0 0 8px 0; }
.chatBubbleBody p:last-child{ margin-bottom: 0; }
.chatBubbleBody ul{ margin: 8px 0 0 18px; }
.chatBubbleBody pre{
  white-space: pre-wrap;
  word-break: break-word;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  overflow:auto;
}

.planChatForm{
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background:#fff;
  display:flex;
  gap: 10px;
  align-items:flex-end;
}
#planChatInput{
  flex:1;
  resize:none;
  min-height: 44px;
  font-size: 16px; /* Prevents iOS auto-zoom */
}
 

/* Optional: If 16px looks too big in your layout, use this trick */
@media screen and (max-width: 768px) {
  #planChatInput {
    font-size: 16px;
  }
}


.landingBlogInner {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
  
    background: #fafafa;
    border-radius: 12px;
    padding: 18px 18px;
  
}
.blogIcon img {
  width: 100%;
  max-width:170px;
}
.blogList {
  margin: 12px 0;
  padding-left: 18px;
}
.blogList li {
  margin-bottom: 6px;
}
/* === Plan Chat background image (messages only) === */

.planChatMessages {
  position: relative;
  overflow-y: auto;
  padding: 16px;

  /* background image */
  background-image: url('/dog-assistant/assets/ai-chat.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

/* soft white overlay so text stays readable */
.planChatMessages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
  z-index: 0;
}

/* ensure messages sit ABOVE overlay */
.planChatMessages > * {
  position: relative;
  z-index: 1;
}
/* Chat + Enrichment: desktop side-by-side, mobile stacked */
.landingDuoInner{
  display:flex;
  gap:24px;
  align-items:stretch;
}

/* Let chat area take more space */
.landingDuoInner .landingBlog{
  flex:2;
}

/* Enrichment panel */
.landingEnrich{
  flex:1;
  background:#fafafa;
  border-radius:12px;
  padding:18px 18px;
}

/* Match your heading rhythm */
.landingEnrich h2{
  margin-top:0;
}

/* Mobile */
@media (max-width: 900px){
  .landingDuoInner{
    flex-direction:column;
  }
  .landingEnrich{
    width:100%;
  }
}
.issuesBlock{
  margin-top: 22px;
}

.issuesInner{
  background:#fff;
  border-radius:14px;
  padding:18px 18px;
}

.issuesHead h2{
  margin:0 0 6px 0;
}

.issuesGrid{
  display:flex;
  gap:18px;
  margin-top:14px;
  align-items:stretch;
}

.issuesCol{
  flex:1;
  background:#fafafa;
  border-radius:12px;
  padding:14px 14px;
}

.issuesTitle{
  font-weight:700;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}

.issuesList{
  list-style:none;
  padding:0;
  margin:0;
}

.issuesList li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:7px 0;
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.issuesList li:last-child{
  border-bottom:none;
}

.emo{
  width:22px;
  text-align:center;
  flex:0 0 22px;
}

.badge{
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  font-size:.78rem;
  margin-right:6px;
  border:1px solid rgba(0,0,0,0.12);
}

.low{ background:rgba(0,0,0,0.04); }
.med{ background:rgba(0,0,0,0.06); }
.high{ background:rgba(0,0,0,0.08); }

.issuesFoot{
  margin-top:14px;
  opacity:0.85;
}

/* Mobile: stack columns */
@media (max-width: 900px){
  .issuesGrid{
    flex-direction:column;
  }
}
.dayCard.dayDone{
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.06);
}

.dayCheckin{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.dayCheckinSavedNote{
  background: rgba(0,0,0,.03);
  padding: 10px;
  border-radius: 10px;
}
 @media screen and (max-width: 768px) {
  input, textarea, select {
    font-size: 16px !important;
  }
}
.breadcrumbs { margin: 10px 0 14px; font-size: 14px; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: "›"; opacity: .5; }
.breadcrumbs a { text-decoration: none; opacity: .85; }
.breadcrumbs a:hover { opacity: 1; text-decoration: underline; }
.breadcrumbs span { font-weight: 600; }


