/* =========================================================
   Dra. Kerla Santos — Site Médico
   Estilo global do site
   ========================================================= */

:root {
  --navy: #27356f;
  --navy-light: #4a5a8a;
  --rose: #d38a96;
  --rose-hover: #c97a86;
  --rose-light: #f0d4dd;
  --rose-mid: #e8b4c0;
  --white: #ffffff;
  --gray-50: #f5f5f5;
  --gray-100: #f0f0f0;
  --gray-600: #555b6e;
  --gray-700: #3d4152;
  --radius: 0.65rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(39, 53, 111, 0.08);
  --shadow-md: 0 8px 24px rgba(39, 53, 111, 0.1);
  --shadow-lg: 0 20px 45px rgba(39, 53, 111, 0.16);
  --container-w: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  margin: 0 0 0.6em;
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--rose-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline-rose {
  background: transparent;
  border-color: var(--rose);
  color: var(--rose);
}
.btn-outline-rose:hover {
  background: rgba(211, 138, 150, 0.1);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: #1c274f;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rose-mid);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--rose);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--navy);
}
.nav-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--rose-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: calc(100vh - 73px);
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 26, 56, 0.72) 0%, rgba(20, 26, 56, 0.35) 55%, rgba(211, 138, 150, 0.25) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
}
.hero-content {
  max-width: 640px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 0.45em;
}
.hero p.lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
  margin-bottom: 2em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .hero { min-height: 480px; }
}

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--rose) 150%);
  color: var(--white);
  padding: 64px 0;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.4em;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
  margin: 0;
}

/* ---------- Sections ---------- */
section {
  padding: 88px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section-head p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 2px solid var(--rose-mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.grid {
  display: grid;
  gap: 32px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Specialty card */
.specialty-card {
  display: flex;
  flex-direction: column;
}
.specialty-card .thumb {
  height: 220px;
  background: var(--gray-100);
  overflow: hidden;
}
.specialty-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.specialty-card:hover .thumb img {
  transform: scale(1.06);
}
.specialty-card .thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--rose));
}
.specialty-card .thumb.placeholder svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.9);
}
.specialty-card .body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.specialty-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(211, 138, 150, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--rose);
}
.specialty-icon svg { width: 24px; height: 24px; }

.specialty-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.specialty-card .short-desc {
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 18px;
}
.specialty-card .details {
  margin-bottom: 24px;
  flex: 1;
}
.specialty-card .details li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--gray-600);
  margin-bottom: 8px;
  font-size: 0.94rem;
}
.specialty-card .details li::before {
  content: "\2713";
  color: var(--rose);
  font-weight: 700;
  margin-top: 1px;
}
.specialty-card .card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
.specialty-card .card-actions .btn { flex: 1; }

/* Home specialty mini-card */
.mini-card {
  background: var(--white);
  border: 2px solid var(--rose-mid);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color .25s ease;
}
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.mini-card .specialty-icon {
  margin: 0 auto 16px;
}
.mini-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.mini-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Feature list (icon + text row) ---------- */
.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.feature-row .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(211, 138, 150, 0.15);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-row .icon svg { width: 22px; height: 22px; }
.feature-row h4 {
  margin: 0 0 4px;
  font-size: 1.02rem;
  color: var(--navy);
}
.feature-row p {
  margin: 0;
  color: var(--gray-600);
  font-size: .92rem;
}
.hero .feature-row p,
.cta-band .feature-row p {
  color: rgba(255,255,255,.85);
}

/* ---------- Explore tabs (Home) ---------- */
.tabs-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.tab-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-btn {
  text-align: left;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--rose-mid);
  background: var(--white);
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s ease;
}
.tab-btn:hover { border-color: var(--rose); }
.tab-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}
.tab-panel {
  display: none;
  background: var(--white);
  border-left: 4px solid var(--rose);
  box-shadow: var(--shadow-md);
  padding: 36px;
  border-radius: var(--radius);
}
.tab-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px) {
  .tabs-wrap { grid-template-columns: 1fr; }
  .tab-list { flex-direction: row; flex-wrap: wrap; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--rose));
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ---------- Stats ---------- */
.stats-box {
  background: linear-gradient(120deg, rgba(39,53,111,.08), rgba(211,138,150,.1));
  border-radius: var(--radius-xl);
  padding: 56px 40px;
}
.stat {
  text-align: center;
}
.stat .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--rose);
  margin-bottom: 6px;
}
.stat .label {
  font-weight: 600;
  color: var(--gray-700);
}

/* ---------- Testimonials ---------- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rose-mid);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-stars {
  color: var(--rose);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.review-card p.text {
  color: var(--gray-700);
  flex: 1;
  margin-bottom: 18px;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
}
.review-meta .name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}
.review-meta .date {
  font-size: 0.8rem;
  color: #9099b3;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rose);
  background: rgba(211,138,150,.12);
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 8px;
}

/* ---------- Disease / condition blocks ---------- */
.condition-card {
  background: var(--gray-50);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius);
  padding: 26px;
}
.condition-card:nth-child(even) {
  border-left-color: var(--navy);
}
.condition-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.condition-card .symptoms {
  font-size: 0.92rem;
  color: var(--gray-600);
}
.condition-card .symptoms strong {
  color: var(--navy);
}

.cause-block h3 {
  font-size: 1.15rem;
  color: var(--rose);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rose-light);
}
.cause-block ul li {
  padding: 6px 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.callout {
  background: var(--white);
  border: 2px solid var(--rose);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.callout.solid {
  background: linear-gradient(120deg, rgba(39,53,111,.06), rgba(211,138,150,.08));
  border: none;
}
.warning-box {
  background: #fff4f0;
  border-left: 4px solid var(--rose);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-weight: 600;
  color: #7a3b45;
}

/* ---------- FAQ accordion ---------- */
.accordion-item {
  border-bottom: 1px solid var(--rose-mid);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
}
.accordion-trigger .plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.accordion-trigger .plus::before,
.accordion-trigger .plus::after {
  content: "";
  position: absolute;
  background: var(--rose);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-trigger .plus::before { width: 16px; height: 2px; }
.accordion-trigger .plus::after { width: 2px; height: 16px; transition: transform .25s ease; }
.accordion-item.open .accordion-trigger .plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel .inner {
  padding: 0 4px 24px;
  color: var(--gray-600);
}
.faq-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.faq-filter button {
  padding: 9px 20px;
  border-radius: 999px;
  border: 2px solid var(--rose-mid);
  background: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  transition: all .2s ease;
}
.faq-filter button.active,
.faq-filter button:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--gray-700);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(211,138,150,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 0.82rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: 14px;
}

/* ---------- Contact info list ---------- */
.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--rose-mid);
  border-radius: var(--radius-lg);
  background: var(--white);
  margin-bottom: 20px;
}
.info-card .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(211,138,150,.12);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card .icon svg { width: 24px; height: 24px; }
.info-card h4 { margin-bottom: 4px; font-size: 1.05rem; }
.info-card p { margin: 0 0 4px; color: var(--gray-600); font-size: 0.93rem; }
.info-card a.inline-link {
  color: var(--rose);
  font-weight: 600;
  font-size: 0.88rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.94rem;
}
.hours-table td:first-child { font-weight: 700; color: var(--navy); }
.hours-table td:last-child { text-align: right; color: var(--gray-600); }
.hours-table tr:last-child td { border-bottom: none; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rose-mid);
  height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.9rem;
  max-width: 34ch;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--rose); }
.footer-social svg { width: 18px; height: 18px; }

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}
.site-footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
.site-footer a:hover { color: var(--rose); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}
.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; color: white; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--gray-600); }
.max-w { max-width: 720px; margin-left: auto; margin-right: auto; }

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(211,138,150,.12);
  color: var(--rose);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 999px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.2em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--gray-700);
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 1em;
}
.legal-content ul li { margin-bottom: 8px; }
.legal-updated {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 2.5em;
}

/* ---------- Blog ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card .thumb { height: 190px; overflow: hidden; position: relative; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card .thumb .tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--rose); color: #fff; font-size: .72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
}
.blog-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { font-size: .78rem; color: var(--gray-600); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card p { color: var(--gray-600); font-size: .92rem; flex: 1; }
.blog-card .read-more { color: var(--rose); font-weight: 700; font-size: .88rem; margin-top: 12px; }

.article-meta-row {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  color: rgba(255,255,255,.85); font-size: .88rem; margin-top: 10px;
}
.article-tag {
  display: inline-block; background: rgba(255,255,255,.18); color: #fff;
  font-size: .75rem; font-weight: 700; padding: 4px 14px; border-radius: 999px;
  margin-bottom: 14px;
}
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 1.5rem; margin-top: 1.8em; }
.article-body p { font-size: 1.03rem; }
.article-body ul { list-style: disc; padding-left: 22px; margin-bottom: 1.2em; }
.article-body ul li { margin-bottom: 8px; }
.article-cover {
  max-width: 760px; margin: -56px auto 40px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); position: relative; z-index: 3;
}
.article-cover img { width: 100%; max-height: 360px; object-fit: cover; }
.share-row {
  display: flex; align-items: center; gap: 12px; margin: 40px auto 0; max-width: 760px;
  padding-top: 28px; border-top: 1px solid var(--gray-100);
}
.share-row span.label { font-weight: 700; color: var(--navy); font-size: .88rem; margin-right: 6px; }
.share-btn {
  width: 40px; height: 40px; border-radius: 999px; background: var(--gray-50);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
  border: 1px solid var(--rose-mid); transition: background .2s ease, color .2s ease;
}
.share-btn:hover { background: var(--rose); color: #fff; }
.share-btn svg { width: 18px; height: 18px; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--rose);
  font-size: .9rem; margin-bottom: 24px;
}
.disclaimer-note {
  max-width: 760px; margin: 32px auto 0; background: var(--gray-50);
  border-left: 4px solid var(--rose); border-radius: var(--radius);
  padding: 18px 22px; font-size: .88rem; color: var(--gray-600);
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.error-page .code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.2em;
}
