:root {
  --hero-brown: #6e3a06;
  --nav-brown: #5c2f03;
  --gold: #c49d5f;
  --orange: #c64b00;
  --ink: #333333;
  --muted: #666666;
  --line: #d9d9d9;
  --page-gray: #f4f4f4;
  --heavy: "SourceHanSansCN-Heavy", "Source Han Sans CN", "Microsoft YaHei", sans-serif;
  --normal: "SourceHanSansCN-Normal", "Source Han Sans CN", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--normal);
  font-weight: 400;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-nav > .container {
  width: min(1200px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.site-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  color: #ffffff;
  background: #b36b31 url("./大泰易网站_slices/bg.png") center top / cover no-repeat;
}

.site-nav {
  position: relative;
  z-index: 2;
  height: 100px;
}

.nav-inner {
  position: relative;
  display: block;
  height: 100%;
}

.brand {
  position: absolute;
  top: 28px;
  left: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand-logo {
  width: 147px;
  height: 25px;
  object-fit: contain;
}

.nav-panel {
  position: static;
  display: block;
}

.primary-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--normal);
  font-size: 16px;
  line-height: 20px;
}

.primary-nav li {
  position: absolute;
  top: 20px;
  min-height: 42px;
}

.primary-nav li:nth-child(1) { left: 179px; }
.primary-nav li:nth-child(2) { left: 243px; }
.primary-nav li:nth-child(3) { left: 339px; }
.primary-nav li:nth-child(4) { left: 426px; }
.primary-nav li:nth-child(5) { left: 505px; }
.primary-nav li:nth-child(6) { left: 603px; }
.primary-nav li:nth-child(7) { left: 690px; }
.primary-nav li:nth-child(8) { left: 779px; }
.primary-nav li:nth-child(9) { left: 866px; }
.primary-nav li:nth-child(10) { left: 954px; }

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  white-space: nowrap;
  opacity: 0.92;
}

.primary-nav a:hover,
.primary-nav .is-current a {
  opacity: 1;
}

.primary-nav .is-current a {
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
}

.nav-actions {
  position: absolute;
  top: 20px;
  left: 1043px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.language-switch {
  display: inline-flex;
  width: 100px;
  height: 42px;
  padding: 3px;
  color: #ffffff;
  background: var(--nav-brown);
  border: 1px solid #f5bf92;
  border-radius: 21px;
  font-family: var(--heavy);
  font-size: 14px;
}

.language-switch button {
  flex: 1;
  min-width: 0;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border-radius: 18px;
  line-height: 20px;
  white-space: nowrap;
  transition: background 180ms ease, opacity 180ms ease;
}

.language-switch button:hover {
  background: rgba(222, 146, 80, 0.35);
}

.language-switch button.is-active {
  color: #ffffff;
  background: #de9250;
}

.nav-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 99px;
  height: 42px;
  padding: 0;
  color: #ffffff;
  background: var(--nav-brown);
  border-radius: 6px;
  font-family: var(--heavy);
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(110, 58, 6, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  font-size: 13px;
}

.hero-copy {
  position: absolute;
  top: 199px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--heavy);
  font-size: 14px;
  line-height: 20px;
}

.hero-kicker span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
}

.hero-copy h1 {
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  font-family: var(--heavy);
  font-size: 80px;
  font-weight: 800;
  line-height: 81px;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-description {
  width: 510px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 24px;
}

.category-bar {
  height: 100px;
  color: #ffffff;
  background: var(--hero-brown);
}

.category-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.category-tabs {
  display: flex;
  align-self: stretch;
  gap: 4px;
}

.category-tabs button {
  position: relative;
  min-width: 145px;
  padding: 0 18px;
  color: #ffffff;
  background: transparent;
  font-family: var(--heavy);
  font-size: 24px;
  white-space: nowrap;
}

.category-tabs button::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 8px;
  background: transparent;
  content: "";
}

.category-tabs button.is-active::after,
.category-tabs button:hover::after {
  background: var(--gold);
}

.search-form {
  display: flex;
  align-items: center;
  flex: 0 1 491px;
  height: 60px;
  margin-left: auto;
  padding: 0 22px;
  background: #ffffff;
  border-radius: 30px;
}

.search-form img {
  width: 23px;
  height: 22px;
  margin-right: 17px;
}

.search-form input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
}

.search-form input::placeholder {
  color: #c7c7c7;
}

.news-main {
  min-height: 1963px;
  background: var(--page-gray);
}

.news-main-inner {
  min-height: 1963px;
  padding-top: 36px;
  padding-bottom: 34px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 19px;
  color: #999999;
  font-size: 20px;
  line-height: 40px;
}

.breadcrumb img {
  width: 14px;
  height: 17px;
  margin-right: 1px;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.article-list {
  margin-top: 29px;
}

.article-card {
  position: relative;
  min-width: 0;
}

.article-card.is-featured {
  height: 280px;
  width: min(1215px, 100%);
  overflow: hidden;
  background: #ffffff;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.article-card.is-featured:not(.is-hovered) {
  background: transparent;
}

.article-card.is-featured .date-selected {
  position: absolute;
  top: 36px;
  left: 0;
  display: flex;
  width: 143px;
  height: 207px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 28px;
  color: #ffffff;
  text-align: center;
}

.article-card.is-featured .date-selected > img {
  position: absolute;
  inset: 0;
  width: 143px;
  height: 207px;
  max-width: none;
}

.article-card.is-featured .date-selected .date-day,
.article-card.is-featured .date-selected .date-month {
  position: relative;
  z-index: 1;
  width: 102px;
  text-align: center;
}

.article-card.is-featured:not(.is-hovered) .date-selected > img {
  opacity: 0;
}

.article-card.is-featured:not(.is-hovered) .date-selected .date-day,
.article-card.is-featured:not(.is-hovered) .date-selected .date-month {
  color: #666666;
}

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

.is-featured .article-content {
  position: relative;
  z-index: 1;
  width: 640px;
  margin-left: 163px;
  padding-top: 67px;
}

.article-title {
  margin: 0;
  color: var(--orange);
  font-family: var(--heavy);
  font-size: 30px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: 0;
}

.is-featured .article-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 640px;
  overflow: hidden;
}

.article-excerpt {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.is-featured .article-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-width: 640px;
  height: auto;
  overflow: hidden;
}

.article-thumb {
  display: block;
  overflow: hidden;
  background: #ffffff;
}

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

.is-featured .article-thumb {
  position: absolute;
  top: 36px;
  right: 0;
  width: 342px;
  height: 192px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 109px;
  height: 32px;
  margin-top: 16px;
  color: #ffffff;
  background: #cccccc;
  border-radius: 18px;
  font-size: 14px;
  transition: background 160ms ease, transform 160ms ease;
}

.article-card.is-featured .read-more,
.read-more:hover {
  background: var(--gold);
}

.article-card.is-featured:not(.is-hovered) .read-more {
  background: #cccccc;
}

.read-more:hover {
  transform: translateY(-1px);
}

.article-card.is-standard {
  display: grid;
  grid-template-columns: 143px minmax(0, 1fr) 342px;
  gap: 20px;
  height: 250px;
  border-bottom: 1px solid var(--line);
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.article-card.is-standard.is-hovered {
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(198, 75, 0, .08);
}

.article-card.is-standard.is-hovered .date-standard {
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 28px;
  color: #ffffff;
  background: transparent;
}

.article-card.is-standard.is-hovered .date-standard::after {
  display: none;
}

.date-standard-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 143px;
  height: 207px;
  max-width: none;
  opacity: 0;
  transition: opacity 160ms ease;
}

.article-card.is-standard.is-hovered .date-standard-shape {
  opacity: 1;
}

.article-card.is-standard.is-hovered .date-day,
.article-card.is-standard.is-hovered .date-month {
  position: relative;
  z-index: 1;
  width: 102px;
  color: #ffffff;
  text-align: center;
}

.article-card.is-standard .date-standard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 143px;
  height: 207px;
  padding-top: 5px;
  color: #666666;
}

.date-standard::after {
  position: absolute;
  top: 101px;
  right: -1px;
  width: 32px;
  height: 1px;
  background: #cccccc;
  content: "";
}

.date-day {
  font-family: var(--heavy);
  font-size: 58px;
  font-weight: 800;
  line-height: 64px;
}

.date-month {
  margin-top: -2px;
  color: #999999;
  font-family: var(--normal);
  font-size: 16px;
  line-height: 24px;
}

.is-standard .article-content {
  padding-top: 35px;
  padding-right: 8px;
}

.is-standard .article-title {
  max-width: 680px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.is-standard .article-excerpt {
  max-width: 680px;
  height: 40px;
  overflow: hidden;
}

.is-standard .article-thumb {
  width: 100%;
  height: 192px;
  margin-top: 16px;
}

.is-standard .article-thumb.is-cropped {
  width: 100%;
  height: 192px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 26px;
  margin-top: 34px;
}

.pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  color: #ffffff;
  background: #cccccc;
  border-radius: 14px;
  font-size: 14px;
}

.pagination .page-number {
  width: 26px;
  padding: 0;
  border-radius: 50%;
}

.pagination .page-number.is-active {
  color: #ffffff;
  background: var(--orange);
}

.pagination .page-arrow {
  width: 80px;
}

.pagination button:disabled {
  cursor: default;
  opacity: 0.55;
}

.empty-state {
  margin: 0;
  padding: 80px 0;
  color: #999999;
  text-align: center;
  font-size: 16px;
}

.site-footer {
  height: 860px;
  min-height: 860px;
  margin-top: -2px;
  background: #ffffff;
}

.footer-inner {
  padding-top: 63px;
}

.footer-intro {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 156px;
  border-bottom: 0;
}

.footer-intro::after {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  height: 1px;
  background: #d6d0c8;
  content: "";
}

.footer-intro > div:first-child {
  flex: 1;
  min-width: 0;
}

.footer-intro h2 {
  max-width: 771px;
  margin: 0;
  color: #996633;
  font-family: var(--heavy);
  font-size: 50px;
  font-weight: 800;
  line-height: 57px;
  white-space: nowrap;
}

html[lang="en"] .footer-intro h2 {
  white-space: normal;
}

.footer-intro p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}

.footer-cta {
  display: flex;
  gap: 24px;
  padding-top: 39px;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-family: var(--heavy);
  font-size: 14px;
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.button-primary {
  color: #ffffff;
  background: #996633;
}

.button-secondary {
  color: #ffffff;
  background: #666666;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #b07a3e;
  box-shadow: 0 10px 22px rgba(153, 102, 51, .35);
  transform: translateY(-2px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #4d4d4d;
  box-shadow: 0 10px 22px rgba(77, 77, 77, .3);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 488px minmax(0, 1fr) 387px;
  gap: 40px;
  align-items: start;
  margin-top: 90px;
}

.footer-card {
  height: 477px;
  padding: 28px 26px;
  color: #ffffff;
  background: var(--gold);
  border-radius: 16px;
}

.footer-logo {
  width: 86px;
  height: 132px;
  margin-bottom: 20px;
}

.footer-logo-image {
  display: block;
  width: 86px;
  height: 132px;
  object-fit: contain;
}

.brand-card > p {
  max-width: 365px;
  margin: 0 0 24px;
  font-family: var(--heavy);
  font-size: 15px;
  line-height: 24px;
}

.contact-pills {
  display: grid;
  gap: 10px;
}

.contact-pills span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 17px;
  color: #666666;
  background: #ffffff;
  border-radius: 13px;
  font-size: 13px;
}

.quick-links {
  padding-top: 8px;
  color: #666666;
  font-size: 14px;
}

.quick-links strong {
  display: block;
  margin-bottom: 20px;
  color: #333333;
  font-family: var(--heavy);
  font-size: 16px;
}

.quick-links div {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 20px 45px;
  width: max-content;
}

.quick-links a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.qr-card {
  padding-left: 24px;
  padding-right: 24px;
}

.qr-card strong {
  display: block;
  font-family: var(--heavy);
  font-size: 18px;
}

.qr-card p {
  margin: 17px 0 18px;
  font-size: 14px;
  line-height: 24px;
}

.qr-list {
  display: flex;
  gap: 20px;
}

.qr-code {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  padding-top: 19px;
  border-top: 1px solid #d6d0c8;
  color: #999999;
  font-size: 12px;
  line-height: 20px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 24px;
}

@media (max-width: 1500px) {
  .nav-panel {
    gap: 12px;
  }
}

@media (max-width: 1400px) {
  .site-nav > .container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding-left: 0;
  }

  .site-nav .nav-inner {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .brand {
    position: static;
  }

  .nav-panel {
    position: static;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 15px;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 14px;
    font-size: 13px;
  }

  .primary-nav li {
    position: static;
    min-height: 0;
  }

  .primary-nav a {
    min-height: 36px;
  }

  .nav-actions {
    position: static;
    flex: 0 0 auto;
    gap: 10px;
  }

  .language-switch {
    width: 80px;
    height: 32px;
    padding: 2px;
    border-radius: 16px;
    font-size: 14px;
  }

  .language-switch button {
    border-radius: 14px;
  }

  .nav-consult {
    width: 90px;
    height: 32px;
    font-size: 14px;
  }
}

@media (max-width: 1400px) and (min-width: 761px) {
  .hero-copy h1 {
    font-size: 64px;
    line-height: 68px;
  }
}

@media (max-width: 1100px) {
  .site-nav,
  .category-bar {
    height: auto;
    min-height: 100px;
  }

  .nav-inner {
    min-height: 100px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-panel {
    position: absolute;
    top: 88px;
    right: 24px;
    left: 24px;
    display: none;
    padding: 18px;
    background: rgba(91, 47, 7, 0.98);
    border-radius: 8px;
  }

  .nav-panel.is-open {
    display: block;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: initial;
    gap: 4px 18px;
  }

  .primary-nav a {
    min-height: 38px;
  }

  .nav-actions {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .hero-copy h1 {
    font-size: 68px;
    line-height: 72px;
  }

  .category-inner {
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .category-tabs {
    min-height: 76px;
  }

  .search-form {
    flex-basis: 100%;
    margin-left: 0;
  }

  .category-bar {
    padding-bottom: 12px;
  }

  .article-card.is-featured .article-thumb {
    right: 7px;
    opacity: 1;
  }

  .is-featured .article-content {
    position: relative;
    z-index: 2;
  }

  .footer-intro h2 {
    max-width: 620px;
    font-size: 42px;
    line-height: 49px;
  }

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

  .quick-links {
    order: 3;
    grid-column: 1 / -1;
  }
}

@media (max-width: 1200px) and (min-width: 761px) {
  .is-featured .article-content {
    width: calc(100% - 500px);
  }

  .is-featured .article-excerpt {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 560px);
  }

  .site-hero {
    height: 430px;
    background-position: 57% top;
  }

  .site-nav {
    min-height: 78px;
  }

  .nav-inner {
    min-height: 78px;
  }

  .nav-actions .nav-consult {
    display: none;
  }

  .nav-panel {
    top: 70px;
    right: 16px;
    left: 16px;
  }

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

  .hero-copy {
    top: 154px;
  }

  .hero-copy h1 {
    width: auto;
    font-size: clamp(42px, 11vw, 62px);
    line-height: 1.12;
    white-space: nowrap;
  }

  .hero-description {
    width: min(100%, 440px);
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
  }

  .category-bar {
    min-height: 0;
    padding: 0;
  }

  .category-inner {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 16px;
  }

  .category-tabs {
    width: 100%;
    min-height: 58px;
  }

  .category-tabs button {
    min-width: 0;
    flex: 1;
    padding: 0 5px;
    font-size: 16px;
  }

  .category-tabs button::after {
    right: 5px;
    left: 5px;
  }

  .search-form {
    height: 52px;
    padding: 0 16px;
  }

  .search-form input {
    font-size: 14px;
  }

  .news-main,
  .news-main-inner {
    min-height: 0;
  }

  .news-main-inner {
    padding-top: 25px;
    padding-bottom: 28px;
  }

  .breadcrumb {
    gap: 8px;
    font-size: 14px;
  }

  .article-list {
    margin-top: 20px;
  }

  .article-card.is-featured {
    width: 100%;
    height: auto;
    min-height: 390px;
    padding: 22px 16px 20px;
  }

  .article-card.is-featured .date-selected {
    position: static;
    float: left;
    width: 100px;
    height: 145px;
    padding-top: 18px;
    margin: 0 16px 4px 0;
  }

  .article-card.is-featured .date-selected > img {
    width: 100px;
    height: 145px;
  }

  .article-card.is-featured .date-selected .date-day,
  .article-card.is-featured .date-selected .date-month {
    width: 72px;
  }

  .article-card.is-featured .date-selected .date-day {
    font-size: 42px;
    line-height: 46px;
  }

  .article-card.is-featured .date-selected .date-month {
    font-size: 13px;
    line-height: 20px;
  }

  .article-card.is-standard .date-standard {
    width: 100px;
    height: 145px;
  }

  .article-card.is-standard .date-standard-shape {
    width: 100px;
    height: 145px;
  }

  .article-card.is-standard.is-hovered .date-standard {
    width: 100px;
    height: 145px;
    padding-top: 18px;
  }

  .article-card.is-standard.is-hovered .date-day,
  .article-card.is-standard.is-hovered .date-month {
    width: 72px;
  }

  .article-card.is-standard.is-hovered .date-day {
    font-size: 42px;
    line-height: 46px;
  }

  .article-card.is-standard.is-hovered .date-month {
    font-size: 13px;
    line-height: 20px;
  }

  .is-featured .article-content {
    width: auto;
    margin: 0;
    padding: 0;
  }

  .is-featured .article-title {
    width: auto;
    font-size: 23px;
    line-height: 32px;
    white-space: normal;
  }

  .is-featured .article-excerpt {
    width: auto;
    height: auto;
    max-height: none;
    clear: both;
    margin-top: 12px;
  }

  .is-featured .article-thumb {
    position: relative;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 650 / 280;
    margin-top: 18px;
    opacity: 1;
  }

  .article-card.is-standard {
    display: block;
    height: auto;
    min-height: 0;
    padding: 20px 0 22px;
  }

  .article-card.is-standard .date-standard {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    width: auto;
    height: auto;
    padding: 0;
  }

  .date-standard::after {
    display: none;
  }

  .date-day {
    font-size: 38px;
    line-height: 42px;
  }

  .date-month {
    margin: 8px 0 0 8px;
    font-size: 13px;
  }

  .is-standard .article-content {
    padding: 8px 0 0;
  }

  .is-standard .article-title {
    max-width: none;
    font-size: 23px;
    line-height: 32px;
    white-space: normal;
  }

  .is-standard .article-excerpt {
    max-width: none;
    height: auto;
    max-height: 60px;
    margin-top: 8px;
  }

  .is-standard .article-thumb,
  .is-standard .article-thumb.is-cropped {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 16px;
  }

  .pagination {
    margin-top: 24px;
  }

  .footer-inner {
    padding-top: 38px;
  }

  .site-footer {
    height: auto;
    min-height: 0;
    margin-top: 0;
  }

  .footer-intro {
    display: block;
    min-height: 0;
    border-bottom: 1px solid #d6d0c8;
    padding-bottom: 28px;
  }

  .footer-intro::after {
    display: none;
  }

  .footer-intro h2 {
    width: auto;
    font-size: 32px;
    line-height: 40px;
    white-space: normal;
  }

  .footer-intro p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 21px;
  }

  .footer-cta {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
  }

  .button {
    height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .footer-card {
    width: 100%;
    height: auto;
    min-height: 320px;
  }

  .quick-links {
    order: initial;
    width: 100%;
    padding: 2px 4px;
  }

  .quick-links div {
    width: 100%;
    grid-template-rows: repeat(4, auto);
    gap: 14px 30px;
  }

  .qr-list {
    flex-wrap: wrap;
  }

  .footer-bottom {
    display: block;
    margin-top: 24px;
  }

  .footer-bottom span {
    display: block;
  }

  .footer-bottom span:last-child {
    margin-top: 8px;
  }
}

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

  .read-more {
    transition: none;
  }
}
