@import url('/css/home.css');

:root{
  --guide-bg:linear-gradient(180deg, #fbfaf8 0%, #f3f1ec 100%);
  --guide-surface:rgba(255,255,255,0.90);
  --guide-surface-strong:#faf9f7;
  --guide-line:var(--line);
  --guide-text:var(--text);
  --guide-muted:var(--text-muted);
  --guide-accent:var(--accent);
  --guide-accent-strong:var(--accent-strong);
  --guide-accent-soft:var(--accent-soft);
  --guide-shadow:var(--shadow-md);
  --guide-radius:24px;
  --guide-radius-sm:16px;
  --guide-max:1120px;
}

*{box-sizing:border-box;}
html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
body{
  margin:0;
  min-height:100vh;
  color:var(--guide-text);
  font:16px/1.7 var(--font-sans);
  background:var(--guide-bg);
}
img{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}

.guide-page{
  width:min(calc(100% - 32px), var(--guide-max));
  margin:0 auto;
  padding:18px 0 64px;
}

.guide-header{
  position:sticky;
  top:10px;
  z-index:30;
  margin-bottom:22px;
}

.guide-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px var(--space-4);
  min-height:56px;
  border:1px solid var(--guide-line);
  border-radius:16px;
  background:rgba(255,255,255,0.80);
  backdrop-filter:blur(16px);
  box-shadow:var(--shadow-sm);
}

.guide-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  font-weight:600;
}

.guide-brand picture,
.guide-brand img{
  width:auto;
  height:34px;
  object-fit:contain;
}

.guide-brand__eyebrow{
  margin:0;
  color:var(--guide-text);
  font-size:16px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.1px;
}

.guide-brand__title{
  display:block;
  margin:3px 0 0;
  color:var(--guide-muted);
  font-size:11px;
  line-height:1.4;
  font-weight:500;
  max-width:520px;
}

.guide-nav__links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}

.guide-nav__links a{
  min-height:42px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:var(--text-sm);
  font-weight:600;
  transition:0.2s ease;
}

.guide-nav__links a:hover,
.guide-nav__links a:focus-visible{
  border-color:rgba(197,157,91,0.3);
  background:rgba(255,255,255,0.95);
  outline:none;
  transform:translateY(-1px);
}

.guide-nav__links .guide-nav__cta{
  color:#fff;
  background:linear-gradient(135deg,#caa86c,#b48a3a);
  border-color:rgba(159,121,48,0.45);
  box-shadow:0 12px 24px rgba(159,121,48,0.28);
}

.guide-hero,
.guide-section,
.guide-sidebar-card{
  border:1px solid var(--guide-line);
  border-radius:20px;
  background:var(--guide-surface);
  box-shadow:var(--guide-shadow);
}

.guide-hero{
  position:relative;
  overflow:hidden;
  padding:var(--sp-40) var(--sp-32);
  margin-bottom:28px;
  background:linear-gradient(140deg, rgba(255,255,255,0.92), rgba(247,245,241,0.92));
}

.guide-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(197,157,91,0.18), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(17,24,39,0.12), transparent 40%),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.35) 0px, rgba(255,255,255,0.35) 2px, transparent 2px, transparent 10px);
  opacity:0.7;
  pointer-events:none;
}

.guide-hero > *{
  position:relative;
  z-index:1;
}

.guide-hero__kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:var(--space-3);
  padding:6px 14px;
  border-radius:999px;
  background:var(--guide-accent-soft);
  color:var(--guide-accent-strong);
  font-size:var(--text-xs);
  font-weight:600;
}

.guide-hero h1{
  margin:0;
  max-width:820px;
  font-size:clamp(34px, 5vw, 56px);
  line-height:1.08;
  letter-spacing:-0.03em;
}

.guide-hero__lead{
  max-width:760px;
  margin:20px 0 0;
  color:var(--guide-muted);
  font-size:var(--fs-body);
  line-height:1.6;
}

.guide-hero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
  color:var(--guide-muted);
  font-size:14px;
}

.guide-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.guide-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--guide-line);
  background:rgba(255,255,255,0.85);
  font-size:var(--fs-body);
  font-weight:600;
  letter-spacing:0.01em;
  box-shadow:var(--shadow-sm);
  transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.guide-btn:hover,
.guide-btn:focus-visible{
  transform:translateY(-1px);
  outline:none;
  border-color:rgba(197,157,91,0.3);
}

.guide-btn--primary{
  color:#fff;
  border:1px solid rgba(159,121,48,0.45);
  background:linear-gradient(135deg,#caa86c,#b48a3a);
  box-shadow:0 12px 24px rgba(159,121,48,0.28);
}

.guide-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:24px;
  align-items:start;
}

.guide-main{
  display:grid;
  gap:20px;
}

.guide-section{
  padding:30px;
  background:rgba(255,255,255,0.88);
}

.guide-section h2{
  margin:0 0 18px;
  font-size:clamp(24px, 3vw, 32px);
  line-height:1.2;
}

.guide-section h3{
  margin:24px 0 10px;
  font-size:20px;
  line-height:1.35;
}

.guide-section p,
.guide-section li{
  color:var(--guide-text);
}

.guide-section p{
  margin:0 0 14px;
}

.guide-section ul,
.guide-section ol{
  margin:0 0 18px;
  padding-left:22px;
}

.guide-section strong{
  color:var(--guide-accent-strong);
}

.guide-callout{
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(183,106,22,0.14);
  background:linear-gradient(180deg, rgba(246,238,223,0.95), rgba(255,255,255,0.92));
}

.guide-cards{
  display:grid;
  gap:16px;
}

.guide-card{
  padding:22px;
  border:1px solid var(--guide-line);
  border-radius:18px;
  background:var(--guide-surface-strong);
  box-shadow:var(--shadow-sm);
}

.guide-card h3,
.guide-card h4{
  margin:0 0 10px;
}

.guide-card p:last-child{
  margin-bottom:0;
}

.guide-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.guide-chip{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.84);
  border:1px solid var(--guide-line);
  color:var(--guide-muted);
  font-size:13px;
  font-weight:600;
}

.guide-flow{
  display:grid;
  gap:20px;
}

.guide-hero--focused{
  margin-bottom:20px;
}

.guide-choice-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-top:24px;
}

.guide-choice-card{
  display:grid;
  gap:6px;
  padding:18px;
  border:1px solid rgba(197,157,91,0.22);
  border-radius:18px;
  background:rgba(255,255,255,0.82);
  box-shadow:var(--shadow-sm);
  transition:transform .2s ease, border-color .2s ease;
}

.guide-choice-card:hover{
  transform:translateY(-2px);
  border-color:rgba(197,157,91,0.38);
}

.guide-choice-card strong{
  font-size:16px;
  line-height:1.35;
}

.guide-choice-card span{
  color:var(--guide-muted);
  font-size:13px;
  line-height:1.6;
}

.guide-section--summary,
.guide-section--support{
  background:linear-gradient(180deg, rgba(255,255,255,0.94), rgba(249,247,242,0.9));
}

.guide-quick-grid,
.guide-route-grid{
  display:grid;
  gap:14px;
}

.guide-quick-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.guide-route-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.guide-quick-card,
.guide-route-card,
.guide-temple-card,
.guide-faq-item{
  padding:20px;
  border:1px solid var(--guide-line);
  border-radius:18px;
  background:var(--guide-surface-strong);
  box-shadow:var(--shadow-sm);
}

.guide-quick-card strong,
.guide-route-card h3{
  display:block;
  margin:0 0 10px;
  font-size:18px;
}

.guide-quick-card p,
.guide-route-card li,
.guide-route-card p{
  margin:0;
  color:var(--guide-muted);
}

.guide-steps{
  display:grid;
  gap:14px;
}

.guide-step{
  display:grid;
  grid-template-columns:64px minmax(0, 1fr);
  gap:16px;
  padding:18px 20px;
  border:1px solid var(--guide-line);
  border-radius:18px;
  background:var(--guide-surface-strong);
}

.guide-step span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:64px;
  height:64px;
  border-radius:16px;
  background:var(--guide-accent-soft);
  color:var(--guide-accent-strong);
  font-size:20px;
  font-weight:800;
}

.guide-step h3{
  margin:0 0 6px;
  font-size:20px;
}

.guide-step p{
  margin:0;
  color:var(--guide-muted);
}

.guide-temple-list,
.guide-faq-list{
  display:grid;
  gap:16px;
}

.guide-temple-card__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}

.guide-temple-card__head h3,
.guide-faq-item h3{
  margin:0 0 6px;
  font-size:22px;
}

.guide-temple-card__badge{
  margin:0;
  color:var(--guide-muted);
  font-size:13px;
}

.guide-checklist{
  display:grid;
  gap:10px;
  margin-bottom:16px;
}

.guide-checklist__item{
  position:relative;
  padding:14px 16px 14px 48px;
  border-radius:16px;
  background:var(--guide-surface-strong);
  border:1px solid var(--guide-line);
  box-shadow:var(--shadow-sm);
}

.guide-checklist__item::before{
  content:"";
  position:absolute;
  left:16px;
  top:50%;
  width:18px;
  height:18px;
  border-radius:999px;
  transform:translateY(-50%);
  background:linear-gradient(135deg,#caa86c,#b48a3a);
  box-shadow:0 0 0 4px rgba(202,168,108,0.18);
}

.guide-cards--compact{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.guide-section__cta{
  margin:18px 0 0;
}

.guide-sidebar{
  position:sticky;
  top:100px;
  display:grid;
  gap:16px;
}

.guide-sidebar-card{
  padding:22px;
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,246,238,0.88));
}

.guide-sidebar-card h3{
  margin:0 0 10px;
  font-size:18px;
}

.guide-sidebar-card p{
  margin:0 0 14px;
  color:var(--guide-muted);
  font-size:15px;
}

.guide-sidebar-card ul{
  margin:0;
  padding-left:18px;
}

.guide-sidebar-card li{
  margin-bottom:8px;
}

.guide-footer{
  margin-top:28px;
  padding:18px 0 8px;
  color:var(--guide-muted);
  font-size:14px;
  text-align:center;
}

.guide-admin{
  margin-top:24px;
  padding:24px;
  border:1px solid var(--guide-line);
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,246,238,0.9));
  box-shadow:var(--shadow-sm);
}

.guide-admin h3{
  margin:0 0 12px;
  font-size:18px;
}

.guide-admin p{
  margin:0 0 16px;
  color:var(--guide-muted);
  font-size:14px;
}

.guide-admin__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
}

.guide-admin label{
  display:grid;
  gap:6px;
  font-size:13px;
  font-weight:700;
  color:var(--guide-text);
}

.guide-admin input,
.guide-admin textarea{
  width:100%;
  min-height:44px;
  padding:10px 12px;
  border:1px solid rgba(197,157,91,0.28);
  border-radius:14px;
  background:#fff;
  color:var(--guide-text);
  font:14px/1.5 var(--font-sans);
}

.guide-admin textarea{
  min-height:104px;
  resize:vertical;
}

.guide-list-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
}

.guide-list-card{
  padding:24px;
  border:1px solid var(--guide-line);
  border-radius:20px;
  background:var(--guide-surface);
  box-shadow:var(--guide-shadow);
}

.guide-list-card__eyebrow{
  margin:0 0 8px;
  color:var(--guide-accent-strong);
  font-size:13px;
  font-weight:700;
}

.guide-list-card h2{
  margin:0 0 10px;
  font-size:24px;
}

.guide-list-card p{
  margin:0 0 16px;
  color:var(--guide-muted);
}

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

  .guide-sidebar{
    position:static;
  }

  .guide-choice-grid,
  .guide-quick-grid,
  .guide-route-grid,
  .guide-cards--compact{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 720px){
  .guide-page{
    width:min(calc(100% - 24px), var(--guide-max));
    padding-top:12px;
  }

  .guide-nav{
    align-items:flex-start;
    flex-direction:column;
  }

  .guide-brand__eyebrow{
    font-size:18px;
  }

  .guide-brand__title{
    font-size:12px;
  }

  .guide-nav__links{
    justify-content:flex-start;
  }

  .guide-hero,
  .guide-section,
  .guide-sidebar-card,
  .guide-list-card{
    padding:22px;
    border-radius:20px;
  }

  .guide-hero{
    padding:var(--sp-32) var(--sp-24);
  }

  .guide-hero__lead{
    font-size:16px;
  }

  .guide-choice-grid,
  .guide-quick-grid,
  .guide-route-grid,
  .guide-cards--compact{
    grid-template-columns:1fr;
  }

  .guide-step{
    grid-template-columns:1fr;
  }

  .guide-step span{
    width:52px;
    height:52px;
  }

  .guide-temple-card__head{
    flex-direction:column;
  }
}

/* Article-style guide page */
.guide-page--article{
  width:min(calc(100% - 32px), 900px);
}

.guide-page--feed{
  width:min(calc(100% - 32px), 980px);
}

.guide-header--article{
  position:static;
  margin-bottom:32px;
}

.guide-nav--article{
  justify-content:space-between;
}

.guide-nav--article .guide-nav__links{
  margin-left:auto;
  align-items:center;
  flex:0 0 auto;
}

.guide-article{
  display:grid;
  gap:28px;
}

.guide-article__body{
  display:grid;
  gap:30px;
}

.guide-article__hero{
  display:grid;
  gap:18px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(15,23,42,0.08);
}

.guide-article__kicker{
  margin:0;
  color:var(--guide-accent-strong);
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.guide-article__hero h1{
  margin:0;
  font-size:clamp(30px, 4.8vw, 44px);
  line-height:1.12;
  letter-spacing:-0.03em;
}

.guide-article__lead{
  margin:0;
  color:var(--guide-muted);
  font-size:18px;
  line-height:1.72;
}

.guide-article__meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  color:var(--guide-muted);
  font-size:14px;
}

.guide-article__section{
  display:grid;
  gap:16px;
}

.guide-article__section h2{
  margin:0;
  font-size:clamp(26px, 4vw, 34px);
  line-height:1.2;
}

.guide-article__section h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.35;
}

.guide-article__section p{
  margin:0;
  font-size:18px;
  line-height:1.9;
  color:var(--guide-text);
}

.guide-article__cards{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.guide-article__cards--three{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.guide-article__card{
  padding:20px 22px;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:18px;
  background:rgba(255,255,255,0.82);
  box-shadow:var(--shadow-sm);
}

.guide-article__callout{
  display:grid;
  gap:8px;
  padding:22px 24px;
  border-left:4px solid var(--guide-accent);
  border-radius:0 18px 18px 0;
  background:rgba(246,238,223,0.72);
}

.guide-article__callout strong{
  font-size:16px;
  color:var(--guide-accent-strong);
}

.guide-article__list{
  margin:0;
  padding-left:24px;
  display:grid;
  gap:10px;
}

.guide-article__list li{
  font-size:18px;
  line-height:1.8;
}

.guide-article__checklist{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.guide-article__checklist li{
  position:relative;
  padding-left:32px;
  font-size:18px;
  line-height:1.8;
}

.guide-article__checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:.7em;
  width:12px;
  height:12px;
  border-radius:999px;
  background:linear-gradient(135deg,#caa86c,#b48a3a);
}

.guide-article__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.guide-article__section--soft{
  padding-top:24px;
  border-top:1px solid rgba(15,23,42,0.08);
}

.guide-article__rich h2,
.guide-article__rich h3{
  margin:28px 0 12px;
}

.guide-article__rich p,
.guide-article__rich li{
  font-size:18px;
  line-height:1.9;
}

.guide-article__rich ul,
.guide-article__rich ol{
  padding-left:24px;
}

.guide-feed{
  display:grid;
  gap:24px;
}

.guide-feed__intro{
  display:grid;
  gap:12px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(15,23,42,0.08);
}

.guide-feed__intro h1{
  margin:0;
  max-width:1120px;
  font-size:clamp(26px, 4.4vw, 38px);
  line-height:1.14;
  letter-spacing:-0.03em;
}

.guide-feed__lead{
  margin:0;
  max-width:880px;
  color:var(--guide-muted);
  font-size:16px;
  line-height:1.8;
}

.guide-topic-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding-top:4px;
}

.guide-topic-chip{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(197,157,91,0.24);
  background:rgba(255,255,255,0.88);
  color:var(--guide-text);
  font-size:13px;
  font-weight:700;
  line-height:1;
  box-shadow:var(--shadow-sm);
}

.guide-topic-chip.is-muted{
  color:var(--guide-muted);
  background:rgba(255,255,255,0.68);
  box-shadow:none;
}

.guide-feed__stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.guide-feed__stat{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.76);
  border:1px solid rgba(15,23,42,0.08);
  color:var(--guide-muted);
  font-size:12px;
  line-height:1;
}

.guide-feed__meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  color:var(--guide-muted);
  font-size:13px;
}

.guide-post-list{
  display:grid;
  gap:16px;
}

.guide-post-card{
  border:1px solid rgba(15,23,42,0.08);
  border-radius:22px;
  background:rgba(255,255,255,0.86);
  box-shadow:var(--shadow-sm);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.guide-post-card:hover{
  transform:translateY(-2px);
  border-color:rgba(197,157,91,0.30);
  box-shadow:var(--shadow-md);
}

.guide-post-card__link{
  display:grid;
  gap:10px;
  padding:22px 24px;
}

.guide-post-card__eyebrow{
  margin:0;
  color:var(--guide-accent-strong);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.guide-post-card h2{
  margin:0;
  max-width:1040px;
  font-size:clamp(20px, 3vw, 28px);
  line-height:1.22;
}

.guide-post-card__summary{
  margin:0;
  max-width:980px;
  color:var(--guide-muted);
  font-size:15px;
  line-height:1.7;
}

.guide-post-card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--guide-muted);
  font-size:12px;
}

.guide-post-card__cta{
  color:var(--guide-accent-strong);
  font-weight:700;
}

.guide-feed__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding-top:8px;
}

.guide-cms{
  display:grid;
  gap:20px;
  margin-top:18px;
  padding:24px;
  border:1px solid var(--guide-line);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,246,242,0.92));
  box-shadow:var(--shadow-sm);
}

.guide-cms__head{
  display:grid;
  gap:8px;
}

.guide-cms__head h2{
  margin:0;
  font-size:26px;
}

.guide-cms__eyebrow{
  margin:0;
  color:var(--guide-accent-strong);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.guide-cms__desc{
  margin:0;
  color:var(--guide-muted);
}

.guide-cms__grid{
  display:grid;
  grid-template-columns:280px minmax(0, 1fr);
  gap:18px;
}

.guide-cms__list,
.guide-cms__form{
  display:grid;
  gap:12px;
}

.guide-cms__list h3{
  margin:0;
  font-size:18px;
}

.guide-cms__list-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.guide-cms__list-head h2{
  margin:0;
  font-size:18px;
}

.account-posts-page .guide-cms{
  margin-top:18px;
}

.guide-workspace-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.guide-workspace-tab{
  min-height:40px;
  padding:10px 16px;
  border:1px solid rgba(197,157,91,0.22);
  border-radius:999px;
  background:#fff;
  color:var(--guide-muted);
  font:14px/1 var(--font-sans);
  font-weight:700;
  cursor:pointer;
}

.guide-workspace-tab.is-active{
  color:var(--guide-text);
  border-color:rgba(197,157,91,0.42);
  box-shadow:var(--shadow-sm);
}

.guide-workspace-panels{
  display:grid;
  gap:18px;
}

.guide-workspace-panel{
  display:none;
}

.guide-workspace-panel.is-active{
  display:grid;
  gap:16px;
}

.guide-cms__items{
  display:grid;
  gap:10px;
}

.guide-cms__item{
  display:grid;
  gap:4px;
  width:100%;
  padding:14px 16px;
  border:1px solid var(--guide-line);
  border-radius:16px;
  background:#fff;
  color:var(--guide-text);
  text-align:left;
  cursor:pointer;
}

.guide-cms__item strong{
  font-size:15px;
  line-height:1.5;
}

.guide-cms__item span{
  color:var(--guide-muted);
  font-size:12px;
}

.guide-cms__form label{
  display:grid;
  gap:6px;
  font-size:13px;
  font-weight:700;
  color:var(--guide-text);
}

.guide-cms__form input,
.guide-cms__form select,
.guide-cms__form textarea{
  width:100%;
  min-height:46px;
  padding:12px 14px;
  border:1px solid rgba(197,157,91,0.28);
  border-radius:14px;
  background:#fff;
  color:var(--guide-text);
  font:14px/1.6 var(--font-sans);
}

.guide-cms__form textarea{
  min-height:120px;
  resize:vertical;
}

.guide-editor-toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:8px;
}

.guide-editor-btn{
  min-height:36px;
  padding:8px 12px;
  border:1px solid rgba(197,157,91,0.24);
  border-radius:999px;
  background:#fff;
  color:var(--guide-text);
  font:13px/1 var(--font-sans);
  font-weight:700;
  cursor:pointer;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.guide-editor-btn:hover,
.guide-editor-btn:focus-visible{
  outline:none;
  border-color:rgba(197,157,91,0.42);
  box-shadow:var(--shadow-sm);
  transform:translateY(-1px);
}

.guide-cms__split{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.guide-cms__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.guide-btn--danger{
  border-color:rgba(185,28,28,0.18);
  color:#991b1b;
}

.guide-cms__status{
  min-height:22px;
  margin:0;
  color:var(--guide-muted);
  font-size:13px;
}

.guide-cms__status.is-error{
  color:#b91c1c;
}

@media (max-width: 720px){
  .guide-page--article{
    width:min(calc(100% - 24px), 900px);
  }

  .guide-page--feed{
    width:min(calc(100% - 24px), 980px);
  }

  .guide-article__lead,
  .guide-article__section p,
  .guide-article__list li,
  .guide-article__checklist li,
  .guide-feed__lead,
  .guide-post-card__summary{
    font-size:17px;
  }

  .guide-article__cards,
  .guide-article__cards--three{
    grid-template-columns:1fr;
  }

  .guide-post-card__link{
    padding:22px;
  }

  .guide-post-card__meta{
    align-items:flex-start;
    flex-direction:column;
  }

  .guide-cms{
    padding:20px;
  }

  .guide-cms__grid,
  .guide-cms__split{
    grid-template-columns:1fr;
  }
}
