/* ==========================================================================
   Krystal Travel — shared stylesheet (design tokens + chrome + motion)
   Cloned 1:1 from https://www.krystaltravelco.com (Wix source).
   Fonts loaded via <link> in each page <head> (Poppins ~ Wix Madefor,
   Dancing Script ~ the Wix script accent face).
   Page subagents append page-scoped rules only, under a banner beginning
   with the word page: followed by the slug.
   ========================================================================== */

:root {
  --primary: #2a3a8c;        /* headings + links (deep indigo) */
  --primary-2: #3d4ea6;      /* buttons + footer (royal indigo) */
  --primary-3: #33429a;      /* overlay panels */
  --ink: #3f3f46;            /* body text */
  --muted: #6b6b74;
  --line: #e6e6ec;
  --bg: #ffffff;
  --bg-alt: #f3efec;         /* warm beige section */
  --bg-soft: #f6f7fb;
  --footer: #3d4ea6;
  --white: #ffffff;
  --radius: 10px;
  --radius-sm: 5px;
  --shadow: 0 18px 40px rgba(20, 25, 60, .12);
  --shadow-sm: 0 8px 20px rgba(20, 25, 60, .08);
  --maxw: 1180px;
  --sans: "Poppins", "Segoe UI", Helvetica, Arial, sans-serif;
  --script: "Dancing Script", "Poppins", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  color: var(--primary);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 600;
}

p { margin: 0 0 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--script);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 .35rem;
  line-height: 1;
}

.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--primary-2);
  background: var(--primary-2);
  color: #fff;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn:hover { background: var(--primary); border-color: var(--primary); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary-2);
}
.btn-outline:hover { background: var(--primary-2); color: #fff; }

/* outline button on a dark/photo hero: white text + white border */
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.btn-ghost:hover { background: #fff; color: var(--primary); }

/* white pill badge (Se Habla Español) — decorative only, not a control */
.pill-badge {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  border: 1.5px solid #fff;
  border-radius: 999px;
  padding: 11px 30px;
  font-weight: 600;
}

/* ---- Header / nav --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img { width: 200px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: #33343a;
  font-weight: 400;
  font-size: 1rem;
  padding: 6px 2px;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--primary); text-decoration: none; }
.main-nav a.active { color: var(--primary); font-weight: 500; }
.main-nav a.btn-nav {
  background: var(--primary-2);
  color: #fff;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.main-nav a.btn-nav:hover { background: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
  line-height: 1;
}

/* ---- Inner-page banner (San Antonio skyline) ------------------------------ */
.page-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-banner img.band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,28,72,.35), rgba(20,28,72,.45));
  z-index: 1;
}
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  margin: 0;
}

/* ---- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--footer);
  color: #eef0fb;
  padding: 64px 0 0;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.site-footer h4 { color: #fff; font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.site-footer p { color: #dfe2f6; font-size: .95rem; margin: 0 0 .55rem; }
.site-footer a { color: #dfe2f6; font-size: .95rem; display: block; margin-bottom: .55rem; }
.site-footer a:hover { color: #fff; }
.f-logo { width: 190px; height: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.f-brand p { max-width: 300px; }
.f-social { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.f-social span { font-size: .95rem; color: #dfe2f6; }
.f-social a { margin: 0; }
.f-social img { width: 17px; height: 17px; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  text-align: center;
  padding: 18px 24px;
  font-size: .85rem;
  color: #cfd3ef;
  background: #eceef4;
}
.footer-bottom { color: #7d7f8c; background: #eceef4; border-top: none; }

/* ---- Motion (ported from the Wix source's fade / float / slide reveals) ----
   Pure-CSS, on-load. animation-fill-mode:both means the element ALWAYS ends
   visible even though it starts transparent, because the animation always runs.
   No stylesheet rule ever leaves real content hidden. ------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(40px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal { animation: fadeUp .8s ease both; }
.reveal-2 { animation: fadeUp .8s ease .15s both; }
.reveal-3 { animation: fadeUp .8s ease .3s both; }
.float-in { animation: floatIn .9s ease both; }
.fade-in { animation: fadeIn 1s ease both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Shared cards / grids ------------------------------------------------- */
.lead { color: var(--muted); max-width: 720px; margin: 0 auto; }
.center { text-align: center; }

/* ---- Responsive ----------------------------------------------------------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 30px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; }
  .main-nav a.btn-nav { text-align: center; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   page: index
   ========================================================================== */
.home-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero img.band-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.home-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(15,22,60,.62) 0%, rgba(15,22,60,.35) 55%, rgba(15,22,60,.15) 100%);
}
.home-hero .wrap { position: relative; z-index: 2; }
.home-hero .hero-inner { max-width: 560px; color: #fff; }
.home-hero .eyebrow { color: #fff; }
.home-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.25rem); font-weight: 600; margin-bottom: .5rem; }
.home-hero p { color: #eef0fb; font-size: 1.02rem; margin-bottom: 1.6rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }

.about-home { position: relative; overflow: hidden; background: #fff; }
.about-home .map-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .07; z-index: 0;
}
.about-home .wrap { position: relative; z-index: 1; }
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo img.person { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.exp-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--primary-2); color: #fff;
  border-radius: var(--radius-sm); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-sm);
}
.exp-badge img { width: 34px; height: 34px; filter: brightness(0) invert(1); }
.exp-badge .num { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.exp-badge .lbl { font-size: .78rem; line-height: 1.1; }
.about-home h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }

.services-home { position: relative; overflow: hidden; padding: 84px 0; }
.services-home .svc-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .63; z-index: 0; }
.services-home .wrap { position: relative; z-index: 1; }
.services-intro { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.services-intro h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.svc-card { position: relative; overflow: hidden; background: #e8e6e6; }
.svc-card img { width: 100%; height: 300px; object-fit: cover; }
.svc-card .svc-body { padding: 20px 22px 26px; }
.svc-card h3 { color: var(--primary); font-size: 1.05rem; margin-bottom: .4rem; }
.svc-card p { color: var(--muted); font-size: .92rem; margin: 0; }

.travel-way { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: center; }
.travel-way img.band-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.travel-way::after { content: ""; position: absolute; inset: 0; background: rgba(15,22,60,.25); z-index: 1; }
.travel-way .wrap { position: relative; z-index: 2; display: flex; justify-content: center; }
.tw-panel { background: rgba(45,58,140,.86); color: #fff; padding: 46px 44px; border-radius: var(--radius); max-width: 620px; margin-left: auto; }
.tw-panel .eyebrow { color: #fff; }
.tw-panel h2 { color: #fff; font-size: 2rem; }
.tw-panel p { color: #e7eafb; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.stat-box { border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius-sm); padding: 18px 20px; }
.stat-box .stat-num { font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-box .stat-lbl { font-size: .85rem; color: #d9ddf6; }

.testi-home { text-align: center; }
.testi-home .services-intro { margin-bottom: 30px; }
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 40px; text-align: left; }
.testi-card { position: relative; padding-top: 30px; }
.testi-card .quote-mark { font-family: Georgia, serif; font-size: 3rem; color: #c9cee8; position: absolute; top: -6px; right: 6px; line-height: 1; }
.testi-card .who { color: var(--primary); font-weight: 600; font-size: .95rem; margin-bottom: .5rem; }
.testi-card p { color: var(--muted); font-size: .9rem; }
.stars { color: #f2b500; margin-top: 8px; letter-spacing: 2px; }

.marquee-band { position: relative; overflow: hidden; height: 110px; display: flex; align-items: center; }
.marquee-band img.band-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.marquee-band::after { content: ""; position: absolute; inset: 0; background: rgba(45,58,140,.55); z-index: 1; }
.marquee-track { position: relative; z-index: 2; display: flex; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee-track span { color: #fff; font-size: 1.6rem; font-weight: 600; padding: 0 32px; }

.packages { position: relative; overflow: hidden; }
.packages img.band-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.packages::after { content: ""; position: absolute; inset: 0; background: rgba(15,22,60,.30); z-index: 1; }
.packages .wrap { position: relative; z-index: 2; }
.pkg-panel { background: rgba(255,255,255,.94); border-radius: var(--radius); padding: 46px 40px; box-shadow: var(--shadow); }
.pkg-panel .services-intro { margin-bottom: 34px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pkg-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-align: center; box-shadow: var(--shadow-sm); }
.pkg-card .pkg-img { position: relative; }
.pkg-card .pkg-img img { width: 100%; height: 180px; object-fit: cover; }
.pkg-card .tag { position: absolute; top: 12px; right: 12px; background: var(--primary-2); color: #fff; font-family: var(--script); font-size: 1rem; padding: 3px 14px; border-radius: 4px; }
.pkg-card .pkg-body { padding: 20px 22px 26px; }
.pkg-card h4 { color: var(--primary); font-size: 1.05rem; }
.pkg-card p { color: var(--muted); font-size: .9rem; }

.contact-home { position: relative; overflow: hidden; }
.contact-home .map-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; z-index: 0; }
.contact-home .wrap { position: relative; z-index: 1; }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3.2vw, 2.3rem); }
.contact-info .ci-row { margin: 18px 0; }
.contact-info .ci-row strong { color: var(--primary); display: block; font-weight: 600; }

/* Shared form styling (contact + home) */
.lead-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 32px;
}
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lead-form .field { margin-bottom: 18px; }
.lead-form label { display: block; font-size: .92rem; color: #4a4a52; margin-bottom: 6px; }
.lead-form input, .lead-form textarea {
  width: 100%; border: 0; border-bottom: 1.5px solid #cfcfd8; background: transparent;
  padding: 8px 2px; font-family: var(--sans); font-size: 1rem; color: var(--ink);
}
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-bottom-color: var(--primary-2); }
.lead-form textarea { min-height: 92px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.map-embed { width: 100%; height: 380px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
#kt-map { width: 100%; height: 380px; }
.map-strip { position: relative; z-index: 1; width: 100%; height: 380px; margin-top: 48px; }
.map-strip #kt-map { height: 100%; }

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .split, .contact-split { grid-template-columns: 1fr; gap: 34px; }
  .tw-panel { margin: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .lead-form .row { grid-template-columns: 1fr; }
  .home-hero { min-height: 480px; }
}

/* ==========================================================================
   page: about
   ========================================================================== */
.about-main { position: relative; overflow: hidden; background: #fff; }
.about-main .map-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .07; z-index: 0; }
.about-main .wrap { position: relative; z-index: 1; }
.trust-band { position: relative; overflow: hidden; min-height: 460px; display: flex; align-items: center; }
.trust-band img.band-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.trust-band::after { content: ""; position: absolute; inset: 0; background: rgba(15,22,60,.35); z-index: 1; }
.trust-band .wrap { position: relative; z-index: 2; }
.trust-panel { background: rgba(45,58,140,.80); color: #fff; padding: 48px 46px; border-radius: var(--radius); max-width: 940px; margin: 0 auto; text-align: center; }
.trust-panel .eyebrow { color: #fff; }
.trust-panel h2 { color: #fff; }
.trust-panel p { color: #e7eafb; }
.vp-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; align-items: stretch; }
.vp-row .about-video { max-width: none; margin: 0; border-radius: var(--radius) 0 0 var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.vp-row .about-video .ratio { height: 100%; padding-top: 0; border-radius: 0; box-shadow: none; }
.vp-row .passion-panel { border-radius: 0 var(--radius) var(--radius) 0; max-width: none; margin: 0; display: flex; flex-direction: column; justify-content: center; }
.about-video .ratio { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.passion-panel { background: var(--primary-2); color: #fff; border-radius: var(--radius); padding: 48px 46px; max-width: 620px; margin-left: auto; }
.passion-panel .eyebrow, .passion-panel h2 { color: #fff; }
.passion-panel p { color: #e7eafb; }
@media (max-width: 780px) {
  .vp-row { grid-template-columns: 1fr; }
  .vp-row .about-video { border-radius: var(--radius); }
  .vp-row .passion-panel { border-radius: var(--radius); }
}

/* ==========================================================================
   page: services
   ========================================================================== */
.svc-alt { background: var(--bg-alt); }
.svc-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; background: #fff; }
.svc-feature .txt { padding: 54px 48px; display: flex; flex-direction: column; justify-content: center; }
.svc-feature .img img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.svc-feature h3 { font-size: 1.7rem; }
.svc-feature p { color: var(--muted); }
.svc-feature.reverse .txt { order: 2; }
@media (max-width: 820px) {
  .svc-feature, .svc-feature.reverse { grid-template-columns: 1fr; }
  .svc-feature.reverse .txt { order: 0; }
  .svc-feature .img img { min-height: 240px; }
}

/* ==========================================================================
   page: testimonials
   ========================================================================== */
.testi-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testi-page-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px 26px; position: relative; box-shadow: var(--shadow-sm); }
.testi-page-card .quote-mark { font-family: Georgia, serif; font-size: 3rem; color: #c9cee8; position: absolute; top: 8px; right: 18px; line-height: 1; }
.testi-page-card .who { color: var(--primary); font-weight: 600; margin-bottom: .6rem; }
.testi-page-card p { color: var(--muted); font-size: .95rem; margin: 0; }
.testi-page-card .stars { color: #f2b500; margin-top: 10px; letter-spacing: 2px; }
@media (max-width: 700px) { .testi-page-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   page: blog
   ========================================================================== */
.blog-list { max-width: 920px; margin: 0 auto; }
.all-posts { color: var(--primary); font-weight: 600; margin-bottom: 26px; }
.post-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 34px; box-shadow: var(--shadow-sm); background: #fff; }
.post-card .pc-img img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.post-card .pc-body { padding: 30px 32px; }
.post-meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .85rem; margin-bottom: 14px; }
.post-meta .avatar { width: 34px; height: 34px; border-radius: 50%; background: #d9dbe6; }
.post-card h2 { font-size: 1.5rem; color: #1f1f28; margin-bottom: .6rem; }
.post-card h2 a { color: #1f1f28; }
.post-card h2 a:hover { color: var(--primary); text-decoration: none; }
.post-card .excerpt { color: var(--muted); font-size: .95rem; }
.post-stats { display: flex; gap: 18px; color: var(--muted); font-size: .82rem; margin-top: 18px; border-top: 1px solid var(--line); padding-top: 14px; }
@media (max-width: 720px) { .post-card { grid-template-columns: 1fr; } .post-card .pc-img img { min-height: 220px; } }

/* ==========================================================================
   page: post (shared blog-post layout)
   ========================================================================== */
.post-article { max-width: 760px; margin: 0 auto; }
.post-article .back { color: var(--primary); font-weight: 600; font-size: .9rem; }
.post-article .post-meta { margin-top: 20px; }
.post-article h1 { font-size: clamp(1.9rem, 3.4vw, 2.4rem); color: #1f1f28; margin: 12px 0 22px; }
.post-hero { width: 100%; height: auto; border-radius: var(--radius); margin-bottom: 30px; box-shadow: var(--shadow-sm); }
.post-article h2 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; color: #1f1f28; margin: 34px 0 12px; font-weight: 700; }
.post-article h2.italic { font-style: italic; text-transform: uppercase; }
.post-article p { color: #46464e; font-size: 1.02rem; }
.post-article ul { color: #46464e; font-size: 1.02rem; margin: 0 0 1rem; padding-left: 1.25rem; }
.post-article ul li { margin-bottom: .4rem; }
.post-article p strong { color: #1f1f28; font-weight: 600; }
.post-body-img { border-radius: var(--radius); margin: 20px 0; box-shadow: var(--shadow-sm); }
.post-body-img.right { float: right; max-width: 320px; margin: 6px 0 20px 28px; }
.related { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 30px; clear: both; }
.related h3 { color: #1f1f28; font-size: 1.2rem; margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.related-card img { width: 100%; height: 150px; object-fit: cover; border-radius: var(--radius); }
.related-card .rc-title { color: #1f1f28; font-weight: 600; font-size: .95rem; margin-top: 10px; display: block; }
.related-card .rc-title:hover { color: var(--primary); text-decoration: none; }
@media (max-width: 620px) {
  .related-grid { grid-template-columns: 1fr; }
  .post-body-img.right { float: none; max-width: 100%; margin: 20px 0; }
}
