/* ============================================================
   article.css - Article / guide single page styles
   Extracted from some_styles/new_advaithhomes_design/assets/css/style.css
   Loaded only on is_single() pages via explode_function.php.
   ============================================================ */

/* ── Layout ─────────────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: start;
}
.article-main {}

/* ── Header ─────────────────────────────────────────────────── */
.article-header { margin-bottom: 32px; }
.article-category-tag {
  display: inline-block;
  background: var(--color-tag-bg);
  color: var(--color-tag-text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.article-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.article-intro { font-size: 1rem; color: var(--color-black); margin-bottom: 20px; line-height: 1.7; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--color-black);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.article-meta-item { display: flex; align-items: center; gap: 5px; }
.article-header-split {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}

/* ── Key Takeaways ──────────────────────────────────────────── */
.key-takeaways {
  background: var(--color-bg-section, #f2efe9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.key-takeaways-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark, #1a2332);
  margin-bottom: 16px;
}
.key-takeaways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.takeaway-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-black);
}
.takeaway-check { color: var(--color-success, #22c55e); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }

/* ── Article Body ───────────────────────────────────────────── */
.article-body {}
.article-body h2 { font-size: 1.3rem; margin: 16px 0 10px; padding-top: 10px; border-top: 1px solid var(--color-border); }
.article-body h2:first-child { border-top: none; margin-top: 0; }
.article-body p { font-size: 0.925rem; color: var(--text-primary); line-height: 1.75; margin: 0 0 10px; }
.article-body ol,.article-body ul { margin: 0 0 10px 12px; }
.article-body ul li { font-size: 0.925rem; color: var(--text-primary); margin-bottom: 3px; list-style: disc; line-height: 1.6; margin-left:10px;}
.article-body ul li::marker {
  color: var(--color-accent);
}
.article-body strong { color: var(--color-accent);    font-family: monospace; }
.article-body summary strong { color: var(--client-color); }
.article-body table { margin-left: 0; margin-bottom: 10px;    border: 1px solid;
    width: max-content; }
/* ── Callout Boxes ──────────────────────────────────────────── */
.tip-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--color-info, #3b82f6);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 20px 0;
  font-size: 0.875rem;
  color: var(--color-text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.tip-box-icon { color: var(--color-info, #3b82f6); flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.tip-box-label { font-weight: 600; color: var(--color-info, #3b82f6); }

.note-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--color-warning, #f59e0b);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 20px 0;
  font-size: 0.875rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.note-box-icon { color: var(--color-warning, #f59e0b); flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.note-box-label { font-weight: 600; color: var(--color-warning, #f59e0b); }

.example-box {
  background: var(--color-bg-section, #f2efe9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 20px 0;
}
.example-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark, #1a2332);
  margin-bottom: 10px;
}
.example-box-icon { color: var(--color-primary); font-size: 0.9rem; }
.example-box p { font-size: 0.875rem; margin: 0; }

/* ── Steps List ─────────────────────────────────────────────── */
.steps-list { margin: 16px 0 24px; }
.step-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.step-item:last-child { border-bottom: none; }
.step-item-icon {
  width: 40px; height: 40px;
  background: var(--color-tag-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.step-item-content { flex: 1; }
.step-item-title { font-size: 0.95rem; font-weight: 600; color: var(--color-dark, #1a2332); margin-bottom: 4px; }
.step-item-desc { font-size: 0.85rem; color: var(--color-black); margin: 0; line-height: 1.6; }
.step-read-more { font-size: 0.78rem; font-weight: 600; color: var(--color-primary); display: flex; align-items: center; gap: 4px; margin-top: 6px; }

/* ── Costs Grid ─────────────────────────────────────────────── */
.costs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.cost-item {
  text-align: center;
  padding: 16px 8px;
  background: var(--color-bg-section, #f2efe9);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.cost-icon { font-size: 1.3rem; margin-bottom: 6px; }
.cost-name { font-size: 0.72rem; font-weight: 600; color: var(--color-dark, #1a2332); margin-bottom: 4px; }
.cost-value { font-size: 0.7rem; color: var(--color-black); }

/* ── Conclusion ─────────────────────────────────────────────── */
.article-conclusion { font-size: 1rem; font-weight: 600; color: var(--color-dark, #1a2332); margin-bottom: 8px; }

/* ── Feedback Row ───────────────────────────────────────────── */
.article-feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 32px 0;
}
.feedback-question { font-size: 0.875rem; font-weight: 500; color: var(--color-dark, #1a2332); }
.feedback-btns { display: flex; gap: 8px; }
.feedback-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  background: white;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.feedback-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.share-row { display: flex; align-items: center; gap: 10px; }
.share-label { font-size: 0.8rem; font-weight: 500; color: var(--color-dark, #1a2332); }
.share-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}
.share-fb { background: #1877f2; color: white; }
.share-x  { background: #000; color: white; }
.share-li { background: #0a66c2; color: white; }
.share-wa { background: #25d366; color: white; }

/* ── Author Box ─────────────────────────────────────────────── */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg-section, #f2efe9);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-info {}
.author-written-by { font-size: 0.7rem; color: var(--color-black); margin-bottom: 2px; }
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--color-dark, #1a2332); margin-bottom: 1px; }
.author-role { font-size: 0.75rem; color: var(--color-black); }
.author-updated { font-size: 0.78rem; color: var(--color-black); display: flex; align-items: center; gap: 5px; }

/* ── Disclaimer ─────────────────────────────────────────────── */
.disclaimer-box {
  background: var(--color-bg-section, #f2efe9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.78rem;
  color: var(--color-black);
  line-height: 1.6;
}
.disclaimer-box strong { color: var(--color-text); }

/* ── Sidebar ────────────────────────────────────────────────── */
.article-sidebar {}
.article-toc {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  position: sticky;
  top: 90px;
}
.toc-title { font-size: 0.875rem; font-weight: 600; color: var(--color-dark, #1a2332); margin-bottom: 14px; }
.toc-list { display: flex; flex-direction: column; gap: 8px; }
.toc-item {
  font-size: 0.8rem;
  color: var(--color-black);
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.toc-item:hover, .toc-item.active { color: var(--color-primary); font-weight: 500; }
.toc-num { color: var(--color-text-light, #9ca3af); font-size: 0.75rem; }

/* ── Related / Most-read ────────────────────────────────────── */
.related-guide-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
}
.related-guide-item:last-child { border-bottom: none; }
.related-guide-img {
  width: 56px; height: 44px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg-section, #f2efe9);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.related-guide-img img { width: 100%; height: 100%; object-fit: cover; }
.related-guide-content {}
.related-guide-title { font-size: 0.82rem; font-weight: 600; color: var(--color-dark, #1a2332); margin-bottom: 2px; line-height: 1.3; }
.related-guide-meta { font-size: 0.72rem; color: var(--color-black); }
.view-all-small {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 12px;
}

.most-read-list {}
.most-read-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
}
.most-read-item:last-child { border-bottom: none; }
.most-read-num {
  font-family: var(--font-display, serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-border-dark, #d1c9bc);
  width: 20px;
  flex-shrink: 0;
  line-height: 1;
}
.most-read-title { font-size: 0.82rem; font-weight: 600; color: var(--color-dark, #1a2332); line-height: 1.3; }
.most-read-title:hover { color: var(--color-primary); }

/* ── Stay Informed Bar ──────────────────────────────────────── */
.stay-informed-bar {
  background: var(--color-primary);
  padding: 40px 0;
  color: white;
}
.stay-informed-inner { display: flex; align-items: center; gap: 40px; }
.stay-informed-content { flex: 1; }
.stay-informed-icon { font-size: 2rem; margin-bottom: 8px; color: rgba(255,255,255,0.6); }
.stay-informed-content h3 { color: white; font-size: 1.1rem; margin-bottom: 4px; }
.stay-informed-content p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.stay-informed-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  max-width: 360px;
}
.stay-informed-form input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.875rem;
  outline: none;
}

/* ── Sticky Bottom Bar (mobile) ─────────────────────────────── */
.sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--color-border);
  padding: 10px 20px;
  z-index: 900;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

.article-body h2.adn-visible {
    font-weight: bold;
}

/* ── Blockquote ─────────────────────────────────────────────── */
.article-body blockquote {
  position: relative;
  margin: 14px 0;
  padding: 10px;
  background: white;
  border: 1px solid var(--secondary-color);
  border-left: 3px solid var(--secondary-color, #B08D57);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote p,
.article-body blockquote strong {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-dark, #1a2332);
  line-height: 1.7;
  margin: 0;
}
.article-body blockquote strong {
  font-style: normal;
  font-weight: 700;
  color: var(--color-accent);
}

/* ── Details / FAQ Accordion ────────────────────────────────── */
.article-body details {
  background: var(--color-white, #fff);
  border: 1.5px solid rgba(30,58,47,.1);
  border-radius: 10px;
  margin: 0;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.article-body details + details { margin-top: 5px; }
.article-body details[open] {
  border-color: var(--client-color, #1e3a2f);
  box-shadow: 0 3px 14px rgba(30,58,47,.07);
}
.article-body summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark, #1a2332);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s, color 0.15s;
}
.article-body summary:hover { background: rgba(30,58,47,.03); }
.article-body details[open] > summary {
  color: var(--client-color, #1e3a2f);
  background: rgba(30,58,47,.04);
  border-bottom: 1px solid rgba(30,58,47,.08);
}
.article-body summary::-webkit-details-marker { display: none; }
.article-body summary::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  margin-bottom: 2px;
  opacity: 0.55;
}
.article-body details[open] > summary::after {
  transform: rotate(-135deg);
  margin-bottom: -2px;
  opacity: 1;
}
.article-body details > p,
.article-body details > div {
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--color-black);
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .article-layout { display:flex;flex-wrap:wrap; }
  .article-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .article-toc { position: static; }
  .costs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 668px) {
  .article-layout { display:flex;flex-wrap:wrap;gap:20px; }
  .article-header-split { grid-template-columns: 1fr; }
}
/* ── Related / Most-read ────────────────────────────────────── */
.related-guide-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
}
.related-guide-item:last-child { border-bottom: none; }
.related-guide-img {
  width: 56px; height: 44px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg-section, #f2efe9);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.related-guide-img img { width: 100%; height: 100%; object-fit: cover; }
.related-guide-content {}
.related-guide-title { font-size: 0.82rem; font-weight: 600; color: var(--color-dark, #1a2332); margin-bottom: 2px; line-height: 1.3; }
.related-guide-meta { font-size: 0.72rem; color: var(--color-black); }
.view-all-small {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 12px;
}

.most-read-list {}
.most-read-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
}
.most-read-item:last-child { border-bottom: none; }
.most-read-num {
  font-family: var(--font-display, serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-border-dark, #d1c9bc);
  width: 20px;
  flex-shrink: 0;
  line-height: 1;
}
.most-read-title { font-size: 0.82rem; font-weight: 600; color: var(--color-dark, #1a2332); line-height: 1.3; }
.most-read-title:hover { color: var(--color-primary); }

/* ── Stay Informed Bar ──────────────────────────────────────── */
.stay-informed-bar {
  background: var(--color-primary);
  padding: 40px 0;
  color: white;
}
.stay-informed-inner { display: flex; align-items: center; gap: 40px; }
.stay-informed-content { flex: 1; }
.stay-informed-icon { font-size: 2rem; margin-bottom: 8px; color: rgba(255,255,255,0.6); }
.stay-informed-content h3 { color: white; font-size: 1.1rem; margin-bottom: 4px; }
.stay-informed-content p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.stay-informed-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  max-width: 360px;
}
.stay-informed-form input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.875rem;
  outline: none;
}

/* ── Sticky Bottom Bar (mobile) ─────────────────────────────── */
.sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--color-border);
  padding: 10px 20px;
  z-index: 900;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

.article-body h2.adn-visible {
    font-weight: bold;
}

/* ── Blockquote ─────────────────────────────────────────────── */
.article-body blockquote {
  position: relative;
  margin: 14px 0;
  padding: 10px;
  background: white;
  border: 1px solid var(--secondary-color);
  border-left: 3px solid var(--secondary-color, #B08D57);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote p,
.article-body blockquote strong {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-dark, #1a2332);
  line-height: 1.7;
  margin: 0;
}
.article-body blockquote strong {
  font-style: normal;
  font-weight: 700;
  color: var(--color-accent);
}

/* ── Details / FAQ Accordion ────────────────────────────────── */
.article-body details {
  background: var(--color-white, #fff);
  border: 1.5px solid rgba(30,58,47,.1);
  border-radius: 10px;
  margin: 0;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.article-body details + details { margin-top: 5px; }
.article-body details[open] {
  border-color: var(--client-color, #1e3a2f);
  box-shadow: 0 3px 14px rgba(30,58,47,.07);
}
.article-body summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark, #1a2332);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s, color 0.15s;
}
.article-body summary:hover { background: rgba(30,58,47,.03); }
.article-body details[open] > summary {
  color: var(--client-color, #1e3a2f);
  background: rgba(30,58,47,.04);
  border-bottom: 1px solid rgba(30,58,47,.08);
}
.article-body summary::-webkit-details-marker { display: none; }
.article-body summary::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  margin-bottom: 2px;
  opacity: 0.55;
}
.article-body details[open] > summary::after {
  transform: rotate(-135deg);
  margin-bottom: -2px;
  opacity: 1;
}
.article-body details > p,
.article-body details > div {
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--color-black);
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .article-layout { display:flex;flex-wrap:wrap; }
  .article-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .article-toc { position: static; }
  .costs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .article-layout { display:flex;flex-wrap:wrap;gap:20px; }
  .article-header-split { grid-template-columns: 1fr; }
  .key-takeaways-grid { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: 1fr; }
  .sticky-bottom-bar { display: flex; }
}

@media (max-width: 480px) {
  .costs-grid { grid-template-columns: repeat(2, 1fr); }
  .article-body blockquote{
    font-size: small;
  }
}

/* Post Sidebar Chunk Buttons */
.sb-nav-buttons-wrap {
  margin-bottom: 2rem;
}
.sb-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sb-nav-btn {
  display: flex;
  align-items: center;
  padding: 22px 24px;
  border-radius: 12px;
  text-decoration: none !important;
  color: #fff !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.sb-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  color: #fff !important;
}
.sb-nav-btn--primary {
  background-color: var(--client-color, #141E1A);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sb-nav-btn--primarylight {
  background-color: var(--secondary-color-dark, #23473f);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sb-nav-btn--secondary {
  background-color: var(--color-accent, #B08D57);
}
.sb-nav-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.sb-nav-btn-icon svg {
  width: 28px;
  height: 28px;
}
.sb-nav-btn-text {
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-primary, sans-serif);
  flex-grow: 1;
}
.sb-nav-btn-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.sb-nav-btn-chevron svg {
  width: 16px;
  height: 16px;
}
