/* =============================================
   stroydom-kazan.ru — Стройдом Казань
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1c3557;
  --orange: #f7941d;
  --dark:   #111827;
  --gray:   #6b7280;
  --light:  #f3f4f6;
  --white:  #ffffff;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: #374151; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }
.section--gray { background: var(--light); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: all .2s; border: none; text-decoration: none;
}
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: #e07f0a; color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(247,148,29,.35); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--white  { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--orange); color: var(--white); }

/* ---- HEADER ---- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo { display: flex; flex-direction: column; }
.logo__name { font-size: 1.3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.logo__tag  { font-size: .7rem; color: var(--gray); letter-spacing: .05em; text-transform: uppercase; }
.nav { display: flex; gap: 2px; align-items: center; }
.nav > a {
  padding: 8px 11px; border-radius: 6px;
  font-size: .85rem; font-weight: 500; color: var(--dark);
  transition: all .15s; white-space: nowrap;
}
.nav > a:hover, .nav > a.active { background: var(--light); color: var(--navy); }

/* ---- DROPDOWN ---- */
.nav__item { position: relative; }
.nav__item > .nav__trigger {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  padding: 8px 11px; border-radius: 6px;
  font-size: .85rem; font-weight: 500; color: var(--dark);
  transition: all .15s; user-select: none; white-space: nowrap;
}
.nav__item > .nav__trigger:hover,
.nav__item.open > .nav__trigger { background: var(--light); color: var(--navy); }
.nav__arrow { font-size: .65rem; transition: transform .2s; }
.nav__item.open .nav__arrow { transform: rotate(180deg); }

.nav__dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid #e5e7eb;
  border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 260px; padding: 8px; z-index: 200;
}
.nav__item.open .nav__dropdown { display: block; }
.nav__dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 6px;
  font-size: .88rem; font-weight: 500; color: var(--dark);
  transition: all .15s; text-decoration: none;
}
.nav__dropdown a:hover { background: var(--light); color: var(--navy); }
.nav__dropdown a .dd-icon { font-size: 1.1rem; flex-shrink: 0; }
.nav__dropdown a .dd-text { display: flex; flex-direction: column; }
.nav__dropdown a .dd-title { font-weight: 600; color: var(--navy); }
.nav__dropdown a .dd-sub { font-size: .75rem; color: var(--gray); margin-top: 1px; }
.nav__dropdown-divider { border: none; border-top: 1px solid #f0f0f0; margin: 6px 0; }

.header__phone { font-weight: 700; font-size: 1.05rem; color: var(--navy); white-space: nowrap; }
.header__phone span { display: block; font-size: .7rem; font-weight: 400; color: var(--gray); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .2s; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2d5a8e 100%);
  padding: 80px 0 90px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('/static/images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center; }
.hero__label { display: inline-block; background: var(--orange); color: var(--white); font-size: .8rem; font-weight: 700; padding: 4px 12px; border-radius: 4px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero__sub { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 32px; margin-top: 40px; }
.hero__stat span { display: block; font-size: 2rem; font-weight: 800; color: var(--orange); }
.hero__stat p { font-size: .85rem; color: rgba(255,255,255,.7); }

/* ---- LEAD FORM (hero card) ---- */
.lead-form {
  background: var(--white); border-radius: 12px;
  padding: 32px 28px; box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.lead-form h3 { color: var(--navy); margin-bottom: 6px; }
.lead-form p  { font-size: .88rem; color: var(--gray); margin-bottom: 20px; }
.form-group { margin-bottom: 12px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #d1d5db;
  border-radius: var(--radius); font-size: .95rem; font-family: inherit;
  transition: border .15s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { min-height: 80px; resize: vertical; }
.form-note { font-size: .75rem; color: var(--gray); margin-top: 8px; text-align: center; }
.lead-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ---- ADVANTAGES ---- */
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.adv-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
  border-top: 3px solid var(--orange);
}
.adv-card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.adv-card h3 { margin-bottom: 8px; font-size: 1rem; }
.adv-card p  { font-size: .88rem; color: var(--gray); }

/* ---- SERVICES ---- */
.section__head { text-align: center; margin-bottom: 48px; }
.section__head h2 { margin-bottom: 12px; }
.section__head p  { color: var(--gray); max-width: 560px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); }
.service-card__img { height: 200px; background: var(--light); position: relative; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.service-card__img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #dce8f5, #b8d0e8); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.service-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 8px; color: var(--navy); }
.service-card p  { font-size: .88rem; color: var(--gray); flex: 1; margin-bottom: 16px; }
.service-card__price { font-weight: 700; color: var(--orange); font-size: 1rem; margin-bottom: 12px; }
.service-card .btn { align-self: flex-start; padding: 10px 20px; font-size: .88rem; }

/* ---- PROJECTS ---- */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer;
  transition: transform .2s;
}
.project-card:hover { transform: translateY(-4px); }
.project-card__img { height: 220px; background: #dce8f5; overflow: hidden; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; }
.project-card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, #dce8f5, #b8d0e8); }
.project-card__body { padding: 16px 20px; }
.project-card h3 { margin-bottom: 6px; font-size: 1rem; }
.project-card__meta { display: flex; gap: 16px; font-size: .82rem; color: var(--gray); }
.project-card__meta span { display: flex; align-items: center; gap: 4px; }
.project-card__price { font-weight: 700; color: var(--orange); margin-top: 8px; }

/* ---- HOW WE WORK ---- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 48px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 30px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--orange), #f7c46d);
  z-index: 0;
}
.step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step__num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(247,148,29,.4);
}
.step h4 { margin-bottom: 6px; font-size: .95rem; }
.step p  { font-size: .82rem; color: var(--gray); }

/* ---- REVIEWS ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); border-left: 4px solid var(--orange);
}
.review-card__stars { color: #f59e0b; margin-bottom: 12px; font-size: 1.1rem; }
.review-card__text { font-size: .9rem; color: #374151; margin-bottom: 16px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.review-card__name { font-weight: 600; font-size: .9rem; }
.review-card__date { font-size: .78rem; color: var(--gray); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #2d5a8e);
  padding: 64px 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card__img { height: 180px; background: var(--light); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #dce8f5, #b8d0e8); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-card__body { padding: 20px; }
.blog-card__meta { font-size: .78rem; color: var(--gray); margin-bottom: 8px; }
.blog-card h3 { margin-bottom: 8px; font-size: 1rem; }
.blog-card p  { font-size: .85rem; color: var(--gray); margin-bottom: 12px; }
.blog-card .read-more { font-size: .85rem; font-weight: 600; color: var(--navy); }
.blog-card .read-more:hover { color: var(--orange); }

/* ---- ARTICLE PAGE ---- */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-body { max-width: none; }
.article-body h1 { margin-bottom: 12px; }
.article-body .article-meta { color: var(--gray); font-size: .88rem; margin-bottom: 32px; border-bottom: 1px solid #e5e7eb; padding-bottom: 16px; }
.article-body h2 { margin: 32px 0 12px; color: var(--navy); }
.article-body h3 { margin: 24px 0 8px; }
/* Заголовки на страницах услуг — менее агрессивные чем H1 */
.service-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.service-content h3 { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin: 20px 0 8px; }
.service-content p  { margin-bottom: 14px; line-height: 1.7; }
.service-content ul, .service-content ol { margin: 0 0 14px 22px; }
.service-content li { margin-bottom: 5px; line-height: 1.65; }
.service-content strong { color: var(--navy); }
.article-body p  { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 24px; }
.article-body li { margin-bottom: 6px; }
.article-body table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.article-body th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-size: .9rem; }
.article-body td { padding: 10px 14px; border-bottom: 1px solid #e5e7eb; font-size: .9rem; }
.article-body tr:nth-child(even) td { background: var(--light); }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: var(--light); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.sidebar-widget h4 { margin-bottom: 16px; color: var(--navy); }
.sidebar-toc a { display: block; font-size: .88rem; color: var(--dark); padding: 4px 0; border-left: 2px solid #e5e7eb; padding-left: 12px; margin-bottom: 4px; transition: .15s; }
.sidebar-toc a:hover { border-color: var(--orange); color: var(--navy); }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy), #2d5a8e);
  padding: 56px 0 48px;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---- PRICE TABLE ---- */
.price-table { width: 100%; border-collapse: collapse; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.price-table th { background: var(--navy); color: var(--white); padding: 14px 20px; text-align: left; font-size: .9rem; }
.price-table td { padding: 14px 20px; border-bottom: 1px solid #e5e7eb; font-size: .9rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--light); }
.price-table .price { font-weight: 700; color: var(--orange); }
.price-highlight { background: var(--orange) !important; }
.price-highlight td { color: var(--white) !important; font-weight: 600; }

/* ---- FAQ ---- */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; font-family: inherit; color: var(--dark);
}
.faq-question:hover { color: var(--navy); }
.faq-arrow { font-size: 1.2rem; transition: transform .2s; color: var(--orange); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 20px; color: #374151; font-size: .95rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ---- CONTACTS ---- */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; }
.contact-item__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-item__label { font-size: .8rem; color: var(--gray); margin-bottom: 2px; }
.contact-item__value { font-weight: 600; font-size: 1rem; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; height: 400px; background: var(--light); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 56px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand .logo__name { color: var(--white); }
.footer__brand .logo__tag  { color: rgba(255,255,255,.4); }
.footer__brand p { font-size: .88rem; margin-top: 12px; color: rgba(255,255,255,.55); max-width: 260px; }
.footer__phone { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-top: 16px; display: block; }
.footer h4 { color: var(--white); font-size: .9rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer ul a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: .8rem; flex-wrap: wrap; gap: 8px; }

/* ---- RESPONSIVE ---- */

/* Планшет широкий: 1024px */
@media (max-width: 1024px) {
  .hero__inner    { grid-template-columns: 1fr; }
  .lead-form      { max-width: 480px; }
  .adv-grid       { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .projects-grid  { grid-template-columns: repeat(2, 1fr); }
  .blog-grid      { grid-template-columns: repeat(2, 1fr); }
  .steps          { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .steps::before  { display: none; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* Планшет узкий: 768px */
@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 16px; border-top: 1px solid #e5e7eb; box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 100; }
  .nav.open { display: flex; }
  .nav > a { padding: 12px 16px; }
  .nav__item { width: 100%; }
  .nav__trigger { width: 100%; padding: 12px 16px !important; justify-content: center; }
  .nav__dropdown { position: static; box-shadow: none; border: none; background: var(--light); border-radius: 8px; margin-top: 4px; padding: 8px; }
  /* На мобиле — компактная 2-колоночная сетка ссылок */
  .nav__dropdown { display: none; grid-template-columns: 1fr 1fr; gap: 4px; }
  .nav__item.open .nav__dropdown { display: grid; }
  .nav__dropdown hr.nav__dropdown-divider { display: none; }
  /* Первая ссылка (Все услуги) — на всю ширину */
  .nav__dropdown a:first-child { grid-column: 1 / -1; background: var(--white); border-radius: 6px; }
  .nav__dropdown a { padding: 10px 12px; border-radius: 6px; background: var(--white); }
  .nav__dropdown a .dd-sub { display: none; }
  .nav__dropdown a .dd-icon { font-size: .95rem; }
  .nav__dropdown a .dd-title { font-size: .82rem; }
  .burger { display: flex; }
  .services-grid  { grid-template-columns: 1fr; }
  .projects-grid  { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .steps          { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid  { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  /* Таблицы — горизонтальный скролл */
  .article-body table,
  .price-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* Карточка проекта — мета в 2 строки */
  .project-card__meta { flex-wrap: wrap; gap: 8px; }
  /* Хедер: скрыть телефон, оставить только кнопку */
  .header__phone span { display: none; }
}

/* Мобильный: 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 1.7rem; }
  .hero__stats { flex-wrap: wrap; gap: 12px; }
  .hero__stat { min-width: 120px; }
  .adv-grid { grid-template-columns: 1fr; }
  .steps    { grid-template-columns: 1fr; }
  .section  { padding: 40px 0; }
  .section__head { margin-bottom: 28px; }
  .section__head h2 { font-size: 1.4rem; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner__actions { flex-direction: column; gap: 12px; }
  .cta-banner__actions .btn { width: 100%; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  /* Теги проекта не переполняют карточку */
  .project-card__meta { font-size: .78rem; gap: 6px; }
  .project-card__tags { gap: 4px; }
  .tag { font-size: .7rem; padding: 2px 8px; }
  /* Блок параметров проекта всегда 2x2, ничего не ломаем */
  .project-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ---- UTILS ---- */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.tag { display: inline-block; background: var(--light); color: var(--navy); font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.tag--orange { background: #fff3e0; color: var(--orange); }
.divider { border: none; border-top: 1px solid #e5e7eb; margin: 48px 0; }
