/* ============================================
   CLF - Blog Styles (CodePen card-style)
   Reference: eyupucmaz/oNbeXOb
   ============================================ */

/* ─── Blog Page Body ─── */
.blog-page {
  background-color: #f7f8fc;
  min-height: 100vh;
}

/* ─── Blog Nav ─── */
.blog-nav {
  background: #fff;
  border-bottom: 1px solid #e8eaf0;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.blog-nav__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.blog-nav__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.blog-nav__name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.blog-nav__back {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s;
}

.blog-nav__back:hover {
  color: var(--color-cta);
}

/* ─── Blog Header ─── */
.blog-header {
  text-align: center;
  padding: 48px 20px 8px;
  max-width: 600px;
  margin: 0 auto;
}

.blog-header__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #10182f;
  margin-bottom: 10px;
}

.blog-header__subtitle {
  font-size: 16px;
  color: #545d7a;
  line-height: 1.6;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .blog-header {
    padding: 56px 20px 8px;
  }
  .blog-header__title {
    font-size: 40px;
  }
  .blog-header__subtitle {
    font-size: 17px;
  }
}

/* ─── Progress Indicator ─── */
.blog-header__progress {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #10B981;
  background: rgba(16,185,129,0.1);
  padding: 4px 14px;
  border-radius: 20px;
}

/* ─── Blog Section (Phase) ─── */
.blog-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 0;
}

.blog-section__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.blog-section__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.blog-section__num--green { background: #10B981; }
.blog-section__num--blue { background: #3B82F6; }

.blog-section__text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-text-dark);
}

/* ─── Checklist Grid ─── */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 1023px) {
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ─── Checklist Card ─── */
.checklist-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 14px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8eaf0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

a.checklist-card:hover {
  transform: translateY(-3px);
  border-color: #c0c4d0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.checklist-card--soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.checklist-card__icon {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1;
}

.checklist-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #8b92a8;
}

.checklist-card__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
  margin: 0 0 4px;
}

.checklist-card__desc {
  font-size: 12px;
  color: #8b92a8;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 767px) {
  .checklist-card {
    padding: 18px 10px 16px;
  }
  .checklist-card__icon {
    font-size: 26px;
  }
  .checklist-card__title {
    font-size: 13px;
  }
  .checklist-card__desc {
    font-size: 11px;
  }
}

/* ─── Blog Card Grid (legacy, kept for compatibility) ─── */
.blog-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 20px 40px;
  gap: 24px;
}

/* ─── Card (CodePen style) ─── */
.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Card Header / Image */
.card-header {
  position: relative;
  overflow: hidden;
}

.card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover .card-header img {
  transform: scale(1.05);
}

/* Placeholder when no image */
.card-header--placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8F4FD 0%, #D1ECFD 100%);
}

.card-header--placeholder::after {
  content: attr(data-emoji);
  font-size: 56px;
}

/* Card Body */
.card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  flex: 1;
}

.card-body h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #10182f;
  line-height: 1.35;
  margin: 10px 0 8px;
}

.card-body p {
  font-size: 14px;
  color: #545d7a;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}

/* Tags */
.tag {
  display: inline-block;
  background: #cccccc;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 3px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-teal {
  background-color: #47bcd4;
}

.tag-purple {
  background-color: #5e76bf;
}

.tag-pink {
  background-color: #cd5b9f;
}

.tag-green {
  background-color: #2ecc71;
}

.tag-orange {
  background-color: #f39c12;
}

.tag-red {
  background-color: #ef4444;
}

.tag-indigo {
  background-color: #6366f1;
}

.tag-amber {
  background-color: #f59e0b;
}

/* Card Meta (author / date) */
.card-meta {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f1f5;
  width: 100%;
}

.card-meta__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 10px;
  background: #f7f8fc;
  padding: 2px;
}

.card-meta__info h5 {
  font-size: 13px;
  font-weight: 600;
  color: #10182f;
  margin: 0;
}

.card-meta__info small {
  font-size: 12px;
  color: #545d7a;
}

/* ─── Blog CTA ─── */
.blog-cta {
  max-width: 600px;
  margin: 0 auto 48px;
  padding: 32px 28px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.blog-cta__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #10182f;
  margin-bottom: 8px;
}

.blog-cta__text {
  font-size: 15px;
  color: #545d7a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-cta .btn {
  display: inline-flex;
}

/* ─── Blog Footer ─── */
.blog-footer {
  text-align: center;
  padding: 24px 20px 32px;
  font-size: 13px;
  color: #8b92a8;
}
@media (max-width: 767px) {
  .blog-footer {
    padding-bottom: 70px;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 640px) {
  .blog-cards {
    padding: 24px 16px 32px;
    gap: 20px;
  }

  .card {
    max-width: 100%;
  }

  .card-header img,
  .card-header--placeholder {
    height: 180px;
  }

  .card-body {
    padding: 16px;
  }

  .card-body h4 {
    font-size: 16px;
  }

  .card-body p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .blog-cta {
    margin: 0 16px 40px;
    padding: 24px 20px;
  }

  .blog-cta__title {
    font-size: 18px;
  }

  .blog-cta__text {
    font-size: 14px;
  }
}

/* ─── Responsive: 3-column on wide desktop ─── */
@media (min-width: 1060px) {
  .card {
    max-width: 320px;
  }
}


/* ============================================
   Article Detail Page
   ============================================ */

/* ─── Article Container ─── */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 60px;
}

@media (min-width: 768px) {
  .article {
    padding: 60px 32px;
  }
}

/* Article Tag */
.article__tag {
  display: inline-block;
  background: #cccccc;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  padding: 3px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.article__tag--payment { background-color: #47bcd4; }
.article__tag--transport { background-color: #5e76bf; }
.article__tag--tips { background-color: #cd5b9f; }
.article__tag--apps { background-color: #2ecc71; }
.article__tag--visa { background-color: #6366f1; }
.article__tag--food { background-color: #f59e0b; }
.article__tag--culture { background-color: #ec4899; }
.article__tag--emergency { background-color: #ef4444; }

/* Step Badge (e.g. "Step 2 of 8") */
.article__step-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  background: #f3f4f6;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  margin-left: 8px;
}

/* Article Title */
.article__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: #10182f;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .article__title {
    font-size: 38px;
  }
}

/* Article Meta */
.article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #8b92a8;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.article__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Article Hero Image */
.article__hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
  background-size: cover;
  background-position: center;
  background-color: #f7f8fc;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.article__hero-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8F4FD 0%, #D1ECFD 100%);
}

.article__hero-img--placeholder::after {
  content: attr(data-emoji);
  font-size: 64px;
}

@media (max-width: 767px) {
  .article__hero-img {
    border-radius: 8px;
    margin-bottom: 28px;
  }
  .article__hero-img--placeholder::after {
    font-size: 48px;
  }
}

/* ─── Article Body Content ─── */
.article__body h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #10182f;
  margin: 40px 0 16px;
  line-height: 1.3;
}

.article__body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #10182f;
  margin: 32px 0 12px;
  line-height: 1.35;
}

.article__body p {
  font-size: 16px;
  color: #3d4663;
  line-height: 1.85;
  margin-bottom: 18px;
}

.article__body ul,
.article__body ol {
  margin: 14px 0 18px;
  padding-left: 24px;
}

.article__body li {
  font-size: 16px;
  color: #3d4663;
  line-height: 1.85;
  margin-bottom: 10px;
}

.article__body strong {
  color: #10182f;
  font-weight: 600;
}

.article__body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article__body a:hover {
  color: var(--color-cta);
}

/* ─── Tip Box ─── */
.article__tip {
  background: #f0fafb;
  border-left: 4px solid #47bcd4;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.article__tip p {
  margin-bottom: 0;
  font-size: 15px;
  color: #3d4663;
}

.article__tip strong {
  color: #47bcd4;
}

/* ─── Warning Box ─── */
.article__warning {
  background: #fef9f0;
  border-left: 4px solid #f39c12;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.article__warning p {
  margin-bottom: 0;
  font-size: 15px;
  color: #3d4663;
}

.article__warning strong {
  color: #d68910;
}

/* ─── Article CTA ─── */
.article__cta {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 32px 28px;
  margin: 44px 0;
  text-align: center;
}

.article__cta-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #10182f;
  margin-bottom: 8px;
}

.article__cta-text {
  font-size: 15px;
  color: #545d7a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.article__cta .btn {
  display: inline-flex;
}

/* ─── Article Navigation ─── */
.article__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #e8eaf0;
  margin-top: 44px;
}

.article__nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.article__nav-link:hover {
  color: var(--color-cta);
}

.article__nav-link--back {
  color: #8b92a8;
}

/* ─── Mobile Article ─── */
@media (max-width: 767px) {
  .article__title {
    font-size: 26px;
  }
  .article__meta {
    gap: 10px;
    font-size: 13px;
    margin-bottom: 24px;
  }
  .article__body h2 {
    font-size: 21px;
    margin: 32px 0 14px;
  }
  .article__body h3 {
    font-size: 17px;
    margin: 26px 0 10px;
  }
  .article__body p,
  .article__body li {
    font-size: 15px;
    line-height: 1.75;
  }
  .article__tip,
  .article__warning {
    padding: 14px 16px;
    margin: 20px 0;
  }
  .article__cta {
    padding: 24px 20px;
    margin: 36px 0;
  }
  .article__cta-title {
    font-size: 18px;
  }
  .article__cta-text {
    font-size: 14px;
  }
}


/* ============================================
   NEW UX Components (tourist-friendly)
   ============================================ */

/* ─── Reading Progress Bar ─── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #47bcd4, #5e76bf);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #8b92a8;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #8b92a8;
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb__sep {
  color: #c8cdd8;
}

.breadcrumb__current {
  color: #545d7a;
  font-weight: 500;
}

/* ─── TL;DR / Quick Answer Box ─── */
.article__tldr {
  background: #fff;
  border: 2px solid #47bcd4;
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 28px;
}

.article__tldr-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #10182f;
  margin: 0 0 12px;
}

.article__tldr-list {
  margin: 0;
  padding-left: 20px;
}

.article__tldr-list li {
  font-size: 15px;
  color: #3d4663;
  line-height: 1.6;
  margin-bottom: 6px;
}

.article__tldr-list strong {
  color: #10182f;
}

.article__tldr-more {
  font-size: 13px;
  color: #8b92a8;
  margin: 12px 0 0;
  font-style: italic;
}

/* ─── Table of Contents ─── */
.article__toc {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.article__toc-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #8b92a8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
}

.article__toc-list {
  margin: 0;
  padding-left: 20px;
}

.article__toc-list li {
  margin-bottom: 8px;
}

.article__toc-list a {
  font-size: 15px;
  color: #3d4663;
  text-decoration: none;
  transition: color 0.15s;
}

.article__toc-list a:hover {
  color: var(--color-primary);
}

/* ─── Numbered Steps ─── */
.article__steps {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  padding: 22px 24px;
  margin: 20px 0 24px;
}

.article__steps-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #10182f;
  margin: 0 0 16px;
}

.article__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.article__step:last-child {
  margin-bottom: 0;
}

.article__step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #47bcd4;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.article__step p {
  font-size: 15px;
  color: #3d4663;
  line-height: 1.6;
  margin: 0;
}

.article__step strong {
  color: #10182f;
}

/* ─── Summary Box ─── */
.article__summary-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  padding: 22px 24px;
  margin: 16px 0;
}

.article__summary-box ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.article__summary-box li {
  font-size: 15px;
  color: #3d4663;
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 0;
}

/* ─── Comparison Cards (Train vs Flight) ─── */
.article__comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 24px;
}

.article__comparison-item {
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  border-left: 4px solid #ccc;
}

.article__comparison-item strong {
  font-size: 15px;
  color: #10182f;
  display: block;
  margin-bottom: 4px;
}

.article__comparison-item p {
  font-size: 14px;
  color: #545d7a;
  margin: 0;
  line-height: 1.5;
}

.article__comparison-item--green { border-left-color: #2ecc71; background: #f0fdf4; }
.article__comparison-item--yellow { border-left-color: #f39c12; background: #fef9f0; }
.article__comparison-item--red { border-left-color: #e74c3c; background: #fef2f2; }

/* ─── Recommended Next Article ─── */
.article__next {
  margin-top: 40px;
}

.article__next-label {
  font-size: 13px;
  font-weight: 600;
  color: #8b92a8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.card--horizontal {
  flex-direction: row;
  align-items: center;
  max-width: 380px;
}

.card--horizontal .card-header {
  width: 90px;
  flex-shrink: 0;
  padding: 12px;
}

.card--horizontal .card-header img,
.card--horizontal .card-header--placeholder {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.card--horizontal .card-body {
  padding: 12px 14px 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.card--horizontal .card-body .tag {
  font-size: 11px;
  padding: 3px 8px;
}

.card--horizontal .card-body h4 {
  font-size: 15px;
  margin: 4px 0 2px;
}

.card--horizontal .card-body p {
  font-size: 12px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Back to Top Button ─── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #10182f;
  border: 1px solid #e8eaf0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #f7f8fc;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ─── Blog Section Headers (listing page) ─── */
.blog-section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 32px 0 0;
}

.blog-section__icon {
  font-size: 32px;
  line-height: 1;
}

.blog-section__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #10182f;
  margin: 0;
}

.blog-section__desc {
  font-size: 14px;
  color: #545d7a;
  margin: 2px 0 0;
}

.blog-section .blog-cards {
  padding: 16px 0 8px;
  justify-content: flex-start;
}

/* On desktop, listing cards can be wider when few per section */
@media (min-width: 768px) {
  .blog-section .card {
    max-width: 480px;
  }
  .blog-section .card-header img,
  .blog-section .card-header--placeholder {
    height: 240px;
  }
}

/* ─── "Read first" badge ─── */
.card-body__top {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.card-reading-order {
  font-size: 11px;
  font-weight: 600;
  color: #f39c12;
  background: #fef9f0;
  border: 1px solid #f39c12;
  border-radius: 50px;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ─── Coming Soon ─── */
.blog-coming-soon {
  max-width: 600px;
  margin: 8px auto 32px;
  padding: 16px 24px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  border: 1px dashed #c8cdd8;
}

.blog-coming-soon p {
  font-size: 14px;
  color: #545d7a;
  margin: 0;
}

.blog-coming-soon strong {
  color: #10182f;
}

/* Card meta simplified (listing page) */
.card-meta small {
  font-size: 12px;
  color: #8b92a8;
}

/* ─── Mobile New Components ─── */
@media (max-width: 767px) {
  .article__tldr {
    padding: 18px 18px;
    margin-bottom: 24px;
  }
  .article__tldr-title {
    font-size: 15px;
  }
  .article__tldr-list li {
    font-size: 14px;
  }
  .article__toc {
    padding: 16px 18px;
    margin-bottom: 28px;
  }
  .article__toc-list a {
    font-size: 14px;
  }
  .article__steps {
    padding: 18px 16px;
  }
  .article__step-num {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
  .article__step p {
    font-size: 14px;
  }
  .card--horizontal {
    max-width: 100%;
  }
  .card--horizontal .card-header {
    width: 80px;
    padding: 10px;
  }
  .card--horizontal .card-header img,
  .card--horizontal .card-header--placeholder {
    width: 80px;
    height: 80px;
  }
  .card--horizontal .card-body h4 {
    font-size: 14px;
  }
  .blog-section__header {
    padding: 24px 0 0;
  }
  .blog-section__title {
    font-size: 20px;
  }
  .blog-coming-soon {
    margin: 8px 16px 28px;
    padding: 14px 18px;
  }
  .article__comparison-item {
    padding: 14px 16px;
  }
}


/* ============================================
   New Article Components (Spec V2)
   ============================================ */

/* ─── Step Label (Step X of 8) ─── */
.article__step-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #3B82F6;
  background: rgba(59,130,246,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ─── Screenshot (mobile app mock) ─── */
.article__screenshot {
  text-align: center;
  margin: 24px auto;
  max-width: 320px;
}

.article__screenshot img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.article__screenshot figcaption {
  font-size: 13px;
  color: #8b92a8;
  margin-top: 10px;
  line-height: 1.4;
}

/* ─── Info Card ─── */
.article__info-card {
  background: #f7f8fc;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 20px 0;
}

.article__info-card > strong {
  display: block;
  margin-bottom: 14px;
}

.article__info-card > .article__table {
  width: 100%;
}

.article__info-card__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.article__info-card__content h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #10182f;
  margin: 0 0 6px;
}

.article__info-card__content p {
  font-size: 14px;
  color: #545d7a;
  line-height: 1.6;
  margin: 0;
}

/* ─── Table (comparison/price) ─── */
.article__table-wrap {
  margin: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.article__table th {
  background: #f0f1f5;
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;
  color: #10182f;
  white-space: nowrap;
}

.article__table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f0f1f5;
  color: #545d7a;
}

.article__table tr:nth-child(even) td {
  background: #fafbfd;
}

/* ─── Media Row (image + text side by side) ─── */
.article__media-row {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 24px 0;
}

.article__media-row--reverse {
  flex-direction: row-reverse;
}

.article__media-row img {
  width: 45%;
  border-radius: 10px;
  object-fit: cover;
}

.article__media-row__text {
  flex: 1;
}

.article__media-row__text p {
  font-size: 14px;
  color: #545d7a;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .article__media-row {
    flex-direction: column;
  }
  .article__media-row--reverse {
    flex-direction: column;
  }
  .article__media-row img {
    width: 100%;
  }
}

/* ─── Contact Card (emergency numbers) ─── */
.article__contact-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.article__contact-card__number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #10182f;
}

.article__contact-card__number a {
  color: inherit;
  text-decoration: none;
}

.article__contact-card__label {
  font-size: 14px;
  color: #545d7a;
}

/* ─── Checklist (decorative checkboxes) ─── */
.article__checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.article__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #545d7a;
  line-height: 1.5;
}

.article__checklist li::before {
  content: "☐";
  font-size: 16px;
  color: #c0c4d0;
  flex-shrink: 0;
  margin-top: 1px;
}

.article__checklist li.checked::before {
  content: "✅";
  color: #10B981;
}

/* ─── Article Bottom Navigation ─── */
.article__bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e8eaf0;
}

.article__bottom-nav__prev,
.article__bottom-nav__next {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s;
}

.article__bottom-nav__prev:hover,
.article__bottom-nav__next:hover {
  color: var(--color-cta);
}

.article__bottom-nav__prev--disabled,
.article__bottom-nav__next--disabled {
  font-size: 14px;
  font-weight: 600;
  color: #c0c4d0;
  cursor: default;
}
