:root {
  --blue: #2f78b3;
  --blue2: #5d9ac8;
  --ink: #172b3b;
  --muted: #6e7e8b;
  --line: #e5ebef;
  --pale: #f5f9fc;
  --white: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--ink);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  height: 34px;
  background: #f6f9fb;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.topbar .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header {
  height: 78px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.logo {
  width: 43px;
  height: 43px;
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font: 700 23px serif;
}
.brand strong {
  font-size: 21px;
  letter-spacing: 2px;
}
.brand small {
  display: block;
  color: #8b99a4;
  font: 10px Arial;
  letter-spacing: 1px;
}
.navlinks {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}
.navlinks a {
  height: 78px;
  display: flex;
  align-items: center;
  position: relative;
}
.navlinks a.active,
.navlinks a:hover {
  color: var(--blue);
}
.navlinks a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
}
.phone {
  font-weight: 700;
  font-size: 14px;
}
.phone b {
  color: var(--blue);
  font-size: 17px;
  margin-left: 5px;
}
.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 25px;
}
.hero {
  background: #fff;
}
.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 54px;
}
.hero-copy {
  padding: 55px 0;
}
.kicker,
.eyebrow {
  color: var(--blue);
  font: 700 13px Arial;
  letter-spacing: 2px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker:before,
.eyebrow:before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--blue);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.hero h1 {
  font-size: 55px;
  line-height: 1.18;
  margin: 22px 0 18px;
  letter-spacing: 0.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-copy > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 560px;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  height: 50px;
  padding: 0 26px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-outline {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
}
.hero-notes {
  display: flex;
  gap: 24px;
  margin-top: 25px;
  font-size: 13px;
  color: #526776;
}
.hero-media {
  height: 500px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: url("hero.png") 62% center/cover;
  box-shadow: 0 24px 60px rgba(31, 86, 126, 0.16);
}
.hero-media:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 58, 86, 0.48));
}
.hero-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.94);
  padding: 17px 20px;
  border-radius: 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(8px);
}
.hero-card strong {
  font-size: 16px;
}
.hero-card span {
  font-size: 12px;
  color: var(--muted);
}
.quick {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-item {
  padding: 23px 24px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 2px 10px;
}
.quick-item:last-child {
  border: 0;
}
.quick-item b {
  grid-row: 1/3;
  color: #aac6da;
  font: 700 22px Arial;
}
.quick-item strong {
  font-size: 15px;
}
.quick-item span {
  font-size: 12px;
  color: var(--muted);
}
.section {
  padding: 82px 0;
}
.soft {
  background: var(--pale);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}
.section-head h2 {
  font-size: 35px;
  margin: 11px 0 0;
}
.section-head p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.8;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.system-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 29px;
  min-height: 220px;
}
.system-icon {
  width: 44px;
  height: 44px;
  background: #eaf4fb;
  color: var(--blue);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.system-card h3 {
  font-size: 20px;
  margin: 20px 0 10px;
}
.system-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-item {
  border-top: 3px solid #b7d2e5;
  background: #fff;
  padding: 26px 22px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(34, 77, 108, 0.06);
}
.process-item b {
  font: 700 13px Arial;
  color: var(--blue);
}
.process-item h3 {
  margin: 26px 0 9px;
  font-size: 19px;
}
.process-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.env-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.env-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.env-card:first-child {
  grid-row: 1/3;
  background-image: url("campus.png");
}
.env-card:nth-child(2) {
  background-image: url("hero.png");
}
.env-card:nth-child(3) {
  background-image:
    linear-gradient(145deg, rgba(75, 136, 177, 0.1), rgba(75, 136, 177, 0.3)),
    url("campus.png");
  background-position: left center;
}
.env-card:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(15, 49, 70, 0.62));
}
.env-card span {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font-weight: 700;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  background: #fff;
}
.faq strong {
  display: block;
  margin-bottom: 7px;
}
.faq p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.featured {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.featured-image {
  height: 235px;
  background:
    linear-gradient(180deg, transparent, rgba(34, 82, 112, 0.55)),
    url("hero.png") center/cover;
  display: flex;
  align-items: end;
  padding: 26px;
}
.featured-image strong {
  color: #fff;
  font-size: 25px;
  line-height: 1.45;
}
.featured-body {
  padding: 21px;
}
.meta {
  font-size: 12px;
  color: var(--blue);
}
.featured-body p {
  color: var(--muted);
  line-height: 1.7;
}
.news-list {
  display: flex;
  flex-direction: column;
}
.news-row {
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 15px;
}
.date {
  font: 700 21px Arial;
  color: var(--blue);
}
.date small {
  display: block;
  font: 400 10px Arial;
  color: #9aa6af;
}
.news-row h3 {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 5px;
}
.news-row p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.cta {
  padding: 52px 0;
  background: #eef6fb;
  border-top: 1px solid #dbeaf4;
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta h2 {
  font-size: 29px;
  margin: 0 0 7px;
}
.cta p {
  color: var(--muted);
  margin: 0;
}
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 44px 0 28px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 45px;
}
.footer-title {
  font-weight: 700;
  margin-bottom: 13px;
}
.footer p,
.footer a {
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.friend-links {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 12px;
  color: var(--muted);
}
.friend-links a {
  margin-right: 18px;
}
.legal {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 15px;
  padding-top: 15px;
  font-size: 12px;
  color: #93a0aa;
}
.page-head {
  padding: 46px 0;
  background: #f7fafc;
  border-bottom: 1px solid var(--line);
}
.crumb {
  font-size: 12px;
  color: #8b99a5;
}
.page-head h1 {
  font-size: 38px;
  margin: 17px 0 9px;
}
.page-head p {
  color: var(--muted);
  margin: 0;
}
.promo {
  margin: 28px auto 0;
  background: linear-gradient(100deg, #edf6fc, #dceef9);
  border: 1px solid #cfe4f2;
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo h2 {
  font-size: 23px;
  margin: 0 0 7px;
}
.promo p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 34px;
  padding: 38px 0 76px;
}
.article-list {
  display: flex;
  flex-direction: column;
}
.article-card {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.article-thumb {
  height: 100px;
  border-radius: 7px;
  background: linear-gradient(135deg, #a9cee5, #4e91c1);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.article-card h2 {
  font-size: 20px;
  line-height: 1.45;
  margin: 8px 0;
}
.article-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.sidebar {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  height: max-content;
}
.sidebar h3 {
  margin: 0 0 13px;
}
.hot a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  font-size: 13px;
  line-height: 1.6;
}
.hot b {
  color: var(--blue);
  margin-right: 8px;
}
.article {
  min-width: 0;
}
.article h1 {
  font-size: 32px;
  line-height: 1.4;
  margin: 0 0 14px;
}
.article-meta {
  font-size: 13px;
  color: #8c99a4;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.article h2 {
  font-size: 22px;
  margin-top: 30px;
}
.article p {
  font-size: 16px;
  line-height: 2;
  color: #405362;
}
.quote {
  border-left: 4px solid var(--blue);
  background: #f0f7fb;
  padding: 17px 20px;
  margin: 24px 0;
  line-height: 1.8;
}
.bottom-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 20px;
  font-size: 13px;
}
.mobile-bar {
  display: none;
}
@media (max-width: 820px) {
  .wrap {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }
  .topbar {
    display: none;
  }
  .header,
  .nav {
    height: 62px;
  }
  .logo {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .brand strong {
    font-size: 18px;
  }
  .brand small,
  .navlinks,
  .phone {
    display: none;
  }
  .menu {
    display: block;
  }
  .hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    padding: 20px 0 34px;
  }
  .hero-media {
    height: 265px;
    width: 100%;
    border-radius: 12px;
  }
  .hero-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
  .hero-copy {
    padding: 28px 0 0;
  }
  .hero h1 {
    font-size: 36px;
    margin: 17px 0 13px;
  }
  .hero-copy > p {
    font-size: 15px;
    line-height: 1.75;
  }
  .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .btn {
    height: 47px;
    padding: 0 12px;
  }
  .hero-notes {
    gap: 11px;
    flex-wrap: wrap;
    font-size: 12px;
  }
  .quick .wrap {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr 1fr;
  }
  .quick-item {
    padding: 17px 14px;
  }
  .quick-item:nth-child(2) {
    border-right: 0;
  }
  .quick-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding: 56px 0;
  }
  .section-head {
    display: block;
    margin-bottom: 25px;
  }
  .section-head h2 {
    font-size: 28px;
    line-height: 1.35;
  }
  .section-head p {
    font-size: 14px;
  }
  .system-grid {
    grid-template-columns: 1fr;
  }
  .system-card {
    min-height: 0;
    padding: 23px;
  }
  .process {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .process-item {
    padding: 20px 16px;
  }
  .env-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 150px;
  }
  .env-card:first-child {
    grid-column: 1/3;
    grid-row: auto;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .featured-image {
    height: 185px;
  }
  .featured-image strong {
    font-size: 20px;
  }
  .news-row {
    grid-template-columns: 55px minmax(0, 1fr);
  }
  .cta .wrap {
    display: block;
  }
  .cta .btn {
    margin-top: 18px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .legal {
    display: block;
    line-height: 2;
  }
  .page-head {
    padding: 34px 0;
  }
  .page-head h1 {
    font-size: 30px;
  }
  .promo {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    margin-top: 18px;
    padding: 20px;
    display: block;
  }
  .promo h2 {
    font-size: 20px;
  }
  .promo .btn {
    margin-top: 16px;
    width: 100%;
  }
  .content-layout {
    display: block;
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    padding: 22px 0 68px;
  }
  .article-card {
    display: block;
    padding: 19px 0;
  }
  .article-thumb {
    display: none;
  }
  .article-card h2 {
    font-size: 18px;
    margin: 7px 0;
  }
  .article-card p {
    font-size: 13px;
  }
  .sidebar {
    display: none;
  }
  .article {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .article h1 {
    font-size: 25px;
    overflow-wrap: anywhere;
  }
  .article p {
    font-size: 15px;
    line-height: 1.9;
  }
  .article h2 {
    font-size: 20px;
  }
  .bottom-nav {
    display: block;
  }
  .bottom-nav a {
    display: block;
    margin: 9px 0;
  }
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px 10px;
    box-shadow: 0 -4px 16px rgba(31, 67, 93, 0.12);
  }
  .mobile-bar a {
    height: 43px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
  }
  .mobile-bar a:last-child {
    background: var(--blue);
    color: #fff;
    border-radius: 5px;
  }
  .footer {
    padding-bottom: 84px;
  }
}
@media (max-width: 430px) {
  .hero h1 {
    font-size: 33px;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .env-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 230px 150px 150px;
  }
  .env-card:first-child {
    grid-column: auto;
  }
  .promo h2 {
    font-size: 19px;
  }
}
:root {
  --blue: #c72c37;
  --blue2: #dc6870;
  --pale: #fff7f7;
  --line: #eee5e5;
}
.brand img {
  width: 218px;
  height: 56px;
  max-width: none;
}
.hero {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 34%,
      rgba(255, 255, 255, 0.53) 68%
    ),
    url("hero.png") center/cover;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 45px;
  min-height: 590px;
}
.hero-copy {
  padding: 50px 0;
}
.hero h1 {
  font-size: 53px;
}
.hero-copy > p {
  color: #53616b;
}
.hero-form {
  background: #fff;
  padding: 28px;
  border: 1px solid #f0d9dc;
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(118, 40, 48, 0.14);
}
.hero-form .form-tag {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}
.hero-form h2 {
  font-size: 24px;
  margin: 10px 0 6px;
}
.hero-form > p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 18px;
}
.hero-form label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin: 10px 0;
}
.hero-form input,
.hero-form select {
  display: block;
  width: 100%;
  height: 42px;
  margin-top: 6px;
  padding: 0 12px;
  border: 1px solid #e8dfe0;
  border-radius: 5px;
  background: #fff;
  font: 14px inherit;
}
.hero-form button {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-top: 12px;
  cursor: pointer;
}
.hero-form small {
  display: block;
  text-align: center;
  color: #9b9b9b;
  margin-top: 9px;
  font-size: 11px;
}
.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.split-feature > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 10px;
}
.split-copy h3 {
  font-size: 25px;
  margin: 0 0 16px;
}
.split-copy p {
  color: var(--muted);
  line-height: 1.9;
}
.split-copy ul {
  padding-left: 20px;
  line-height: 2;
  color: #3a4650;
}
.visual-process {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 20px;
}
.visual-process > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}
.visual-process .process {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.visual-process .process-item {
  padding: 20px;
  min-height: 134px;
}
.visual-process .process-item h3 {
  margin: 12px 0 5px;
  font-size: 17px;
}
.visual-process .process-item p {
  margin: 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
}
.faq-layout > img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 10px;
}
.page-head {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97),
      rgba(255, 255, 255, 0.83) 60%,
      rgba(255, 255, 255, 0.17)
    ),
    url("campus.png") center/cover;
  min-height: 255px;
  display: flex;
  align-items: center;
}
.page-head > .wrap {
  width: min(1180px, calc(100% - 40px));
}
.promo {
  background: linear-gradient(100deg, #fff8f8, #fcebed);
  border-color: #f2d9dd;
}
.cta {
  background: #fff7f7;
  border-color: #f1dfe1;
}
.env-card:after {
  background: linear-gradient(transparent, rgba(80, 24, 28, 0.56));
}
.featured-image {
  background:
    linear-gradient(180deg, transparent, rgba(80, 24, 28, 0.58)),
    url("hero.png") center/cover;
}
.article-thumb {
  background: linear-gradient(135deg, #e3b6ba, #bd5962);
}
@media (max-width: 820px) {
  .brand img {
    width: 170px;
    height: auto;
  }
  .navlinks.is-open {
    display: flex;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 22px 18px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  }
  .navlinks.is-open a {
    height: 42px;
  }
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.88),
        rgba(255, 255, 255, 0.98) 42%
      ),
      url("hero.png") 62% top/auto 360px no-repeat;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 26px 0 34px;
    min-height: 0;
  }
  .hero-copy {
    padding: 20px 0 24px;
  }
  .hero h1 {
    font-size: 35px;
  }
  .hero-form {
    width: 100%;
    padding: 22px;
  }
  .split-feature,
  .visual-process,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .split-feature > img {
    height: 230px;
  }
  .visual-process > img {
    height: 210px;
  }
  .visual-process .process {
    grid-template-columns: 1fr 1fr;
  }
  .faq-layout > img {
    height: 190px;
    min-height: 0;
  }
  .page-head {
    min-height: 210px;
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96),
        rgba(255, 255, 255, 0.65)
      ),
      url("campus.png") center/cover;
  }
  .page-head > .wrap {
    width: calc(100% - 28px);
  }
  .promo {
    border-color: #f2d9dd;
  }
}
@media (max-width: 430px) {
  .brand img {
    width: 155px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .visual-process .process {
    grid-template-columns: 1fr 1fr;
  }
}
.listing-page .page-head {
  min-height: 310px;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(112, 24, 34, 0.94) 0%,
      rgba(112, 24, 34, 0.78) 49%,
      rgba(112, 24, 34, 0.38) 100%
    ),
    url("campus.png") center/cover;
}
.listing-page .page-head .crumb,
.listing-page .page-head p {
  color: #fff;
}
.listing-page .page-head h1 {
  text-shadow: 0 2px 16px rgba(56, 11, 16, 0.25);
}
.sidebar-column {
  min-width: 0;
}
.sidebar-column .sidebar {
  margin-top: 18px;
}
.sidebar-form {
  padding: 24px;
  background: #fff8f8;
  border: 1px solid #f1d9dc;
  border-radius: 8px;
}
.sidebar-form h3 {
  font-size: 19px;
  margin: 0 0 6px;
}
.sidebar-form > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.sidebar-form label {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin: 12px 0;
}
.sidebar-form input,
.sidebar-form select {
  width: 100%;
  height: 39px;
  border: 1px solid #e7dfe0;
  border-radius: 4px;
  background: #fff;
  margin-top: 6px;
  padding: 0 10px;
  font-size: 13px;
}
.sidebar-form button {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  margin-top: 9px;
  cursor: pointer;
}
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.pagination a {
  height: 38px;
  min-width: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.pagination a.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.pagination a.disabled {
  opacity: 0.45;
  pointer-events: none;
}
.article-list .pagination {
  align-self: center;
}
@media (max-width: 820px) {
  .listing-page .page-head {
    min-height: 230px;
    background:
      linear-gradient(90deg, rgba(112, 24, 34, 0.91), rgba(112, 24, 34, 0.58)),
      url("campus.png") center/cover;
  }
  .sidebar-column {
    margin-top: 32px;
  }
  .sidebar-column .sidebar {
    display: none;
  }
  .sidebar-form {
    max-width: 100%;
  }
  .pagination {
    gap: 5px;
  }
  .pagination a {
    min-width: 34px;
    height: 36px;
    padding: 0 9px;
  }
}
.listing-page .page-head {
  min-height: 215px;
  padding: 28px 0;
}
.listing-page .page-head h1 {
  margin: 12px 0 6px;
}
.home-banner {
  background: #fff;
  padding: 34px 0 0;
}
.banner-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 455px;
  gap: 35px;
}
.banner-copy {
  padding: 30px 0 45px;
}
.banner-overline {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
}
.banner-copy h1 {
  font-size: 55px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 22px 0;
}
.banner-copy h1 em {
  font-style: normal;
  color: var(--blue);
}
.banner-copy p {
  font-size: 17px;
  color: #5d6870;
  line-height: 1.85;
  max-width: 515px;
}
.banner-points {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}
.banner-points span {
  padding: 7px 12px;
  background: #fcf1f2;
  color: #9d2730;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
}
.banner-photo {
  height: 435px;
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 4px 55px;
}
.banner-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(24, 36, 45, 0.68));
  padding: 42px 26px 20px;
  color: #fff;
  text-align: right;
  font-size: 14px;
  letter-spacing: 1px;
}
.banner-form-wrap {
  display: grid;
  grid-template-columns: 235px 1fr;
  gap: 24px;
  align-items: center;
  background: #a82430;
  color: #fff;
  padding: 24px 28px;
  position: relative;
  margin-top: -16px;
  border-radius: 3px;
  box-shadow: 0 18px 35px rgba(120, 27, 37, 0.14);
}
.form-lead strong {
  display: block;
  font-size: 19px;
  line-height: 1.45;
}
.form-lead span {
  display: block;
  font-size: 12px;
  color: #ffe1e4;
  margin-top: 5px;
}
.inline-consult {
  display: grid;
  grid-template-columns: 1fr 130px;
  align-items: end;
  gap: 12px;
}
.inline-consult .form-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.inline-consult label {
  display: block;
  font-size: 12px;
  font-weight: 700;
}
.inline-consult input,
.inline-consult select {
  width: 100%;
  height: 42px;
  margin-top: 6px;
  border: 1px solid #f0d8da;
  background: #fff;
  border-radius: 3px;
  padding: 0 10px;
  color: #36414a;
  font-size: 12px;
}
.inline-consult button {
  height: 42px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  color: #a82430;
  font-weight: 700;
  cursor: pointer;
}
.home-section {
  padding: 88px 0;
}
.home-section.tint {
  background: #fff9f9;
}
.home-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 32px;
}
.home-heading h2 {
  font-size: 36px;
  line-height: 1.35;
  margin: 12px 0 0;
}
.home-heading p {
  max-width: 420px;
  color: #73808a;
  line-height: 1.8;
  margin: 0;
}
.home-heading > a {
  color: var(--blue);
  font-weight: 700;
}
.approach-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.approach-layout > img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.approach-list > div {
  display: flex;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.approach-list b {
  font: 700 23px Arial;
  color: #bd3b45;
}
.approach-list strong {
  display: block;
  font-size: 18px;
  margin-bottom: 7px;
}
.approach-list small {
  color: #75818a;
  font-size: 13px;
}
.daily-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.daily-grid article {
  background: #fff;
  border: 1px solid #f0e1e2;
}
.daily-grid img {
  height: 205px;
  width: 100%;
  object-fit: cover;
}
.daily-grid article > div {
  padding: 23px;
}
.daily-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.daily-grid h3 {
  font-size: 20px;
  margin: 11px 0;
}
.daily-grid p {
  color: #75818a;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.campus-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 210px 210px;
  gap: 14px;
}
.campus-gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.campus-gallery .campus-large {
  grid-row: 1/3;
}
.campus-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.campus-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 18px 16px;
  background: linear-gradient(transparent, rgba(25, 31, 36, 0.6));
  color: #fff;
  font-weight: 700;
}
.questions-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
}
.questions-layout > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 5px;
}
.questions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.questions-list > div {
  background: #fff;
  border: 1px solid #f0e1e2;
  padding: 21px;
}
.questions-list strong {
  font-size: 16px;
}
.questions-list p {
  color: #74818a;
  font-size: 13px;
  line-height: 1.7;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
.editorial-feature {
  border: 1px solid var(--line);
  padding-bottom: 22px;
}
.editorial-feature img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}
.editorial-feature span,
.editorial-feature h3,
.editorial-feature p {
  display: block;
  margin-left: 22px;
  margin-right: 22px;
}
.editorial-feature span {
  color: var(--blue);
  font-size: 12px;
  margin-top: 19px;
}
.editorial-feature h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-top: 8px;
  margin-bottom: 8px;
}
.editorial-feature p {
  color: #78838b;
  font-size: 14px;
  line-height: 1.7;
}
.editorial-side img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}
.editorial-side a {
  display: block;
  padding: 17px 3px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 820px) {
  .listing-page .page-head {
    min-height: 160px;
    padding: 20px 0;
  }
  .listing-page .page-head h1 {
    margin: 9px 0 5px;
    font-size: 27px;
  }
  .home-banner {
    padding-top: 16px;
  }
  .banner-main {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    min-height: 0;
  }
  .banner-photo {
    height: 230px;
    width: 100%;
    border-radius: 4px 4px 4px 25px;
  }
  .photo-caption {
    font-size: 11px;
    padding: 30px 13px 10px;
  }
  .banner-copy {
    padding: 26px 0;
  }
  .banner-copy h1 {
    font-size: 35px;
    margin: 13px 0;
  }
  .banner-copy p {
    font-size: 15px;
    margin: 0;
  }
  .banner-points {
    margin-top: 15px;
  }
  .banner-form-wrap {
    display: block;
    margin-top: 0;
    padding: 20px;
  }
  .form-lead {
    margin-bottom: 17px;
  }
  .form-lead strong {
    font-size: 18px;
  }
  .inline-consult {
    display: block;
  }
  .inline-consult .form-fields {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .inline-consult button {
    width: 100%;
    margin-top: 14px;
  }
  .home-section {
    padding: 58px 0;
  }
  .home-heading {
    display: block;
    margin-bottom: 24px;
  }
  .home-heading h2 {
    font-size: 28px;
  }
  .home-heading p {
    font-size: 14px;
    margin-top: 9px;
  }
  .approach-layout,
  .questions-layout,
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .approach-layout > img {
    height: 220px;
  }
  .daily-grid {
    grid-template-columns: 1fr;
  }
  .daily-grid img {
    height: 220px;
  }
  .campus-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 150px;
  }
  .campus-gallery .campus-large {
    grid-column: 1/3;
    grid-row: auto;
  }
  .questions-layout > img {
    height: 190px;
  }
  .questions-list {
    grid-template-columns: 1fr 1fr;
  }
  .editorial-feature img {
    height: 210px;
  }
  .editorial-side img {
    height: 155px;
  }
}
@media (max-width: 430px) {
  .banner-copy h1 {
    font-size: 31px;
  }
  .inline-consult .form-fields {
    grid-template-columns: 1fr 1fr;
  }
  .questions-list {
    grid-template-columns: 1fr;
  }
}
.home-banner {
  padding-top: 24px;
}
.poster-hero {
  height: 505px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #f6f2ed;
}
.poster-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.poster-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.86) 34%,
    rgba(255, 255, 255, 0.08) 67%,
    transparent 100%
  );
}
.poster-copy {
  position: absolute;
  z-index: 1;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 49%;
}
.poster-copy h1 {
  font-size: 51px;
  line-height: 1.24;
  margin: 20px 0;
  color: #182b35;
}
.poster-copy h1 em {
  font-style: normal;
  color: #b62834;
}
.poster-copy p {
  font-size: 17px;
  line-height: 1.85;
  color: #46535b;
  max-width: 520px;
}
.poster-action {
  display: inline-flex;
  margin-top: 26px;
  padding: 14px 28px;
  background: #b62834;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 3px;
}
.home-heading {
  display: block;
  margin-bottom: 32px;
}
.home-heading h2 {
  margin: 13px 0 0;
}
.home-heading p {
  max-width: none;
  font-size: 17px;
  font-weight: 700;
  color: #53616b;
  line-height: 1.65;
  margin: 13px 0 0;
}
.section-consult {
  text-align: center;
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.section-consult > a:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  height: 48px;
  background: #b62834;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 3px;
}
.section-consult .section-more {
  color: #b62834;
  font-weight: 700;
  font-size: 14px;
}
.campus-gallery {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 255px 255px;
  gap: 14px;
}
.campus-gallery figure {
  grid-column: span 2;
}
.campus-gallery figure:first-child,
.campus-gallery figure:nth-child(2) {
  grid-column: span 3;
}
.campus-gallery img {
  transition: transform 0.3s;
}
.campus-gallery figure:hover img {
  transform: scale(1.03);
}
.questions-layout {
  grid-template-columns: 290px 1fr;
  align-items: stretch;
}
.questions-layout > img {
  height: 100%;
  min-height: 600px;
}
.questions-list {
  gap: 10px;
}
.questions-list > div {
  padding: 17px 19px;
}
.questions-list p {
  margin: 8px 0 0;
}
.recent-articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.recent-articles a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
}
.recent-articles a:hover {
  color: #b62834;
}
.recent-articles time {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 400;
  color: #98a0a6;
}
@media (max-width: 820px) {
  .home-banner {
    padding-top: 0;
  }
  .home-banner > .wrap:first-child {
    width: 100%;
    max-width: none;
  }
  .poster-hero {
    height: auto;
    min-height: 570px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
  .poster-hero > img {
    height: 275px;
    object-position: 68% center;
  }
  .poster-hero:after {
    display: none;
  }
  .poster-copy {
    position: static;
    transform: none;
    width: auto;
    padding: 27px 18px 30px;
    background: #fff;
  }
  .poster-copy h1 {
    font-size: 34px;
    margin: 13px 0;
  }
  .poster-copy p {
    font-size: 15px;
    margin: 0;
  }
  .poster-action {
    margin-top: 19px;
  }
  .banner-points {
    flex-wrap: wrap;
  }
  .banner-form-wrap {
    border-radius: 0;
  }
  .home-heading h2 {
    font-size: 28px;
  }
  .home-heading p {
    font-size: 15px;
    font-weight: 700;
  }
  .campus-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 10px;
  }
  .campus-gallery figure,
  .campus-gallery figure:first-child,
  .campus-gallery figure:nth-child(2) {
    grid-column: span 1;
    height: 170px;
  }
  .campus-gallery figure:first-child {
    grid-column: span 2;
    height: 220px;
  }
  .questions-layout {
    grid-template-columns: 1fr;
  }
  .questions-layout > img {
    height: 200px;
    min-height: 0;
  }
  .questions-list {
    grid-template-columns: 1fr 1fr;
  }
  .recent-articles {
    grid-template-columns: 1fr;
  }
  .recent-articles a {
    font-size: 15px;
    padding: 17px 1px;
  }
  .section-consult {
    margin-top: 27px;
  }
  .section-consult > a:first-child {
    min-width: 190px;
  }
}
@media (max-width: 600px) {
  .questions-list {
    grid-template-columns: 1fr;
  }
  .campus-gallery figure,
  .campus-gallery figure:first-child,
  .campus-gallery figure:nth-child(2) {
    grid-column: span 1;
    height: 150px;
  }
  .campus-gallery figure:first-child {
    grid-column: span 2;
    height: 210px;
  }
  .recent-articles time {
    font-size: 11px;
  }
  .recent-articles a {
    gap: 7px;
  }
  .section-consult {
    flex-direction: column;
    gap: 12px;
  }
  .poster-copy h1 {
    font-size: 31px;
  }
}
.poster-wrap {
  position: relative;
}
.admission-poster {
  display: block;
  width: 100%;
  line-height: 0;
}
.admission-poster img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/560;
  object-fit: cover;
}
.poster-button {
  position: absolute;
  right: 38px;
  bottom: 47px;
}
.poster-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  padding: 0 24px;
  background: #fff;
  color: #a52230;
  border: 1px solid #e8bec2;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(36, 18, 22, 0.15);
}
.banner-form-wrap {
  margin-top: 0;
}
.approach-layout {
  align-items: stretch;
}
.approach-layout > img {
  height: 100%;
  min-height: 390px;
}
.approach-list > div {
  padding: 18px 0;
}
.approach-list small {
  display: block;
  line-height: 1.65;
}
.method-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  border: 1px solid #ecdadd;
  background: #fffafa;
}
.method-strip > div {
  padding: 20px 24px;
  border-right: 1px solid #ecdadd;
  display: flex;
  gap: 12px;
  align-items: center;
}
.method-strip > div:last-child {
  border: 0;
}
.method-strip b {
  color: #b32935;
  white-space: nowrap;
}
.method-strip span {
  color: #65717a;
  font-size: 13px;
}
.daily-grid p {
  min-height: 72px;
}
.daily-rhythm {
  margin-top: 20px;
  padding: 22px 27px;
  background: #fff;
  border: 1px solid #f0e1e2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.daily-rhythm strong {
  color: #b32935;
  margin-right: 15px;
}
.daily-rhythm span {
  font-size: 14px;
  font-weight: 700;
}
.daily-rhythm i {
  font-style: normal;
  color: #cf9499;
}
.student-life {
  background: #fff;
}
.student-carousel {
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 5px;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track figure {
  flex: 0 0 calc((100% - 36px) / 3);
  margin: 0;
  position: relative;
  height: 285px;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 4px;
  background: #f1ece8;
}
.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-track figcaption {
  position: absolute;
  inset: auto 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 45px 20px 18px;
  background: linear-gradient(transparent, rgba(20, 27, 31, 0.7));
}
.carousel-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #ab2834;
  box-shadow: 0 4px 19px rgba(0, 0, 0, 0.18);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.carousel-arrow.prev {
  left: -22px;
}
.carousel-arrow.next {
  right: -22px;
}
.carousel-status {
  text-align: center;
  font: 700 13px Arial;
  color: #a8333d;
  margin-top: 14px;
  letter-spacing: 2px;
}
@media (max-width: 820px) {
  .home-banner > .poster-wrap {
    width: 100%;
    max-width: none;
  }
  .admission-poster img {
    aspect-ratio: 750/1060;
  }
  .poster-button {
    position: static;
    padding: 14px;
    text-align: center;
    background: #fff;
  }
  .poster-button a {
    width: 100%;
    box-shadow: none;
    border-color: #b32935;
    color: #b32935;
  }
  .method-strip {
    grid-template-columns: 1fr;
  }
  .method-strip > div {
    border-right: 0;
    border-bottom: 1px solid #ecdadd;
    padding: 15px 18px;
  }
  .method-strip > div:last-child {
    border: 0;
  }
  .approach-layout > img {
    height: 230px;
    min-height: 0;
  }
  .daily-grid p {
    min-height: 0;
  }
  .daily-rhythm {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px;
  }
  .daily-rhythm strong {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .carousel-track figure {
    flex-basis: 78%;
    height: 250px;
  }
  .carousel-arrow.prev {
    left: 4px;
  }
  .carousel-arrow.next {
    right: 4px;
  }
}
.poster-button {
  position: static;
  padding: 18px 0 20px;
  text-align: center;
  background: #fff;
}
.poster-button a {
  min-width: 220px;
  box-shadow: none;
  background: #b32935;
  color: #fff;
  border-color: #b32935;
}
.home-banner .banner-form-wrap {
  margin-top: 0;
}
@media (max-width: 820px) {
  .admission-poster img {
    aspect-ratio: 750/1190;
  }
  .poster-button {
    padding: 14px;
  }
  .poster-button a {
    width: 100%;
  }
}
.poster-button {
  display: none;
}
.recent-articles time,
.article .article-meta {
  display: none;
}
.topbar .wrap > span:last-child {
  display: none;
}
.questions-layout {
  display: block;
}
.questions-dense {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.questions-dense > div {
  min-height: 112px;
  padding: 17px 18px;
}
.questions-dense strong {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.45;
}
.questions-dense strong i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: #b32935;
  color: #fff;
  font: 700 11px Arial;
  margin-top: 1px;
}
.questions-dense p {
  font-size: 12px;
  line-height: 1.55;
  margin: 8px 0 0;
}
.enrollment-process {
  padding: 56px 0 62px;
  background: #fff;
}
.process-heading {
  text-align: center;
  margin-bottom: 28px;
}
.process-heading h2 {
  font-size: 31px;
  margin: 12px 0 8px;
}
.process-heading p {
  margin: 0;
  color: #66737d;
  font-size: 15px;
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid #efdfe1;
  background: #fff;
}
.process-flow article {
  min-height: 180px;
  padding: 21px 16px 17px;
  position: relative;
  border-right: 1px solid #efdfe1;
  text-align: center;
}
.process-flow article:last-child {
  border-right: 0;
}
.process-flow article:not(:last-child):after {
  content: "›";
  position: absolute;
  right: -12px;
  top: 72px;
  z-index: 1;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #b32935;
  color: #fff;
  font-size: 21px;
}
.process-flow b {
  display: block;
  color: #c46a71;
  font: 700 12px Arial;
  letter-spacing: 1px;
}
.process-icon {
  display: grid;
  place-items: center;
  margin: 14px auto 12px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff2f3;
  color: #b32935;
  font-size: 20px;
  font-weight: 700;
}
.process-flow h3 {
  font-size: 16px;
  margin: 0 0 7px;
}
.process-flow p {
  color: #7b858d;
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}
.footer .footer-main p br:last-of-type {
  display: none;
}
@media (max-width: 820px) {
  .questions-dense {
    grid-template-columns: 1fr 1fr;
  }
  .questions-dense > div {
    min-height: 106px;
  }
  .enrollment-process {
    padding: 44px 0;
  }
  .process-heading h2 {
    font-size: 27px;
  }
  .process-flow {
    grid-template-columns: 1fr 1fr;
  }
  .process-flow article {
    min-height: 158px;
    border-bottom: 1px solid #efdfe1;
  }
  .process-flow article:nth-child(2n) {
    border-right: 0;
  }
  .process-flow article:nth-child(2n):after {
    display: none;
  }
  .process-flow article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .process-flow article:not(:last-child):after {
    top: auto;
    bottom: -12px;
    right: calc(50% - 12px);
    transform: rotate(90deg);
  }
}
@media (max-width: 520px) {
  .questions-dense {
    grid-template-columns: 1fr;
  }
  .questions-dense > div {
    min-height: 0;
    padding: 15px 16px;
  }
  .process-flow {
    grid-template-columns: 1fr;
  }
  .process-flow article {
    border-right: 0;
    border-bottom: 1px solid #efdfe1;
  }
  .process-flow article:nth-last-child(-n + 2) {
    border-bottom: 1px solid #efdfe1;
  }
  .process-flow article:last-child {
    border-bottom: 0;
  }
  .process-flow article:not(:last-child):after {
    display: grid;
  }
  .process-flow article:nth-child(2n):after {
    display: grid;
  }
}
.topbar {
  background: #f7f9fa;
  color: #74808a;
}
.topbar .wrap > span:last-child {
  display: inline;
}
.recent-articles {
  grid-template-columns: repeat(3, 1fr);
  gap: 0 28px;
}
.recent-articles a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  padding: 16px 2px;
}
@media (max-width: 820px) {
  .recent-articles {
    grid-template-columns: 1fr;
  }
  .recent-articles a {
    font-size: 14px;
  }
}
.news-heading {
  position: relative;
}
.news-heading .news-more {
  position: absolute;
  right: 0;
  top: 16px;
  color: #b32935;
  font-size: 14px;
  font-weight: 700;
}
.news-heading .news-more:hover {
  color: #8e1e29;
}
@media (max-width: 820px) {
  .news-heading .news-more {
    top: 12px;
    font-size: 13px;
  }
}
@media (max-width: 520px) {
  .enrollment-process {
    padding: 34px 0 38px;
  }
  .process-heading {
    margin-bottom: 18px;
  }
  .process-heading h2 {
    font-size: 24px;
    margin: 8px 0;
  }
  .process-heading p {
    font-size: 13px;
  }
  .process-flow {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-flow article,
  .process-flow article:nth-last-child(-n + 2) {
    min-height: 113px;
    padding: 12px 6px;
    border-right: 1px solid #efdfe1;
    border-bottom: 1px solid #efdfe1;
  }
  .process-flow article:nth-child(3n) {
    border-right: 0;
  }
  .process-flow article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
  .process-flow article:after {
    display: none !important;
  }
  .process-flow b {
    font-size: 10px;
  }
  .process-icon {
    width: 33px;
    height: 33px;
    margin: 7px auto 7px;
    font-size: 15px;
  }
  .process-flow h3 {
    font-size: 13px;
    margin: 0;
  }
  .process-flow p {
    display: none;
  }
  .questions-dense {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }
  .questions-dense > div {
    padding: 12px 10px;
    min-height: 76px;
  }
  .questions-dense strong {
    font-size: 13px;
    line-height: 1.4;
    gap: 6px;
  }
  .questions-dense strong i {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    font-size: 10px;
  }
  .questions-dense p {
    display: none;
  }
  .questions-layout {
    gap: 0;
  }
  .home-section#questions {
    padding-top: 42px;
    padding-bottom: 44px;
  }
  .home-section#questions .home-heading {
    margin-bottom: 18px;
  }
  .home-section#questions .home-heading h2 {
    font-size: 25px;
  }
  .home-section#questions .home-heading p {
    font-size: 13px;
    margin-top: 7px;
  }
  .home-section#questions .section-consult {
    margin-top: 22px;
  }
}
.home-banner {
  padding-bottom: 0;
}
.consultation-section {
  padding: 0 0 58px;
  background: #fff;
}
.consultation-section .banner-form-wrap {
  margin: 0;
  background: #b32935;
  box-shadow: none;
}
.consultation-section .form-lead span {
  color: #ffe1e4;
}
@media (max-width: 820px) {
  .consultation-section {
    padding: 0 0 40px;
  }
  .consultation-section > .wrap {
    width: 100%;
    max-width: none;
  }
  .consultation-section .banner-form-wrap {
    margin: 0;
    border-radius: 0;
  }
  .home-banner .banner-form-wrap {
    display: none;
  }
}
@media (max-width: 520px) {
  .enrollment-process {
    padding: 32px 14px 38px;
    background: linear-gradient(180deg, #fffafa 0%, #fff 100%);
  }
  .enrollment-process .wrap {
    width: 100%;
    max-width: none;
  }
  .process-heading {
    margin-bottom: 19px;
  }
  .process-heading .eyebrow {
    font-size: 11px;
    letter-spacing: 1.8px;
  }
  .process-heading .eyebrow:before {
    width: 24px;
    height: 2px;
  }
  .process-heading h2 {
    font-size: 25px;
    letter-spacing: 0.2px;
    margin: 9px 0 6px;
  }
  .process-heading p {
    font-size: 12px;
    color: #7a858d;
  }
  .process-flow {
    gap: 8px;
    border: 0;
    background: transparent;
  }
  .process-flow article,
  .process-flow article:nth-last-child(-n + 2) {
    min-height: 128px;
    padding: 12px 6px 10px;
    border: 1px solid #f1dfe1 !important;
    border-top: 3px solid #bd2b38 !important;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(110, 38, 45, 0.055);
  }
  .process-flow b {
    position: static;
    color: #c95760;
    font-size: 10px;
    letter-spacing: 0.8px;
  }
  .process-icon {
    width: 37px;
    height: 37px;
    margin: 8px auto 8px;
    background: #fff1f2;
    color: #b52634;
    font-size: 16px;
  }
  .process-flow h3 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    color: #273943;
  }
  .process-flow article:nth-child(2n) {
    transform: translateY(7px);
  }
  .process-flow article:nth-child(5),
  .process-flow article:nth-child(6) {
    transform: translateY(7px);
  }
}
@media (max-width: 520px) {
  .method-strip {
    display: none;
  }
}
.approach-layout {
  display: block;
}
.approach-layout > img {
  display: none;
}
.approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
}
.approach-list > div {
  display: grid;
  grid-template-columns: 106px 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 16px 0;
}
.approach-list > div:before {
  content: "";
  display: block;
  width: 106px;
  height: 78px;
  border-radius: 4px;
  background: url("hero.png") center/cover;
}
.approach-list > div:nth-child(2):before {
  background-image: url("study.png");
}
.approach-list > div:nth-child(3):before {
  background-image: url("campus.png");
}
.approach-list > div:nth-child(4):before {
  background-image: url("cafeteria.png");
}
.approach-list b {
  font-size: 20px;
}
.approach-list strong {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 5px;
}
.approach-list small {
  font-size: 12px;
  line-height: 1.55;
}
@media (max-width: 820px) {
  .approach-list {
    grid-template-columns: 1fr;
  }
  .approach-list > div {
    grid-template-columns: 90px 32px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 0;
  }
  .approach-list > div:before {
    width: 90px;
    height: 68px;
  }
  .approach-list b {
    font-size: 18px;
  }
  .approach-list strong {
    font-size: 15px;
  }
  .approach-list small {
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  .student-carousel {
    margin-top: 4px;
  }
  .student-carousel .carousel-arrow,
  .carousel-status {
    display: none;
  }
  .carousel-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    overflow: visible;
    padding: 0;
  }
  .carousel-track figure {
    display: block;
    min-width: 0;
    height: 128px;
    border-radius: 4px;
  }
  .carousel-track figure:first-child {
    grid-column: 1/3;
    height: 220px;
  }
  .carousel-track figcaption {
    padding: 30px 12px 11px;
    font-size: 15px;
  }
  .carousel-track figure:not(:first-child) figcaption {
    font-size: 12px;
    padding: 26px 9px 8px;
  }
  .student-life .section-consult {
    margin-top: 22px;
  }
}
.home-banner .banner-form-wrap {
  display: grid;
}
.consultation-section {
  display: none;
}
@media (max-width: 820px) {
  .home-banner .banner-form-wrap {
    display: block;
  }
}
@media (max-width: 820px) {
  .admission-poster img {
    aspect-ratio: 750/800;
  }
  .home-banner .banner-form-wrap {
    width: calc(100% - 28px);
    max-width: none;
    margin: -12px auto 0;
    padding: 22px 18px 19px;
    background: #fff;
    color: #25323b;
    border: 1px solid #eedfe1;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(75, 31, 36, 0.12);
    position: relative;
    z-index: 2;
  }
  .home-banner .form-lead {
    margin-bottom: 14px;
  }
  .home-banner .form-lead strong {
    font-size: 19px;
  }
  .home-banner .form-lead span {
    color: #77838c;
  }
  .home-banner .inline-consult label {
    color: #47535b;
  }
  .home-banner .inline-consult input,
  .home-banner .inline-consult select {
    border-color: #dfe2e5;
  }
  .home-banner .inline-consult button {
    background: #bd2936;
    color: #fff;
  }
}
