* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.blog-page {
  margin: 0;
  color: #353535;
  font-family: "Open Sans", "Noto Sans TC", Arial, sans-serif;
  background: #fffaf5;
}

.blog-page a {
  text-decoration: none;
}

.blog-page-shell {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.blog-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #eee5dd;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}

.blog-site-nav {
  display: flex;
  width: min(1140px, calc(100% - 48px));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: auto;
}

.blog-site-nav img {
  display: block;
  width: 156px;
}

.blog-site-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.blog-site-links a {
  color: #5b5b5b;
  font-size: .92rem;
  font-weight: 700;
}

.blog-site-links a:hover,
.blog-site-links .is-active {
  color: #f2780c;
}

.blog-list-hero {
  padding: 105px 0 96px;
  background: radial-gradient(circle at 80% 0%, #ffe3c4 0, transparent 36%), #fffaf5;
  text-align: center;
}

.blog-list-hero h1 {
  max-width: 820px;
  margin: 10px auto 20px;
  color: #203266;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.blog-list-hero p {
  max-width: 680px;
  margin: auto;
  color: #656565;
  font-size: 1.12rem;
  line-height: 1.85;
}

.blog-list-section {
  padding: 88px 0 108px;
  background: #fff;
}

.blog-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.blog-section-kicker {
  color: #f2780c;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.blog-list-heading h2 {
  margin: 8px 0 0;
  color: #203266;
  font-size: clamp(2rem, 4vw, 3rem);
}

.blog-list-heading p {
  max-width: 460px;
  margin: 0;
  color: #777;
  line-height: 1.75;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 34px;
}

.blog-filters button {
  padding: 10px 17px;
  color: #666;
  background: #fff;
  border: 1px solid #e9ded3;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: .86rem;
  font-weight: 700;
  transition: .2s ease;
}

.blog-filters button:hover,
.blog-filters button.is-active {
  color: #fff;
  background: #f7931e;
  border-color: #f7931e;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.blog-list-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee5dd;
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(63, 42, 25, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-list-card:hover,
.blog-list-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(63, 42, 25, .14);
}

.blog-list-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.blog-list-cover {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  background: #fff8f0;
}

.blog-list-card-featured .blog-list-cover {
  height: 100%;
  min-height: 390px;
}

.blog-list-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-list-card:hover .blog-list-cover img {
  transform: scale(1.035);
}

.blog-list-copy {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #8a8a8a;
  font-size: .78rem;
}

.blog-card-meta>*+*::before {
  content: "·";
  margin-right: 16px;
  color: #f7931e;
}

.blog-list-copy h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.4;
}

.blog-list-copy h3 a {
  color: #203266;
}

.blog-list-copy p {
  margin: 0 0 18px;
  color: #626262;
  line-height: 1.8;
}

.blog-source {
  margin-bottom: 22px;
  color: #989898;
  font-size: .78rem;
}

.blog-card-read {
  margin-top: auto;
  color: #f2780c;
  font-size: .92rem;
  font-weight: 800;
}

.blog-card-read span {
  display: inline-block;
  transition: transform .2s ease;
}

.blog-card-read:hover span {
  transform: translateX(5px);
}

.blog-site-footer {
  padding: 50px 20px;
  color: #d1d1d1;
  background: #333;
  text-align: center;
}

.blog-site-footer img {
  width: 150px;
  margin-bottom: 10px;
}

.blog-site-footer p {
  margin: 0 0 18px;
}

.blog-site-footer span {
  font-size: .78rem;
}

.article-hero {
  padding: 84px 0 54px;
  background: #fffaf5;
  text-align: center;
}

.article-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #8a8a8a;
  font-size: .82rem;
}

.article-breadcrumb a {
  color: #f2780c;
}

.article-category {
  display: inline-block;
  padding: 7px 14px;
  color: #fff;
  background: #f7931e;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}

.article-hero h1 {
  max-width: 880px;
  margin: 18px auto;
  color: #203266;
  font-size: clamp(2.35rem, 5.5vw, 4.6rem);
  line-height: 1.17;
  letter-spacing: -.03em;
}

.article-deck {
  max-width: 720px;
  margin: 0 auto 24px;
  color: #666;
  font-size: 1.12rem;
  line-height: 1.85;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  color: #8a8a8a;
  font-size: .82rem;
}

.article-meta>*+*::before {
  content: "·";
  margin-right: 18px;
  color: #f7931e;
}

.article-cover {
  width: min(1140px, calc(100% - 48px));
  height: min(58vw, 650px);
  min-height: 360px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(63, 42, 25, .13);
}

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

.article-layout {
  display: grid;
  width: min(1040px, calc(100% - 48px));
  grid-template-columns: minmax(0, 720px) 220px;
  gap: 70px;
  margin: 80px auto 110px;
  align-items: start;
}

.article-content {
  color: #454545;
  font-size: 1.05rem;
  line-height: 2;
}

.article-content .article-lead {
  color: #303030;
  font-size: 1.25rem;
  line-height: 1.9;
}

.article-content h2 {
  margin: 60px 0 18px;
  color: #203266;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.4;
}

.article-content h3 {
  margin: 36px 0 12px;
  color: #203266;
  font-size: 1.35rem;
  line-height: 1.5;
}

.article-content p {
  margin: 0 0 22px;
}

.article-content ul {
  margin: 0 0 28px;
  padding-left: 1.25em;
}

.article-content li {
  margin-bottom: 9px;
  padding-left: 5px;
}

.article-content figure {
  margin: 42px 0;
}

.article-content figure img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 22px;
}

.article-content figcaption {
  margin-top: 10px;
  color: #929292;
  font-size: .78rem;
  line-height: 1.6;
  text-align: center;
}

.article-quote {
  margin: 42px 0;
  padding: 28px 30px;
  color: #203266;
  background: #fff4e8;
  border-left: 5px solid #f7931e;
  border-radius: 0 18px 18px 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
}

.article-source-box {
  margin-top: 60px;
  padding: 24px;
  color: #666;
  background: #f6f6f6;
  border-radius: 18px;
  font-size: .85rem;
  line-height: 1.8;
}

.article-cycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 34px 0 42px;
}

.article-cycle span {
  position: relative;
  padding: 20px 14px;
  color: #203266;
  background: #fff4e8;
  border-radius: 16px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.article-cycle span:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 2;
  color: #f7931e;
  transform: translateY(-50%);
}

.article-table-wrap {
  overflow-x: auto;
  margin: 28px 0 34px;
  border: 1px solid #eee1d5;
  border-radius: 18px;
}

.article-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: #fff;
  font-size: .94rem;
}

.article-table th,
.article-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #eee8e2;
  text-align: left;
}

.article-table th {
  color: #203266;
  background: #fff4e8;
  font-size: .86rem;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-cta {
  margin-top: 44px;
  padding: 34px;
  color: #fff;
  background: #203266;
  border-radius: 22px;
}

.article-cta strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.5;
}

.article-cta p {
  margin: 8px 0 18px;
  color: #e6e9f2;
}

.article-cta a {
  display: inline-block;
  padding: 11px 18px;
  color: #fff;
  background: #f7931e;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
}

.article-cta small {
  display: block;
  margin-top: 14px;
  color: #b8c1dc;
}

.article-aside {
  position: sticky;
  top: 110px;
  padding: 24px;
  background: #fff;
  border: 1px solid #eee5dd;
  border-radius: 20px;
}

.article-aside strong {
  display: block;
  margin-bottom: 15px;
  color: #203266;
  font-size: .9rem;
}

.article-aside a {
  display: block;
  padding: 10px 0;
  color: #747474;
  font-size: .84rem;
  line-height: 1.55;
  border-top: 1px solid #eee;
}

.article-aside a:hover {
  color: #f2780c;
}

.article-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.article-next a {
  padding: 20px;
  color: #203266;
  background: #fff;
  border: 1px solid #eee5dd;
  border-radius: 16px;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .blog-list-card-featured {
    grid-template-columns: 1fr;
  }

  .blog-list-card-featured .blog-list-cover {
    height: 360px;
    min-height: 0;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .article-aside {
    position: static;
    order: -1;
  }

  .article-aside a {
    display: inline-block;
    margin-right: 18px;
    border-top: 0;
  }
}

@media (max-width: 767px) {

  .blog-page-shell,
  .blog-site-nav,
  .article-layout,
  .article-cover {
    width: min(100% - 32px, 1140px);
  }

  .blog-list-hero {
    padding: 78px 0 68px;
  }

  .blog-list-section {
    padding: 68px 0 78px;
  }

  .blog-list-heading {
    display: block;
  }

  .blog-list-heading p {
    margin-top: 12px;
  }

  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-card-featured {
    grid-column: auto;
  }

  .article-hero {
    padding: 62px 0 40px;
  }

  .article-cover {
    height: 58vw;
    min-height: 260px;
    border-radius: 20px;
  }

  .article-layout {
    margin-top: 50px;
    margin-bottom: 80px;
  }

  .article-cycle {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-cycle span:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .blog-site-nav {
    min-height: 64px;
  }

  .blog-site-nav img {
    width: 120px;
  }

  .blog-site-links {
    gap: 14px;
  }

  .blog-site-links a {
    font-size: .78rem;
  }

  .blog-list-hero h1 {
    font-size: 2.45rem;
  }

  .blog-list-cover,
  .blog-list-card-featured .blog-list-cover {
    height: 220px;
  }

  .blog-list-copy {
    padding: 23px;
  }

  .blog-list-card {
    border-radius: 20px;
  }

  .article-hero h1 {
    font-size: 2.35rem;
  }

  .article-deck {
    font-size: 1rem;
  }

  .article-cover {
    height: 64vw;
    min-height: 220px;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.9;
  }

  .article-content .article-lead {
    font-size: 1.12rem;
  }

  .article-content h2 {
    margin-top: 46px;
  }

  .article-content figure {
    margin: 32px 0;
  }

  .article-next {
    grid-template-columns: 1fr;
  }

  .article-cycle {
    grid-template-columns: 1fr;
  }

  .article-cycle span::after {
    display: none;
  }

  .article-cta {
    padding: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .blog-list-card,
  .blog-list-cover img,
  .blog-card-read span {
    transition: none;
  }
}

/* ── Inline highlight ── */
.hl {
  background: linear-gradient(104deg, rgba(247, 147, 30, .18) 0%, rgba(247, 147, 30, .28) 100%);
  border-radius: 3px;
  padding: 1px 4px;
  color: #b85c00;
  font-weight: 700;
}