:root {
  --ink: #171717;
  --muted: #686868;
  --line: #dedede;
  --soft: #f4f4f2;
  --paper: #ffffff;
  --red: #c92828;
  --red-dark: #9f1f1f;
  --yellow: #ffc928;
  --green: #2d6a4f;
  --max-width: 1460px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(201, 40, 40, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max-width), calc(100% - clamp(40px, 8vw, 160px)));
  margin: 0 auto;
}

.utility-bar {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
}

.utility-bar .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-family: SimSun, "Songti SC", serif;
  font-size: 25px;
  font-weight: 700;
}

.brand-tagline {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  min-height: var(--header-height);
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 3px;
  background: transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--red);
}

.main-nav a[aria-current="page"]::after {
  background: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.icon-button:hover,
.menu-button:hover {
  border-color: var(--ink);
}

.icon-button svg,
.menu-button svg {
  width: 20px;
  height: 20px;
}

.menu-button {
  display: none;
}

.login-link,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.login-link:hover,
.button:hover {
  background: var(--red);
  border-color: var(--red);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  color: #fff;
}

.section {
  padding: 74px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-heading {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
}

.section-heading h2,
.page-heading h1 {
  margin: 0;
  font-family: SimSun, "Songti SC", serif;
  line-height: 1.2;
}

.section-heading h2 {
  font-size: 31px;
}

.section-heading a {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.section-heading a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lead-section {
  padding: 34px 0 68px;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(290px, 0.72fr);
  gap: 32px;
}

.lead-story {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}

.lead-story img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.lead-story::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.92));
}

.lead-content {
  position: absolute;
  z-index: 1;
  left: 36px;
  right: 36px;
  bottom: 34px;
  color: #fff;
}

.category {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.lead-content .category {
  color: var(--yellow);
}

.lead-content h1 {
  max-width: 760px;
  margin: 0;
  font-family: SimSun, "Songti SC", serif;
  font-size: 44px;
  line-height: 1.24;
}

.lead-content p {
  max-width: 650px;
  margin: 15px 0 0;
  color: #e5e5e5;
  font-size: 16px;
}

.story-meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.lead-content .story-meta {
  color: #d3d3d3;
}

.lead-side {
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 4px solid var(--red);
}

.lead-side-header {
  padding: 18px 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.side-story {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.side-story-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.side-story-row > img {
  width: 118px;
  height: 89px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.side-story:first-of-type {
  padding-top: 6px;
  border-top: 0;
}

.side-story h2 {
  margin: 0;
  font-family: SimSun, "Songti SC", serif;
  font-size: 23px;
  line-height: 1.45;
}

.side-story h2 a:hover,
.article-card h3 a:hover,
.news-item h2 a:hover {
  color: var(--red);
}

.side-story p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.value-statement {
  margin-top: 28px;
  padding: 26px;
  background: var(--yellow);
}

.value-statement strong {
  display: block;
  font-family: SimSun, "Songti SC", serif;
  font-size: 28px;
  line-height: 1.35;
}

.value-statement span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.home-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

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

.article-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.article-image:hover img {
  transform: scale(1.035);
}

.article-card h3 {
  margin: 13px 0 0;
  font-family: SimSun, "Songti SC", serif;
  font-size: 22px;
  line-height: 1.45;
}

.article-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.topic-band {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  min-height: 390px;
  background: var(--ink);
  color: #fff;
}

.topic-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.topic-copy .category {
  color: var(--yellow);
}

.topic-copy h2 {
  margin: 0;
  font-family: SimSun, "Songti SC", serif;
  font-size: 39px;
  line-height: 1.3;
}

.topic-copy p {
  margin: 18px 0 28px;
  color: #c7c7c7;
}

.topic-copy .button {
  align-self: flex-start;
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.topic-copy .button:hover {
  background: #fff;
  border-color: #fff;
}

.topic-band img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.page-heading {
  padding: 68px 0 36px;
  border-bottom: 1px solid var(--line);
}

.page-heading h1 {
  font-size: 48px;
}

.page-heading p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.filter-button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.news-list {
  border-top: 2px solid var(--ink);
}

.news-item {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.news-item[hidden] {
  display: none;
}

.news-item > a {
  align-self: start;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft);
}

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

.news-item h2 {
  margin: 0;
  font-family: SimSun, "Songti SC", serif;
  font-size: 27px;
  line-height: 1.42;
}

.news-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.article-header {
  max-width: 920px;
  padding: 68px 0 34px;
}

.article-header h1 {
  margin: 0;
  font-family: SimSun, "Songti SC", serif;
  font-size: 50px;
  line-height: 1.3;
}

.article-deck {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.article-hero {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 250px;
  justify-content: center;
  gap: 70px;
  padding: 58px 0 86px;
}

.article-body {
  font-family: SimSun, "Songti SC", serif;
  font-size: 19px;
  line-height: 2;
}

.article-body p {
  margin: 0 0 25px;
}

.article-body h2 {
  margin: 48px 0 18px;
  font-size: 30px;
  line-height: 1.45;
}

.article-body blockquote {
  margin: 38px 0;
  padding: 20px 28px;
  border-left: 4px solid var(--red);
  background: var(--soft);
  font-weight: 700;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 120px;
  padding-top: 18px;
  border-top: 3px solid var(--ink);
}

.article-aside h2 {
  margin: 0 0 14px;
  font-size: 15px;
}

.article-aside a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-family: SimSun, "Songti SC", serif;
  font-size: 16px;
  line-height: 1.55;
}

.article-aside a:hover {
  color: var(--red);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 76px;
  align-items: start;
}

.content-copy h2 {
  margin: 0 0 22px;
  font-family: SimSun, "Songti SC", serif;
  font-size: 34px;
  line-height: 1.35;
}

.content-copy p {
  margin: 0 0 18px;
  color: #393939;
}

.content-visual {
  position: relative;
}

.content-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.principles {
  margin-top: 34px;
  border-top: 2px solid var(--ink);
}

.principle {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.principle strong {
  color: var(--red);
  font-size: 14px;
}

.principle h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-list {
  border-top: 2px solid var(--ink);
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row dt {
  color: var(--muted);
  font-size: 14px;
}

.contact-row dd {
  margin: 0;
  font-weight: 700;
}

.contact-row a {
  color: var(--red);
}

.policy-shell {
  max-width: 980px;
}

.policy-intro {
  margin: 0 0 36px;
  padding: 22px 26px;
  border-left: 4px solid var(--red);
  background: var(--soft);
  color: #393939;
}

.policy-content {
  border-top: 3px solid var(--ink);
}

.policy-section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.policy-number {
  color: var(--red);
  font-family: SimSun, "Songti SC", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.policy-section h2,
.policy-section h3 {
  margin: 0 0 14px;
  font-family: SimSun, "Songti SC", serif;
  line-height: 1.45;
}

.policy-section h2 {
  font-size: 25px;
}

.policy-section h3 {
  margin-top: 28px;
  font-size: 20px;
}

.policy-section p {
  margin: 0;
}

.policy-section ol {
  margin: 14px 0 0;
  padding-left: 1.55em;
}

.policy-section li {
  margin: 9px 0;
  padding-left: 5px;
}

.policy-conclusion {
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.login-page {
  min-height: calc(100vh - 111px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.login-visual {
  position: relative;
  min-height: 700px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.login-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.48;
}

.login-visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 60px;
}

.login-visual-content h1 {
  max-width: 580px;
  margin: 0;
  font-family: SimSun, "Songti SC", serif;
  font-size: 48px;
  line-height: 1.3;
}

.login-visual-content p {
  max-width: 520px;
  color: #d8d8d8;
}

.login-panel {
  display: grid;
  place-items: center;
  padding: 70px 40px;
}

.login-box {
  width: min(430px, 100%);
}

.login-box h2 {
  margin: 0;
  font-family: SimSun, "Songti SC", serif;
  font-size: 36px;
}

.login-box > p {
  margin: 10px 0 32px;
  color: var(--muted);
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.input-wrap {
  position: relative;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
}

.form-field textarea {
  min-height: 150px;
  padding-top: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--ink);
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 23, 23, 0.08);
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 22px 0;
  font-size: 13px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}

.form-options a {
  color: var(--red);
}

.login-box .button {
  width: 100%;
  min-height: 50px;
}

.form-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.form-message {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  background: #edf7f1;
  color: #1f5c40;
  font-size: 13px;
}

.form-message.is-visible {
  display: block;
}

.not-found {
  min-height: 64vh;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--red);
  font-family: SimSun, "Songti SC", serif;
  font-size: 92px;
  line-height: 1;
}

.not-found h1 {
  margin: 18px 0 8px;
  font-family: SimSun, "Songti SC", serif;
  font-size: 34px;
}

.not-found p {
  margin: 0 0 28px;
  color: var(--muted);
}

.site-footer {
  background: #111;
  color: #a8a8a8;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 60px;
  padding: 56px 0 42px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-tagline {
  color: #aaa;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
}

.footer-column a,
.footer-column span {
  display: block;
  padding: 4px 0;
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 22px;
  border-top: 1px solid #303030;
  font-size: 12px;
}

.footer-bottom a:hover {
  color: #fff;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--soft);
  text-align: center;
}

.redirect-page img {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    position: fixed;
    inset: 111px 0 0;
    min-height: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
    background: #fff;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 54px;
    padding: 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .header-actions {
    margin-left: auto;
  }

  .lead-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .lead-side {
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }

  .lead-side-header,
  .value-statement {
    grid-column: 1 / -1;
  }

  .side-story:nth-of-type(3) {
    border-top: 0;
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .article-aside {
    display: none;
  }

  .login-page {
    grid-template-columns: 1fr;
  }

  .login-visual {
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .utility-bar .container {
    min-height: 30px;
  }

  .utility-bar span:last-child {
    display: none;
  }

  .main-nav {
    inset-top: 96px;
    top: 96px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-tagline {
    display: none;
  }

  .header-actions .icon-button {
    display: none;
  }

  .login-link {
    min-height: 38px;
    padding: 0 12px;
  }

  .icon-button,
  .menu-button {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 54px 0;
  }

  .lead-section {
    padding: 18px 0 54px;
  }

  .lead-story {
    min-height: 480px;
  }

  .lead-content {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .lead-content h1 {
    font-size: 34px;
  }

  .lead-content p {
    font-size: 14px;
  }

  .lead-side {
    grid-template-columns: 1fr;
  }

  .side-story:nth-of-type(3) {
    border-top: 1px solid var(--line);
  }

  .side-story-row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .side-story-row > img {
    width: 96px;
    height: 72px;
  }

  .value-statement {
    grid-column: auto;
  }

  .section-heading {
    align-items: center;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .article-grid,
  .home-story-grid {
    grid-template-columns: 1fr;
  }

  .topic-band {
    grid-template-columns: 1fr;
  }

  .topic-copy {
    padding: 34px 24px;
  }

  .topic-copy h2 {
    font-size: 32px;
  }

  .topic-band img {
    min-height: 260px;
  }

  .page-heading {
    padding: 48px 0 30px;
  }

  .page-heading h1 {
    font-size: 38px;
  }

  .news-item {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .news-item h2 {
    font-size: 20px;
  }

  .news-item p {
    display: none;
  }

  .news-item .story-meta {
    margin-top: 8px;
  }

  .article-header {
    padding: 48px 0 28px;
  }

  .article-header h1 {
    font-size: 36px;
  }

  .article-deck {
    font-size: 17px;
  }

  .article-layout {
    padding: 38px 0 58px;
  }

  .article-body {
    font-size: 18px;
  }

  .article-body h2 {
    font-size: 25px;
  }

  .content-grid {
    gap: 36px;
  }

  .policy-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }

  .policy-number {
    font-size: 22px;
  }

  .login-visual {
    min-height: 390px;
  }

  .login-visual-content {
    padding: 32px 24px;
  }

  .login-visual-content h1 {
    font-size: 36px;
  }

  .login-panel {
    padding: 52px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}
