/* Blog detail */
.article-hero {
  padding: 96px 0 24px;
  border-bottom: 1px solid var(--c-border);
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.97), rgba(255, 255, 255, 0.96)),
    url("../images/unsplash-1528127269322-539801943592-w900-q80.jpg") center/cover;
}

.article-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--c-muted);
  font-size: var(--t-sm);
}

.article-hero__breadcrumb a {
  color: var(--c-muted);
  text-decoration: none;
}

.article-hero__breadcrumb a:hover {
  color: var(--c-gold-dark);
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.72fr);
  gap: 32px;
  align-items: center;
}

.article-hero__category {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.78);
  color: var(--c-gold-dark);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-hero__title {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.25vw, 4rem);
  font-weight: 700;
  line-height: 1.04;
}

.article-hero__excerpt {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--c-text-2);
  font-size: 1.02rem;
  line-height: 1.65;
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--c-muted);
  font-size: var(--t-sm);
}

.article-meta__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
}

.article-meta__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article-meta__author strong {
  color: var(--c-text);
  font-weight: 800;
}

.article-meta__author span {
  color: var(--c-muted);
  font-size: var(--t-xs);
}

.article-meta__divider {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--c-border);
}

.article-feature-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  margin: 0;
  border: 1px solid rgba(184, 134, 11, 0.26);
  border-radius: var(--r-lg);
  background: var(--c-ocean);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.12);
}

.article-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1000px;
  margin: 26px auto 0;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--r-lg);
  background: rgba(184, 134, 11, 0.16);
  box-shadow: var(--shadow-sm);
}

.article-hero__summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.86);
}

.article-hero__summary strong {
  color: var(--c-gold-dark);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-hero__summary span {
  color: var(--c-text);
  font-size: var(--t-sm);
  font-weight: 700;
  text-align: right;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 340px;
  gap: 30px;
  align-items: start;
  max-width: 1210px;
  padding: 38px 0 74px;
}

.article-body {
  min-width: 0;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.article-content {
  color: var(--c-text);
  font-size: 1.04rem;
  line-height: 1.78;
  padding: 34px 40px;
  border: 1px solid rgba(184, 134, 11, 0.14);
  border-radius: var(--r-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content p {
  margin: 0 0 18px;
  color: var(--c-text);
}

.article-content h2 {
  margin: 34px 0 12px;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: clamp(1.62rem, 2.7vw, 2.15rem);
  font-weight: 700;
  line-height: 1.16;
  scroll-margin-top: 108px;
}

.article-content h3 {
  margin: 26px 0 10px;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.24;
}

.article-content strong {
  color: var(--c-text);
  font-weight: 800;
}

.article-content a {
  color: var(--c-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px;
  padding-left: 1.35rem;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  margin: 34px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--c-gold);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  background: var(--c-gold-pale);
  color: var(--c-text-2);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.55;
}

.article-content img {
  width: 100%;
  height: auto;
  margin: 28px 0;
  border-radius: var(--r-lg);
}

.article-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 36px 0 34px;
  padding: 24px;
  border: 1px solid rgba(184, 134, 11, 0.28);
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(255, 248, 225, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-sm);
}

.article-inline-cta span {
  display: block;
  margin-bottom: 6px;
  color: var(--c-gold-dark);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-inline-cta h3 {
  margin: 0 0 8px;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
}

.article-inline-cta p {
  margin: 0;
  color: var(--c-text-2);
  font-size: var(--t-sm);
  line-height: 1.58;
}

.article-inline-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--c-gold-dark), var(--c-gold));
  color: white;
  font-size: var(--t-sm);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.article-toc,
.article-booking-card,
.article-trust-card,
.article-topic-card,
.author-box,
.post-share,
.post-tags {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.article-toc {
  padding: 18px;
}

.article-toc__title {
  margin-bottom: 16px;
  color: var(--c-gold-dark);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-toc__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-toc__link {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 0 8px 10px;
  border-left: 2px solid var(--c-border);
  color: var(--c-text-2);
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: none;
}

.article-toc__link:hover {
  border-left-color: var(--c-gold);
  color: var(--c-gold-dark);
}

.article-toc__num {
  color: var(--c-gold);
  font-family: var(--font-display);
  font-weight: 700;
}

.article-booking-card {
  padding: 20px;
  background: linear-gradient(180deg, var(--c-gold-pale), white);
}

.article-booking-card__label {
  margin-bottom: 10px;
  color: var(--c-gold-dark);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-booking-card h2 {
  margin: 0 0 10px;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.18;
}

.article-booking-card p {
  margin: 0 0 18px;
  color: var(--c-text-2);
  font-size: var(--t-sm);
  line-height: 1.6;
}

.article-booking-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--c-gold-dark), var(--c-gold));
  color: white;
  font-size: var(--t-sm);
  font-weight: 800;
  text-decoration: none;
}

.article-booking-card .article-booking-card__phone {
  border: 1px solid var(--c-border);
  background: white;
  color: var(--c-text);
}

.article-trust-card,
.article-topic-card {
  padding: 20px;
}

.article-trust-card__title,
.article-topic-card__title {
  margin-bottom: 12px;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.article-trust-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-trust-card li {
  position: relative;
  padding-left: 22px;
  color: var(--c-text-2);
  font-size: var(--t-sm);
  line-height: 1.45;
}

.article-trust-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-success);
  font-weight: 800;
}

.article-topic-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-topic-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-bg);
  color: var(--c-text-2);
  font-size: var(--t-sm);
  font-weight: 700;
  text-decoration: none;
}

.article-topic-card a::after {
  content: "→";
  color: var(--c-gold-dark);
}

.article-topic-card a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-dark);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 18px;
}

.post-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--c-bg);
  color: var(--c-gold-dark);
  font-size: var(--t-sm);
  font-weight: 700;
  text-decoration: none;
}

.post-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 18px;
}

.post-share strong {
  margin-right: auto;
  color: var(--c-text);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  background: white;
  color: var(--c-text-2);
  font-size: var(--t-sm);
  font-weight: 700;
  text-decoration: none;
}

.share-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-dark);
}

.author-box {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  padding: 24px;
  background: var(--c-cream);
}

.author-box__avatar {
  flex: 0 0 72px;
}

.author-box__avatar img {
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
}

.author-box__role {
  margin-bottom: 4px;
  color: var(--c-gold-dark);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-box__name {
  margin-bottom: 6px;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.author-box__bio {
  color: var(--c-text-2);
  font-size: var(--t-sm);
  line-height: 1.65;
}

.related-section {
  padding: 62px 0;
  border-top: 1px solid var(--c-border);
  background: var(--c-bg);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.related-card {
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  background: white;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast), border-color var(--dur-fast);
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 134, 11, 0.45);
  box-shadow: var(--shadow-lg);
}

.related-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-ocean);
}

.related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card__body {
  padding: 20px;
}

.related-card__cat {
  margin-bottom: 8px;
  color: var(--c-gold-dark);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-card__title {
  margin: 0 0 12px;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

.related-card__meta {
  display: flex;
  gap: 12px;
  color: var(--c-muted);
  font-size: var(--t-xs);
}

.article-final-cta {
  padding: 58px 0 78px;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.96), rgba(255, 255, 255, 0.96)),
    url("../images/unsplash-1528127269322-539801943592-w900-q80.jpg") center/cover;
}

.article-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
  border: 1px solid rgba(184, 134, 11, 0.24);
  border-radius: var(--r-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.article-final-cta h2 {
  margin: 6px 0 8px;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.article-final-cta p {
  max-width: 680px;
  margin: 0;
  color: var(--c-text-2);
  line-height: 1.65;
}

.article-final-cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.article-final-cta__points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-radius: var(--r-full);
  background: var(--c-gold-pale);
  color: var(--c-text);
  font-size: var(--t-sm);
  font-weight: 700;
}

.article-final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 250px;
}

@media (max-width: 1080px) {
  .article-hero__grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-layout {
    max-width: min(820px, calc(100% - 32px));
  }

  .article-sidebar {
    position: static;
  }

  .article-feature-img {
    max-height: 420px;
  }

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

@media (max-width: 680px) {
  .article-hero {
    padding: 88px 0 24px;
  }

  .article-hero__title {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .article-layout {
    padding: 24px 0 52px;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.75;
    padding: 22px;
  }

  .article-inline-cta,
  .article-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .article-hero__summary {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .article-feature-img {
    aspect-ratio: 16 / 10;
  }

  .post-share strong {
    width: 100%;
  }

  .author-box,
  .article-final-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-final-cta__actions {
    width: 100%;
    min-width: 0;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}
