:root {
  --red: #bd2633;
  --red-dark: #9c1f2a;
  --ink: #222827;
  --muted: #6a706f;
  --line: #e5e7e5;
  --paper: #f5f7f6;
  --green: #326756;
  --max: 1240px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  background: white;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a,
button {
  touch-action: manipulation;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.4;
}
button {
  border: 0;
  background: none;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #387967;
  outline-offset: 5px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}
::selection {
  background: #f3d3d6;
}
i.fa {
  line-height: 1;
}
a:hover {
  color: var(--red);
}
.wrap {
  width: calc(100% - 96px);
  max-width: var(--max);
  margin-inline: auto;
}
.topline {
  background: var(--paper);
  color: #646a68;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.topline .wrap {
  height: 33px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header {
  height: 92px;
  background: rgba(255, 255, 255, 0.98);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #eeeeec;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand > img {
  width: 62px;
  height: 39px;
  object-fit: contain;
}
.brand strong {
  font-size: 23px;
  display: block;
  line-height: 1.25;
  white-space: nowrap;
}
.brand small {
  font-size: 8px;
  display: block;
  color: #686a69;
  margin-top: 5px;
}
.nav {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-left: auto;
  height: 100%;
  font-size: 14px;
  white-space: nowrap;
}
.nav > a,
.nav-item > a {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.nav-item {
  height: 100%;
  position: relative;
}
.nav .active {
  color: var(--red);
  font-weight: 700;
}
.nav .active:after {
  content: "";
  height: 3px;
  background: var(--red);
  position: absolute;
  bottom: 19px;
  left: 0;
  right: 0;
}
.submenu {
  display: none;
  position: absolute;
  top: 78px;
  left: -24px;
  min-width: 150px;
  background: white;
  box-shadow: 0 8px 24px #1828221a;
  padding: 12px 0;
  border-top: 3px solid var(--red);
}
.submenu a {
  display: block;
  padding: 9px 24px;
}
.submenu a:hover {
  background: var(--paper);
}
.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  display: block;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  color: var(--red);
}
.header-phone > i {
  font-size: 25px;
}
.header-phone small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}
.header-phone strong {
  display: block;
  font-size: 18px;
  white-space: nowrap;
}
.menu-button {
  display: none;
}
.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  background: var(--red);
  color: white;
  padding: 15px 26px;
  min-height: 52px;
  border: 1px solid var(--red);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--red-dark);
  color: white;
}
.button i {
  font-size: 13px;
}
.button.white {
  background: white;
  color: var(--red);
  border-color: white;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 600;
  padding: 4px 0;
}
.text-link i {
  font-size: 12px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}
.red {
  color: var(--red);
}
.hero {
  position: relative;
  height: 570px;
  min-height: 470px;
  max-height: calc(100svh - 170px);
  color: white;
  isolation: isolate;
  overflow: hidden;
  background: #434b40;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 63%;
  z-index: -2;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 24, 19, 0.67),
    rgba(13, 24, 19, 0.35) 42%,
    rgba(13, 24, 19, 0.02) 76%
  );
  z-index: -1;
}
.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 30px;
}
.hero .eyebrow {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.hero .eyebrow > span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #fff;
}
.hero h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.hero h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
}
.hero-description {
  font-size: 16px;
  color: #eef1ed;
  margin-top: 18px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 33px;
}
.hero-secondary {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: white;
}
.hero-secondary:hover {
  color: white;
  text-decoration: underline;
}
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  font-size: 12px;
  color: #f4f6f2;
}
.hero-trust i {
  margin-right: 5px;
}
.hero-caption {
  position: absolute;
  bottom: 21px;
  right: max(48px, calc((100% - 1240px) / 2));
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 10px;
  color: #fff;
  text-shadow: 0 1px 3px #333;
}
.hero-caption span:first-child {
  border-left: 2px solid #fff;
  padding-left: 10px;
}
.stats {
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
}
.stats-grid > div {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.stats-grid > div:first-child {
  justify-content: flex-start;
}
.stats-grid > div:last-child {
  border: 0;
}
.stats strong {
  font-size: 37px;
  color: var(--red);
  line-height: 1.2;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-weight: 600;
}
.stats strong small {
  font-size: 13px;
  margin: 0 5px;
}
.stats-grid > div > span {
  font-size: 12px;
  color: var(--muted);
}
.section {
  padding: 80px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}
.section-heading h2 {
  font-size: 30px;
  font-weight: 600;
}
.section-heading h1 {
  font-size: 34px;
}
.section-heading p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
.section-heading .text-link {
  padding-bottom: 5px;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.course-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: white;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.course-card:hover {
  border-color: #bd263355;
  box-shadow: 0 7px 24px #2828200a;
}
.course-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.52;
}
.course-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.course-card:hover img {
  transform: scale(1.025);
}
.course-code {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  color: var(--red);
  padding: 3px 12px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
}
.course-body {
  padding: 21px 19px 17px;
}
.course-body h3 {
  font-size: 17px;
  font-weight: 600;
  min-height: 24px;
}
.course-body > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  min-height: 41px;
}
.course-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 16px;
}
.course-price > span {
  font-size: 27px;
  color: var(--red);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-weight: 600;
}
.course-price small {
  font-size: 16px;
}
.course-price em {
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  color: var(--muted);
  margin-left: 8px;
}
.course-price > a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
}
.course-price > a:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.fee-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 22px;
}
.fee-note > a {
  margin-left: 10px;
  color: var(--red);
}
.about-section {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 76px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual > img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}
.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  background: rgba(20, 37, 27, 0.8);
  color: #fff;
  padding: 14px 22px;
  font-size: 11px;
}
.photo-label span {
  font-size: 10px;
}
.about-copy h2 {
  font-size: 34px;
  line-height: 1.55;
  font-weight: 600;
}
.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin-top: 21px;
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 29px 0;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #dfe5e1;
}
.values i {
  color: var(--green);
  font-size: 24px;
  margin-bottom: 12px;
}
.values h3 {
  font-size: 16px;
  margin-bottom: 7px;
}
.values p {
  color: var(--muted);
  font-size: 11px;
}
.campus-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  gap: 30px;
}
.campus-tabs > button {
  padding: 14px 10px 17px;
  color: var(--muted);
  position: relative;
  font-size: 15px;
  flex: 1;
  white-space: nowrap;
}
.campus-tabs > button[aria-selected="true"] {
  color: var(--red);
  font-weight: 600;
}
.campus-tabs > button[aria-selected="true"]:after {
  content: "";
  height: 3px;
  background: var(--red);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.campus-panel {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 55px;
  align-items: center;
  min-height: 350px;
}
.campus-panel[hidden] {
  display: none;
}
.campus-panel > img {
  aspect-ratio: 1.9;
  width: 100%;
  object-fit: cover;
}
.campus-panel h3 {
  font-size: 29px;
  margin-bottom: 15px;
}
.campus-panel p {
  color: var(--muted);
  font-size: 13px;
}
.campus-panel .address {
  margin-top: 20px;
}
.campus-panel .button {
  margin-top: 28px;
  margin-right: 20px;
}
.address {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.address i {
  color: var(--red);
  margin-right: 5px;
}
.service-section {
  background: #f2f6f4;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 42px;
}
.steps > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid #dbe4df;
  padding: 10px 20px;
}
.steps > a:last-child {
  border: 0;
}
.steps > a > span {
  position: absolute;
  top: 0;
  left: 20px;
  color: #b3c2b9;
  font-size: 14px;
}
.steps > a > i {
  font-size: 32px;
  color: var(--green);
  height: 47px;
  margin-bottom: 15px;
}
.steps h3 {
  font-size: 17px;
}
.steps p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.service-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dbe4df;
  margin-top: 45px;
  padding-top: 24px;
  gap: 32px;
}
.service-links > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.service-links i {
  font-size: 12px;
  color: var(--green);
}
.news-row {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.news-row time {
  color: var(--muted);
  font-size: 12px;
  flex-shrink: 0;
}
.news-row h3 {
  font-size: 19px;
  font-weight: 500;
}
.news-row > i {
  margin-left: auto;
  flex-shrink: 0;
}
.news-row p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.news-row span.red {
  font-size: 12px;
}
.news-quiet {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  display: flex;
  gap: 24px;
  align-items: center;
}
.news-quiet > i {
  font-size: 33px;
  color: var(--green);
}
.news-quiet h3 {
  font-size: 17px;
}
.news-quiet p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
}
.news-quiet button {
  margin-left: auto;
}
.home-news-list:not(:empty) + .news-quiet {
  display: none;
}
.contact-band {
  background: var(--red);
  color: white;
  padding: 42px 0;
}
.contact-band .wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-band small {
  font-size: 12px;
  opacity: 0.8;
}
.contact-band h2 {
  font-size: 29px;
  margin-top: 6px;
}
.contact-band .button {
  margin-left: auto;
}
.band-phone {
  font-size: 26px;
  font-family: Arial, sans-serif;
  font-weight: 600;
}
.band-phone:hover {
  color: white;
}
.footer {
  background: #222b27;
  color: #d3d9d5;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 42px;
}
.footer h2 {
  font-size: 25px;
  color: white;
  margin-bottom: 4px;
}
.footer-brand > p:nth-child(2) {
  font-size: 14px;
  color: #b7c4bc;
  margin-bottom: 23px;
}
.footer-brand > p {
  font-size: 11px;
  color: #aeb9b2;
  margin-top: 8px;
}
.footer h3 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 18px;
}
.footer-grid > div > a {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
  color: #b6c0ba;
}
.footer a:hover {
  color: white;
}
.footer-qr {
  justify-self: end;
  text-align: center;
  font-size: 11px;
}
.footer-qr img {
  width: 106px;
  height: 106px;
  background: white;
  padding: 6px;
  margin-bottom: 10px;
}
.copyright {
  border-top: 1px solid #ffffff1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 63px;
  font-size: 10px;
  color: #929f97;
}
.copyright > span:last-child {
  display: flex;
  gap: 20px;
}
.float-tools {
  position: fixed;
  right: 17px;
  bottom: 130px;
  z-index: 20;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px #00000008;
}
.float-tools > a,
.float-tools > button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 44px;
  color: #545f58;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
}
.float-tools > a:hover,
.float-tools > button:hover {
  background: var(--red);
  color: #fff;
}
.float-tools > button:last-child {
  border: 0;
}
.mobile-bar {
  display: none;
}
.inner-banner {
  height: 250px;
  position: relative;
  color: white;
  isolation: isolate;
  overflow: hidden;
}
.inner-banner > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 50% 45%;
  z-index: -2;
}
.inner-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 25, 0.5);
  z-index: -1;
}
.inner-banner > .wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-banner h1 {
  font-size: 36px;
  font-weight: 600;
}
.inner-banner .eyebrow {
  font-size: 10px;
  margin-bottom: 10px;
}
.inner-banner p:last-child {
  font-size: 13px;
  margin-top: 14px;
  opacity: 0.85;
}
.subnav-band {
  border-bottom: 1px solid var(--line);
}
.subnav {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 67px;
  font-size: 12px;
}
.subnav > a {
  color: var(--muted);
}
.crumb-divider {
  color: #c4c9c5;
}
.subnav-links {
  display: flex;
  margin-left: auto;
  gap: 32px;
  font-size: 14px;
}
.subnav-links > a {
  min-height: 67px;
  display: flex;
  align-items: center;
  position: relative;
}
.subnav-links > a.active {
  color: var(--red);
}
.subnav-links > a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}
.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 70px;
}
.article-aside {
  align-self: start;
}
.article-aside h2 {
  font-size: 24px;
  margin-bottom: 24px;
}
.article-aside > a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.article-aside > a.active {
  color: var(--red);
  font-weight: 600;
}
.aside-contact {
  margin-top: 35px;
  background: var(--paper);
  padding: 20px;
}
.aside-contact > span {
  font-size: 12px;
  color: var(--muted);
}
.aside-contact > a {
  display: block;
  font-size: 20px;
  color: var(--red);
  font-weight: 600;
  margin-top: 5px;
}
.article-title {
  font-size: 29px;
  margin-bottom: 28px;
}
.richtext {
  font-size: 15px;
  line-height: 2;
  color: #525c56;
  overflow-wrap: anywhere;
}
.richtext p {
  margin-bottom: 22px;
}
.richtext h2 {
  font-size: 24px;
  color: var(--ink);
  margin: 35px 0 20px;
}
.richtext h3 {
  font-size: 18px;
  color: var(--ink);
  margin: 26px 0 12px;
}
.richtext img {
  max-width: 100%;
  height: auto;
  margin: 28px auto;
}
.richtext a {
  color: var(--red);
}
.richtext > .button {
  color: white;
}
.inline-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.inline-links > a {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
.course-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.course-detail > img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
}
.course-detail h1 {
  font-size: 30px;
  margin-bottom: 14px;
}
.course-detail p:not(.eyebrow) {
  color: var(--muted);
}
.detail-price {
  font-size: 48px;
  font-weight: 600;
  color: var(--red);
  margin-top: 20px;
  line-height: 1.4;
}
.detail-price > small {
  font-size: 25px;
}
.detail-price > span {
  font-size: 13px;
  color: var(--muted);
  margin-left: 14px;
  font-weight: 400;
}
.course-detail .fee-note {
  margin: 5px 0 25px;
}
.course-detail .text-link {
  margin-left: 20px;
}
.course-content {
  max-width: 860px;
  margin: 55px auto;
}
.faq {
  max-width: 900px;
  margin: 65px auto 0;
}
.faq > h2 {
  font-size: 25px;
  margin-bottom: 22px;
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  padding: 21px 0;
  font-weight: 500;
  cursor: pointer;
}
.faq details > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  padding-bottom: 24px;
}
.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 26px;
}
.campus-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.campus-card > a > img {
  aspect-ratio: 1.65;
  object-fit: cover;
  width: 100%;
}
.campus-card > div {
  padding: 24px;
}
.campus-card h2 {
  font-size: 21px;
  margin-bottom: 8px;
}
.campus-card p {
  font-size: 12px;
  color: var(--muted);
  min-height: 41px;
}
.campus-card .address {
  margin-top: 16px;
  min-height: 44px;
}
.card-actions {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.card-actions .text-link {
  font-size: 12px;
  gap: 10px;
}
.campus-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 35px;
}
.photo-button {
  padding: 0;
  width: 100%;
  display: block;
  overflow: hidden;
}
.campus-gallery img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
}
.honor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.honor-grid .photo-button {
  background: var(--paper);
  padding: 25px;
}
.honor-grid img {
  height: 300px;
  width: 100%;
  object-fit: contain;
}
.honor-grid h3 {
  font-size: 17px;
  margin-top: 20px;
  text-align: center;
}
.fees-layout {
  max-width: 1000px;
}
.fees-layout > h3 {
  font-size: 21px;
  margin: 38px 0 20px;
}
.fees-layout > p {
  color: var(--muted);
  margin-bottom: 20px;
}
.fees-layout > .button {
  margin-top: 15px;
}
.table-scroll {
  overflow-x: auto;
  margin-bottom: 25px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  min-width: 580px;
}
th,
td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
}
th {
  background: var(--paper);
  font-size: 13px;
  font-weight: 600;
}
td {
  color: #57635b;
}
.price-cell {
  font-size: 21px;
  color: var(--red);
  font-weight: 600;
}
.fees-layout table th:last-child {
  width: 40%;
}
.search-form {
  display: flex;
  border: 1px solid var(--line);
  width: 280px;
  max-width: 100%;
  height: 46px;
}
.search-form > input {
  border: 0;
  padding: 0 14px;
  min-width: 0;
  flex: 1;
  background: white;
  font-size: 13px;
}
.search-form .icon-button {
  font-size: 16px;
}
.empty-state {
  text-align: center;
  padding: 64px 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.empty-state > i {
  font-size: 42px;
  color: #96aa9d;
  margin-bottom: 22px;
}
.empty-state h3 {
  font-size: 21px;
  color: var(--ink);
}
.empty-state p {
  margin: 14px 0 26px;
  font-size: 14px;
}
.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 35px 0 0;
  font-size: 13px;
}
.pagination a {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 8px 14px;
}
.pagination .active {
  background: var(--red);
  color: white;
}
.standalone {
  max-width: 880px;
}
.standalone h1 {
  font-size: 30px;
}
.article-meta {
  color: var(--muted);
  font-size: 12px;
  margin: 15px 0 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 95px;
}
.contact-info > h2 {
  font-size: 34px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.contact-info > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin: 14px 0;
}
.contact-number {
  display: block;
  color: var(--red);
  font-size: 30px;
  font-weight: 600;
  margin: 28px 0 15px;
}
.contact-number > i {
  font-size: 25px;
}
.contact-info > .text-link {
  margin-top: 10px;
}
.contact-qr {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.contact-qr > img {
  padding: 5px;
  background: white;
}
.contact-qr h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.contact-qr p {
  color: var(--muted);
  font-size: 12px;
}
.consult-form {
  background: var(--paper);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 5px;
  scroll-margin-top: 115px;
}
.consult-form h2 {
  font-size: 24px;
  margin-bottom: 24px;
}
.consult-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 18px;
}
.consult-form input:not([type="checkbox"]),
.consult-form select,
.consult-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #dce2de;
  border-radius: 2px;
  background: white;
  padding: 11px 12px;
  margin-top: 8px;
  min-height: 46px;
  font-size: 13px;
  color: var(--ink);
}
.consult-form textarea {
  resize: vertical;
  min-height: 85px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.captcha-row > input {
  flex: 1;
  min-width: 0;
}
.captcha-refresh {
  padding: 0;
  flex-shrink: 0;
  margin-top: 8px;
}
.captcha-refresh > img {
  width: 130px;
  height: 46px;
  object-fit: contain;
  background: white;
}
.consult-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.consent input {
  margin: 4px 0 0;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--red);
}
.consent a {
  color: var(--red);
  text-decoration: underline;
}
.submit-button {
  width: 100%;
}
.submit-button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.form-status {
  font-size: 13px;
  margin-top: 12px;
  min-height: 22px;
  color: var(--red);
}
.form-status.success {
  color: var(--green);
}
.privacy-section {
  padding: 35px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  scroll-margin-top: 105px;
}
.privacy-section h2 {
  font-size: 17px;
  margin-bottom: 13px;
}
.privacy-section p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 8px;
}
dialog {
  border: 0;
  border-radius: 5px;
  padding: 35px;
  max-width: calc(100% - 40px);
  max-height: 90svh;
  box-shadow: 0 20px 70px #0003;
  text-align: center;
}
dialog::backdrop {
  background: #13231bc4;
}
dialog h2 {
  font-size: 22px;
  margin: 10px 0 22px;
}
dialog p {
  font-size: 13px;
  margin-top: 15px;
  color: var(--muted);
}
dialog img {
  margin: 0 auto;
}
.dialog-close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 19px;
}
#image-dialog {
  max-width: min(1100px, calc(100% - 30px));
  padding: 42px 22px 20px;
}
#image-dialog > img {
  max-height: 72svh;
  object-fit: contain;
}
.skip {
  position: fixed;
  left: 10px;
  top: -80px;
  background: white;
  padding: 12px;
  z-index: 90;
}
.skip:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1600px) {
  .hero {
    height: 640px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero h2 {
    font-size: 34px;
  }
  .section {
    padding: 90px 0;
  }
}
@media (max-width: 1250px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 18px;
  }
  .brand strong {
    font-size: 21px;
  }
  .brand > img {
    width: 51px;
    height: 35px;
  }
  .nav {
    gap: 20px;
    font-size: 13px;
  }
  .header-phone {
    padding-left: 15px;
  }
  .header-phone strong {
    font-size: 16px;
  }
  .header-phone > i {
    font-size: 22px;
  }
  .course-grid {
    gap: 16px;
  }
  .course-body {
    padding: 18px 14px;
  }
  .course-body h3 {
    font-size: 15px;
  }
  .course-price > span {
    font-size: 24px;
  }
  .about-grid {
    gap: 45px;
  }
  .campus-panel {
    gap: 35px;
  }
  .campus-tabs {
    gap: 14px;
  }
  .stats-grid > div {
    flex-direction: column;
    gap: 8px;
  }
  .stats-grid > div:first-child {
    justify-content: center;
  }
  .contact-layout {
    gap: 50px;
  }
  .course-detail {
    gap: 40px;
  }
  .float-tools {
    right: 6px;
  }
  .hero-caption {
    right: 32px;
  }
}
@media (max-width: 1050px) {
  .header-phone {
    display: none;
  }
  .nav {
    gap: 28px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero h2 {
    font-size: 27px;
  }
  .section-heading h2 {
    font-size: 27px;
  }
  .about-copy h2 {
    font-size: 29px;
  }
  .about-grid {
    gap: 32px;
  }
  .campus-panel {
    grid-template-columns: 1.2fr 1fr;
  }
  .campus-panel h3 {
    font-size: 25px;
  }
  .campus-panel .button {
    padding: 13px 17px;
  }
  .campus-panel .map-link {
    margin-top: 12px;
  }
  .footer-grid {
    gap: 25px;
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .campus-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-layout {
    gap: 35px;
  }
  .contact-info > h2 {
    font-size: 29px;
  }
  .contact-number {
    font-size: 25px;
  }
  .consult-form {
    padding: 25px;
  }
  .article-layout {
    gap: 35px;
    grid-template-columns: 190px minmax(0, 1fr);
  }
  .band-phone {
    font-size: 22px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .topline {
    display: none;
  }
  .header {
    height: 76px;
  }
  .header-inner {
    justify-content: space-between;
  }
  .brand strong {
    font-size: 21px;
  }
  .brand small {
    font-size: 8px;
  }
  .brand > img {
    width: 54px;
    height: 38px;
  }
  .menu-button {
    display: inline-grid;
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    height: auto;
    padding: 12px 20px 20px;
    background: white;
    border-bottom: 1px solid var(--line);
    max-height: calc(100svh - 140px);
    overflow-y: auto;
    box-shadow: 0 12px 20px #0000000a;
    white-space: normal;
  }
  .nav.open {
    display: block;
  }
  .nav > a,
  .nav-item > a {
    padding: 12px 0;
    font-size: 15px;
  }
  .nav-item {
    height: auto;
    border-top: 1px solid var(--line);
  }
  .submenu,
  .nav-item:hover .submenu,
  .nav-item:focus-within .submenu {
    display: flex;
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0 0 9px;
    flex-wrap: wrap;
    gap: 0 24px;
    background: transparent;
  }
  .submenu > a {
    padding: 6px 0;
    font-size: 12px;
    color: var(--muted);
  }
  .nav .active:after {
    display: none;
  }
  .hero {
    height: 525px;
    max-height: calc(100svh - 108px);
    min-height: 420px;
  }
  .hero-image {
    object-position: 61% center;
  }
  .hero:after {
    background: linear-gradient(90deg, #112119b8, #11211955 80%, #11211933);
  }
  .hero-content {
    padding-bottom: 35px;
  }
  .hero h1 {
    font-size: 40px;
    margin-bottom: 14px;
  }
  .hero h2 {
    font-size: 25px;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 290px;
    line-height: 1.9;
  }
  .hero-actions {
    gap: 22px;
    margin-top: 27px;
  }
  .hero .button {
    padding: 13px 19px;
    gap: 20px;
  }
  .hero-secondary {
    font-size: 12px;
  }
  .hero-trust {
    gap: 15px;
    font-size: 10px;
    margin-top: 30px;
  }
  .hero-caption {
    bottom: 16px;
    right: 20px;
    font-size: 9px;
  }
  .stats-grid {
    padding: 26px 0;
    gap: 0;
  }
  .stats strong {
    font-size: 29px;
  }
  .stats strong small {
    font-size: 10px;
    margin: 0 2px;
  }
  .stats-grid > div > span {
    font-size: 10px;
  }
  .section {
    padding: 52px 0;
  }
  .section-heading {
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 27px;
  }
  .section-heading h2 {
    font-size: 25px;
  }
  .section-heading h1 {
    font-size: 28px;
  }
  .section-heading p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.8;
  }
  .section-heading > .text-link {
    font-size: 12px;
    margin-top: 4px;
    gap: 8px;
  }
  .section-heading .eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 15px;
  }
  .course-body {
    padding: 18px 16px;
  }
  .course-body h3 {
    font-size: 16px;
  }
  .course-body > p {
    font-size: 11px;
    min-height: 38px;
  }
  .course-price > span {
    font-size: 25px;
  }
  .fee-note {
    font-size: 11px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-visual > img {
    aspect-ratio: 1.6;
  }
  .about-copy h2 {
    font-size: 29px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .values p {
    font-size: 12px;
  }
  .campus-tabs {
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: thin;
    margin-bottom: 22px;
  }
  .campus-tabs > button {
    padding: 12px 6px 14px;
    font-size: 13px;
    min-width: 88px;
  }
  .campus-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    min-height: 0;
  }
  .campus-panel > img {
    aspect-ratio: 1.65;
  }
  .campus-panel h3 {
    font-size: 25px;
    margin-bottom: 12px;
  }
  .campus-panel .eyebrow {
    font-size: 10px;
  }
  .campus-panel .address {
    margin-top: 12px;
  }
  .campus-panel .button {
    margin-top: 20px;
  }
  .campus-panel .map-link {
    margin-top: 0;
  }
  .steps {
    margin-top: 35px;
    gap: 0;
  }
  .steps > a {
    padding: 8px 7px;
  }
  .steps > a > span {
    position: static;
    margin-bottom: 14px;
    font-size: 11px;
  }
  .steps > a > i {
    font-size: 26px;
    height: 32px;
    margin-bottom: 10px;
  }
  .steps h3 {
    font-size: 14px;
  }
  .steps p {
    font-size: 10px;
    max-width: 85px;
  }
  .service-links {
    gap: 20px;
    margin-top: 30px;
    font-size: 11px;
  }
  .service-links > a {
    font-size: 12px;
  }
  .news-quiet {
    padding: 25px 0;
    gap: 16px;
  }
  .news-quiet > i {
    font-size: 28px;
  }
  .news-quiet h3 {
    font-size: 15px;
  }
  .news-quiet p {
    font-size: 11px;
  }
  .news-quiet button {
    font-size: 12px;
    gap: 10px;
  }
  .contact-band {
    padding: 32px 0;
  }
  .contact-band .wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-band h2 {
    font-size: 25px;
  }
  .contact-band small {
    font-size: 11px;
  }
  .contact-band .button {
    padding: 12px 18px;
    gap: 18px;
  }
  .band-phone {
    display: none;
  }
  .footer {
    padding-top: 35px;
    padding-bottom: 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-grid > div:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .footer-qr {
    grid-row: 2/4;
    grid-column: 2;
    justify-self: end;
    align-self: start;
  }
  .footer h2 {
    font-size: 23px;
  }
  .footer h3 {
    margin-bottom: 14px;
  }
  .footer-brand > p:nth-child(2) {
    margin-bottom: 18px;
  }
  .copyright {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    font-size: 9px;
  }
  .float-tools {
    display: none;
  }
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: white;
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -2px 12px #00000005;
  }
  .mobile-bar > a {
    font-size: 12px;
    min-height: 57px;
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
  }
  .mobile-bar > a > i {
    font-size: 16px;
  }
  .mobile-bar > a:last-child {
    background: var(--red);
    color: white;
  }
  .inner-banner {
    height: 200px;
  }
  .inner-banner h1 {
    font-size: 30px;
  }
  .subnav {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    padding-top: 14px;
    padding-bottom: 0;
  }
  .subnav-links {
    flex: 0 0 100%;
    margin: 0;
    overflow-x: auto;
    gap: 24px;
    white-space: nowrap;
    font-size: 13px;
  }
  .subnav-links > a {
    min-height: 50px;
  }
  .subnav-links:empty {
    display: none;
  }
  .subnav:has(.subnav-links:empty) {
    padding-bottom: 14px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .article-aside {
    display: none;
  }
  .article-title {
    font-size: 26px;
  }
  .richtext {
    font-size: 14px;
  }
  .richtext h2 {
    font-size: 23px;
  }
  .richtext h3 {
    font-size: 17px;
  }
  .course-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .course-detail > img {
    aspect-ratio: 1.55;
  }
  .course-detail h1 {
    font-size: 27px;
  }
  .detail-price {
    font-size: 40px;
  }
  .course-detail > div > p:not(.eyebrow) {
    font-size: 13px;
  }
  .course-content {
    margin: 35px auto;
  }
  .faq {
    margin-top: 40px;
  }
  .faq > h2 {
    font-size: 22px;
  }
  .faq summary {
    font-size: 14px;
  }
  .faq details > p {
    font-size: 13px;
  }
  .campus-grid {
    gap: 22px 16px;
  }
  .campus-card > div {
    padding: 18px;
  }
  .campus-card h2 {
    font-size: 19px;
  }
  .campus-card p {
    font-size: 11px;
  }
  .campus-card .address {
    min-height: 52px;
  }
  .card-actions {
    flex-wrap: wrap;
    gap: 9px;
  }
  .campus-gallery {
    gap: 15px;
  }
  .honor-grid {
    gap: 30px 18px;
  }
  .honor-grid .photo-button {
    padding: 15px;
  }
  .honor-grid img {
    height: 230px;
  }
  .honor-grid h3 {
    font-size: 14px;
  }
  .fees-layout > h3 {
    font-size: 18px;
  }
  .fees-layout > p {
    font-size: 13px;
  }
  th,
  td {
    padding: 14px 16px;
  }
  .fees-layout table {
    font-size: 12px;
  }
  .price-cell {
    font-size: 18px;
  }
  .search-form {
    width: 220px;
    flex-shrink: 0;
  }
  .news-row {
    gap: 18px;
    padding: 22px 0;
  }
  .news-row h3 {
    font-size: 16px;
  }
  .news-row time {
    font-size: 10px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-info > h2 {
    font-size: 30px;
  }
  .contact-number {
    font-size: 29px;
  }
  .contact-info > p:not(.eyebrow) {
    font-size: 13px;
  }
  .contact-qr {
    margin-top: 23px;
  }
  .consult-form {
    padding: 25px;
  }
  .consult-form h2 {
    font-size: 22px;
  }
  .privacy-section p {
    font-size: 11px;
  }
  .standalone h1 {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero h2 {
    font-size: 23px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero .button {
    font-size: 12px;
    padding: 13px 15px;
    gap: 15px;
  }
  .hero-secondary {
    font-size: 11px;
    gap: 5px;
  }
  .hero-trust {
    flex-direction: column;
    gap: 7px;
    margin-top: 22px;
  }
  .hero-caption > span:last-child {
    display: none;
  }
  .stats-grid > div {
    gap: 8px;
  }
  .stats strong {
    font-size: 25px;
  }
  .stats-grid > div > span {
    font-size: 9px;
  }
  .stats-grid {
    padding: 23px 0;
  }
  .section-heading {
    flex-wrap: wrap;
    gap: 14px;
  }
  .section-heading h2 {
    font-size: 23px;
  }
  .section-heading > .text-link {
    margin-top: 0;
  }
  .course-grid {
    gap: 16px 12px;
  }
  .course-code {
    font-size: 12px;
    padding: 2px 9px;
    top: 10px;
    left: 10px;
  }
  .course-body {
    padding: 15px 11px;
  }
  .course-body h3 {
    font-size: 14px;
    line-height: 1.6;
    min-height: 45px;
  }
  .course-price {
    margin-top: 10px;
    padding-top: 11px;
    gap: 4px;
  }
  .course-price > span {
    font-size: 22px;
  }
  .course-price small {
    font-size: 12px;
  }
  .course-price em {
    font-size: 9px;
    display: block;
    margin: 0;
  }
  .course-price > a {
    width: 29px;
    height: 29px;
    font-size: 10px;
    flex-shrink: 0;
  }
  .course-body > p {
    min-height: 42px;
    font-size: 10px;
  }
  .fee-note > a {
    margin-left: 0;
    display: inline-block;
  }
  .about-copy h2 {
    font-size: 27px;
  }
  .values {
    gap: 15px;
  }
  .values p {
    font-size: 10px;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 25px;
  }
  .steps > a:nth-child(3) {
    border: 0;
  }
  .steps > a > span {
    margin-bottom: 9px;
  }
  .steps p {
    max-width: 100px;
  }
  .service-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
  .news-quiet {
    flex-wrap: wrap;
  }
  .news-quiet button {
    margin-left: 44px;
  }
  .contact-band h2 {
    font-size: 24px;
  }
  .contact-band .wrap {
    gap: 23px;
  }
  .contact-band .button {
    margin-left: 0;
  }
  .campus-grid {
    grid-template-columns: 1fr;
  }
  .campus-card p,
  .campus-card .address {
    min-height: 0;
    font-size: 12px;
  }
  .campus-card > div {
    padding: 22px;
  }
  .card-actions {
    flex-wrap: nowrap;
  }
  .campus-gallery {
    grid-template-columns: 1fr;
  }
  .honor-grid {
    grid-template-columns: 1fr;
  }
  .honor-grid img {
    height: 270px;
  }
  .honor-grid h3 {
    font-size: 16px;
  }
  .course-detail .text-link {
    margin-left: 12px;
    font-size: 12px;
  }
  .course-detail .button {
    gap: 15px;
    padding: 13px 18px;
  }
  .search-form {
    width: 100%;
  }
  .news-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .news-row > div {
    flex: 0 0 calc(100% - 30px);
  }
  .news-row > time {
    width: 100%;
  }
  .consult-form {
    padding: 22px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .captcha-row {
    gap: 12px;
  }
  .consult-form label {
    font-size: 12px;
  }
  .consult-form input:not([type="checkbox"]),
  .consult-form select,
  .consult-form textarea {
    font-size: 16px;
  }
  .consult-form .consent {
    font-size: 11px;
  }
  .contact-number {
    font-size: 27px;
  }
  .contact-info > h2 {
    font-size: 28px;
  }
  .table-scroll {
    margin-right: -5px;
  }
  .inner-banner {
    height: 180px;
  }
  .subnav-links {
    gap: 22px;
  }
  .standalone h1 {
    font-size: 24px;
  }
}
@media (min-width: 801px) {
  .menu-button {
    display: none;
  }
}
@media (min-width: 801px) and (max-width: 1050px) {
  .article-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
