/* ============================================================
   International Spa Awards 2026
   blog.css — Blog Article Page Styles
   ============================================================ */

/* ===== BLOG HERO ===== */
.blog-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 74px;
}
.bh-img {
  position: absolute;
  inset: 0;
}
.bh-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.bh-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,18,1) 0%, rgba(14,14,18,0.82) 35%, rgba(14,14,18,0.45) 100%);
}
.blog-hero .wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--w);
  margin-bottom: 18px;
  letter-spacing: -.3px;
  line-height: 1.1;
  max-width: 860px;
}
.blog-hero h1 em { color: var(--g); font-style: italic; }
.bh-desc {
  font-size: 1.18rem;
  color: var(--t2);
  max-width: 680px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 24px;
}
.bh-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--t3);
  flex-wrap: wrap;
  letter-spacing: 0.3px;
}
.bh-sep { color: rgba(200,169,106,0.4); }
.blog-hero .blog-tag { margin-bottom: 20px; }

/* ===== ARTICLE WRAPPER ===== */
.art-wrap {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 68px;
  align-items: start;
}

/* ===== ARTICLE MAIN CONTENT ===== */
.art-main { min-width: 0; }

.art-lead {
  font-size: 1.18rem;
  color: var(--t1);
  line-height: 1.88;
  font-weight: 300;
  border-left: 3px solid var(--g);
  padding-left: 26px;
  margin-bottom: 44px;
}

.art-main h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--w);
  margin: 52px 0 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(200,169,106,.12);
  line-height: 1.2;
}
.art-main h2 em { color: var(--g); font-style: italic; }

.art-main h3 {
  font-size: 1.35rem;
  color: var(--t1);
  margin: 34px 0 14px;
  line-height: 1.3;
}

.art-main p {
  font-size: 1.08rem;
  color: var(--t2);
  line-height: 1.92;
  font-weight: 300;
  margin-bottom: 20px;
}

.art-main strong { color: var(--t1); font-weight: 500; }

/* ===== ARTICLE IMAGE ===== */
.art-img {
  margin: 44px 0;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(200,169,106,.1);
}
.art-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s var(--ease);
}
.art-img:hover img { transform: scale(1.02); }
.art-img figcaption {
  padding: 14px 20px;
  font-size: 0.82rem;
  color: var(--t3);
  background: var(--n2);
  letter-spacing: 0.3px;
  font-style: italic;
}
.art-img-sm img { height: auto; }
.art-img-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 44px 0;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(200,169,106,.1);
}
.art-img-half img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== PULL QUOTE ===== */
.art-quote {
  margin: 48px 0;
  padding: 36px 40px 36px 44px;
  background: var(--n2);
  border-left: 4px solid var(--g);
  border-radius: 0 var(--r) var(--r) 0;
  position: relative;
}
.art-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  color: rgba(200,169,106,.07);
  position: absolute;
  top: -12px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}
.art-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--t1);
  line-height: 1.58;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
  border: none;
  padding: 0;
}
.art-quote cite {
  font-size: 0.78rem;
  color: var(--g);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
}

/* ===== KEY STATS ===== */
.art-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 44px 0;
}
.art-stat {
  background: var(--n2);
  padding: 30px 22px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.04);
}
.art-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--g);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.art-stat-l {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--t3);
  line-height: 1.5;
}

/* ===== INFO CARDS ===== */
.art-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 40px 0;
}
.art-card {
  background: var(--n2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: var(--tr);
}
.art-card:hover {
  border-color: rgba(200,169,106,.22);
  transform: translateY(-2px);
}
.art-card-ico {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.art-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--g);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.art-card p {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.72;
  font-weight: 300;
  margin: 0;
  border: none;
  padding: 0;
}

/* ===== CHECKLIST ===== */
.art-checklist {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
}
.art-checklist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 1.05rem;
  color: var(--t2);
  line-height: 1.75;
  font-weight: 300;
}
.art-checklist li::before {
  content: '◆';
  color: var(--g);
  font-size: .45rem;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ===== INFO BOX ===== */
.art-infobox {
  background: linear-gradient(135deg, rgba(200,169,106,.06), rgba(200,169,106,.02));
  border: 1px solid rgba(200,169,106,.22);
  border-radius: var(--r);
  padding: 28px 32px;
  margin: 40px 0;
}
.art-infobox-head {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.art-infobox p {
  font-size: 1.02rem;
  color: var(--t2);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 12px;
}
.art-infobox p:last-child { margin-bottom: 0; }

/* ===== INTERNAL LINKS BOX ===== */
.art-internal {
  background: var(--n3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  padding: 26px 30px;
  margin: 44px 0;
}
.art-internal h4 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.art-internal ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.art-internal ul li a {
  font-size: 1rem;
  color: var(--g);
  font-weight: 400;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.art-internal ul li a::before { content: '→'; flex-shrink: 0; }
.art-internal ul li a:hover { color: var(--g2); }

/* ===== STEP BLOCK ===== */
.art-steps { margin: 36px 0; display: flex; flex-direction: column; gap: 0; }
.art-step {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  align-items: flex-start;
}
.art-step:last-child { border-bottom: none; }
.art-step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--g), var(--g3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--n0);
  flex-shrink: 0;
}
.art-step-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 8px;
}
.art-step-body p {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.78;
  font-weight: 300;
  margin: 0;
}

/* ===== SIDEBAR ===== */
.art-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-cta {
  background: linear-gradient(135deg, rgba(200,169,106,.12), rgba(200,169,106,.04));
  border: 1px solid rgba(200,169,106,.28);
  border-radius: var(--r);
  padding: 32px 26px;
  text-align: center;
}
.sidebar-cta h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--w);
  margin-bottom: 12px;
  line-height: 1.25;
}
.sidebar-cta p {
  font-size: .95rem;
  color: var(--t2);
  line-height: 1.72;
  margin-bottom: 22px;
  font-weight: 300;
}
.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  text-decoration: none;
  display: flex;
}

.sidebar-box {
  background: var(--n2);
  border: 1px solid rgba(200,169,106,.1);
  border-radius: var(--r);
  padding: 24px 22px;
}
.sidebar-box > h4 {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,169,106,.12);
}

.sb-link {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
}
.sb-link:last-child { border-bottom: none; padding-bottom: 0; }
.sb-link:hover { opacity: .8; }
.sb-link-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--r);
  flex-shrink: 0;
}
.sb-link-txt span {
  font-size: .63rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--g);
  display: block;
  margin-bottom: 5px;
}
.sb-link-txt p {
  font-size: .88rem;
  color: var(--t1);
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

.sb-gala {
  background: var(--n3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  padding: 22px;
}
.sb-gala h4 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 14px;
}
.sb-gala-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: .9rem;
  color: var(--t2);
  font-weight: 300;
}
.sb-gala-row:last-of-type { margin-bottom: 16px; }
.sb-gala-ic { color: var(--g); flex-shrink: 0; }

/* ===== RELATED SECTION ===== */
.rel-section {
  background: var(--n2);
  padding: 80px 0;
  border-top: 1px solid rgba(200,169,106,.08);
}

/* ===== ARTICLE DIVIDER ===== */
.art-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--g), rgba(200,169,106,.1), transparent);
  margin: 48px 0;
}

/* ===== AUTHOR BOX ===== */
.art-author {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--n2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r);
  padding: 26px 28px;
  margin: 52px 0 0;
}
.art-author-av {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--g3), var(--n3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--g);
  border: 2px solid rgba(200,169,106,.2);
  flex-shrink: 0;
}
.art-author-txt span {
  font-size: .68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 5px;
  display: block;
}
.art-author-txt h4 { font-size: 1rem; font-weight: 500; margin-bottom: 6px; }
.art-author-txt p { font-size: .9rem; color: var(--t2); line-height: 1.65; font-weight: 300; margin: 0; }

/* ===== TAG LIST ===== */
.art-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0;
}
.art-tag {
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--t2);
  background: var(--n3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 6px 14px;
  transition: var(--tr);
  cursor: default;
}
.art-tag:hover { border-color: rgba(200,169,106,.25); color: var(--g); }

/* ===== NAV BLOG OVERRIDE ===== */
.nav a { text-decoration: none; }
.nav .nav-brand { text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .art-wrap {
    width: 95%;
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 52px 0 72px;
  }
  .art-sidebar { position: static; }
}
@media (max-width: 768px) {
  .blog-hero { min-height: 400px; }
  .art-stats { grid-template-columns: 1fr; gap: 3px; }
  .art-cards { grid-template-columns: 1fr; }
  .art-img-half { grid-template-columns: 1fr; }
  .art-img-half img { height: auto; }
  .art-img img { height: auto; }
  .art-lead { padding-left: 18px; }
}
@media (max-width: 480px) {
  .art-wrap { width: 100%; padding: 36px 20px 56px; }
  .blog-hero .wrap { padding-bottom: 52px; }
}

/* ====================================================================
   Blog image policy supplement (Final-Photos/ system)
==================================================================== */

/* Blog hero — fill, focus on people (35% from top), preserve faces */
.blog-hero .bh-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: top;
}

/* Editorial figures inside .art-main — never aggressively cropped */
.art-img { width:100%; margin:36px 0; }
.art-img img {
  width:100%;
  height:auto;
  max-height:560px;
  object-fit:cover;
  object-position: top;
  border-radius:14px;
  display:block;
}
.art-img figcaption {
  font-size:.85rem;
  color:var(--t3, #8a8a8a);
  margin-top:10px;
  text-align:center;
  font-style:italic;
}

/* Two-up image+text section (alternating layout) */
.art-img-half {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  margin:48px 0;
  align-items:center;
}
.art-img-half img {
  width:100%;
  height:420px;
  object-fit:cover;
  object-position: top;
  border-radius:14px;
}
.art-img-half:nth-of-type(even) { direction:rtl; }
.art-img-half:nth-of-type(even) > * { direction:ltr; }

@media (max-width: 1024px) {
  .art-img img { max-height:440px; }
  .art-img-half img { height:340px; }
}
@media (max-width: 768px) {
  .art-img img { max-height:360px; }
  .art-img-half { grid-template-columns:1fr; }
  .art-img-half:nth-of-type(even) { direction:ltr; }
  .art-img-half img { height:280px; }
}
@media (max-width: 480px) {
  .art-img img { max-height:280px; }
  .art-img-half img { height:240px; }
}
