@font-face {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 600;
  src: url("assets/zhion/fonts/kanit-v12-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  src: url("assets/zhion/fonts/kanit-v12-latin-700.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  src: url("assets/zhion/fonts/noto-sans-v27-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: url("assets/zhion/fonts/noto-sans-v27-latin-700.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 500;
  src: url("assets/zhion/fonts/noto-sans-tc-v26-chinese-traditional-500.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 700;
  src: url("assets/zhion/fonts/noto-sans-tc-v26-chinese-traditional-700.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 500;
  src: url("assets/zhion/fonts/noto-sans-sc-v26-chinese-simplified-500.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 700;
  src: url("assets/zhion/fonts/noto-sans-sc-v26-chinese-simplified-700.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
dl,
dd,
fieldset {
  margin: 0;
}

body {
  background: #fff;
  color: #111;
  font-family: "Noto Sans", "Noto Sans TC", "Noto Sans SC", Helvetica, Arial, sans-serif;
}

img {
  max-width: 100%;
}

.cap-site,
.cap-contact-page {
  min-height: 100vh;
  padding-top: 60px;
  background: #fff;
  color: #111;
  font-weight: 400;
  letter-spacing: 0;
}

.cap-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(198, 165, 106, 0.28);
  background: rgba(9, 14, 20, 0.96);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
  font-family: Kanit, "Noto Sans TC", "Noto Sans SC", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.25s ease-out;
}

.cap-header.scroll-on {
  height: 44px;
}

.cap-brand {
  display: inline-flex;
  min-width: 0;
  height: 100%;
  align-items: center;
  gap: 16px;
  padding-left: 0.5em;
  color: #f2f3f4;
  text-decoration: none;
  white-space: nowrap;
}

.cap-brand img {
  width: auto;
  height: 2.35em;
  max-height: 48px;
  transition: all 0.25s ease-out;
}

.cap-header.scroll-on .cap-brand img {
  max-height: 36px;
}

.cap-brand span {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.cap-nav {
  display: flex;
  flex: 1;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  font-size: 19.2px;
  font-weight: 900;
}

.cap-nav a {
  display: flex;
  min-width: 120px;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #f2f3f4;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.cap-nav a:hover,
.cap-nav a:focus-visible,
.cap-nav a.active {
  color: #c6a56a;
}

.cap-nav span {
  margin-left: 4px;
  font-size: 14px;
}

.cap-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #202832;
  color: #d9dde2;
  font-size: 13px;
  padding: 4px 12px;
}

.cap-nav-dropdown {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.cap-language-wrap {
  min-width: 130px;
}

.cap-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1000;
  display: grid;
  gap: 4px;
  min-width: 132px;
  max-height: 0;
  padding: 10px 20px;
  border-radius: 4px;
  background: rgba(13, 19, 27, 0.94);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate3d(-50%, 10px, 0);
  transition: all 200ms linear;
  visibility: hidden;
}

.cap-dropdown-menu a {
  display: block;
  min-width: 0;
  height: auto;
  padding: 5px 0;
  color: #f2f3f4;
  font-family: "Noto Sans", "Noto Sans TC", "Noto Sans SC", Helvetica, sans-serif;
  font-size: 15.6px;
  font-weight: 700;
  white-space: nowrap;
}

.cap-nav-dropdown:hover .cap-dropdown-menu,
.cap-nav-dropdown:focus-within .cap-dropdown-menu {
  max-height: 999px;
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
  visibility: visible;
}

.cap-menu {
  display: none;
  color: #111;
  font-weight: 900;
  text-decoration: none;
}

.cap-hero {
  display: grid;
  height: calc(100vh - 60px);
  min-height: 560px;
  place-items: center;
  background-image: linear-gradient(90deg, rgba(5, 8, 12, 0.72), rgba(5, 8, 12, 0.12)), url("assets/zhion/mainvisual.jpg");
  background-position: center center;
  background-size: cover;
  color: #fff;
}

.cap-hero-copy {
  width: min(560px, 76vw);
  filter: drop-shadow(0 0 20px rgba(32, 32, 32, 1));
  animation: capAppear 0.5s ease forwards;
}

.cap-hero-message {
  display: grid;
  gap: 18px;
  color: #f7f7f5;
  text-align: center;
}

.cap-hero-message strong {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.08;
}

.cap-hero-message span {
  color: #d8c39a;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 700;
}

.cap-about {
  overflow: hidden;
  border-top: 16px solid #c6a56a;
  background: #f7f7f5;
  padding: 44px 0 32px;
  text-align: center;
}

.cap-about h1,
.cap-works h2,
.cap-recruit h2 {
  font-family: Kanit, "Noto Sans", "Noto Sans TC", "Noto Sans SC", Helvetica, sans-serif;
  font-size: 60.8px;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
}

.cap-about-copy {
  max-width: 1000px;
  margin: 0 auto 48px;
  color: #464646;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.cap-about-copy p + p {
  margin-top: 20px;
}

.cap-ip-strip {
  display: flex;
  width: 105%;
  height: 30vw;
  min-height: 240px;
  max-height: 360px;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 -2.5%;
  padding: 0;
}

.cap-ip-strip a {
  position: relative;
  display: flex;
  flex: 0 0 15%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  color: white;
  text-decoration: none;
  transform-origin: 50% 50%;
  transition: all 0.25s ease-in-out;
}

.cap-ip-strip:hover a {
  flex-basis: 14%;
  opacity: 0.4;
}

.cap-ip-strip a:hover {
  flex-basis: 24%;
  opacity: 1;
}

.cap-ip-strip span {
  position: relative;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 3vmin;
  font-weight: 700;
  line-height: 0.8em;
  opacity: 0;
  text-shadow: 0 0 16px rgba(32, 32, 32, 1);
}

.cap-ip-strip a:hover span {
  animation: capAppear 0.5s forwards;
}

.cap-pill-button {
  display: inline-flex;
  width: min(330px, calc(100vw - 48px));
  height: 68px;
  align-items: center;
  justify-content: center;
  gap: 52px;
  border-radius: 999px;
  background: #111924;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  margin-top: 48px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cap-pill-button:hover {
  background: #2a3442;
}

.cap-pill-button span {
  font-size: 42px;
  line-height: 0.6;
}

.cap-works {
  position: relative;
  overflow: hidden;
  background: linear-gradient(#202832 0%, #0f1721 100%);
  color: #f5f6f7;
  padding: 44px 0 32px;
  text-align: center;
}

.cap-work-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(300px, 380px);
  width: min(1000px, calc(100vw - 48px));
  margin: 48px auto 32px;
  align-items: flex-start;
  text-align: center;
}

.cap-work-card img {
  width: 100%;
  height: auto;
  margin-top: 40px;
  object-fit: cover;
}

.cap-work-card div {
  display: grid;
  min-height: 320px;
  height: 30vw;
  max-height: 360px;
  align-content: center;
  background: #fff;
  padding: 34px;
}

.cap-work-card h3 {
  color: #111924;
  font-size: 30px;
  font-weight: 900;
}

.cap-work-card p {
  color: #464646;
  font-size: 14px;
  line-height: 1.8;
  margin: 38px 0 18px;
}

.cap-work-card a {
  color: #8a6a35;
  text-decoration: none;
}

.cap-dot {
  width: 140px;
  height: 140px;
  background-image: radial-gradient(#080000 11.2%, transparent 15.2%);
  background-position: 0 0;
  background-size: 16px 16px;
  opacity: 0.6;
}

.cap-dot-works {
  position: absolute;
  right: 9%;
  top: 260px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.cap-grid img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 1400ms linear, filter 1400ms linear;
}

.cap-grid img.is-rotating {
  filter: brightness(1.18);
  opacity: 0.18;
}

.cap-recruit {
  overflow: hidden;
  background-color: #151c25;
  background-image: linear-gradient(90deg, rgba(247, 247, 245, 0.92), rgba(247, 247, 245, 0.72)), url("assets/zhion/bg-recruit.jpg");
  background-position: center;
  background-size: cover;
  padding: 44px 0 0;
}

.cap-recruit-wrap {
  position: relative;
  width: min(1000px, 92%);
  margin: 0 auto;
}

.cap-recruit-wrap > h2 {
  margin: 0 auto 0.8em;
  text-align: center;
}

.cap-recruit-text {
  position: absolute;
  left: 0;
  z-index: 3;
  width: 50%;
  text-align: left;
}

.cap-recruit-text p {
  color: #464646;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin: 46px 0 32px;
  text-align: center;
}

.cap-recruit-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 6px;
  text-align: left;
}

.cap-recruit-text dl {
  display: grid;
  gap: 8px;
}

.cap-recruit-text dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.cap-recruit-text dt {
  display: grid;
  min-height: 34px;
  place-items: center;
  background: #c6a56a;
  color: #000;
}

.cap-recruit-text dd {
  display: grid;
  min-height: 34px;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #464646;
  padding: 0 12px;
  text-align: center;
}

.cap-recruit-note {
  grid-column: 1 / -1;
}

.cap-recruit-picture {
  position: relative;
  width: 100%;
}

.cap-recruit-one {
  position: relative;
  z-index: 2;
  display: block;
  width: 40%;
  max-width: 392px;
  height: auto;
  margin-left: 60%;
}

.cap-dot-recruit {
  position: absolute;
  right: 2em;
  bottom: 2em;
  z-index: 1;
  width: 40%;
  height: 90%;
  background-position: right bottom;
}

.cap-recruit-two {
  position: relative;
  z-index: 2;
  display: block;
  width: 80%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}

.cap-recruit-button,
.cap-back-to-top,
.cap-game-list-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cap-recruit-button {
  width: 64vw;
  max-width: 280px;
  height: 14vw;
  max-height: 68px;
  background: #111924;
  color: #fff;
  font-size: 19.2px;
  margin: 1.5em auto 0;
}

.cap-back-to-top {
  width: calc(64vw - 8px);
  max-width: 272px;
  height: calc(14vw - 8px);
  max-height: 60px;
  border: 3px solid #111924;
  background: #fff;
  color: #111924;
  font-size: 19.2px;
  margin: 1.5em auto 0;
  padding-top: 0.4em;
}

.cap-recruit-button::after,
.cap-game-list-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  width: 0.5em;
  height: 0.5em;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  transition: all 0.3s ease;
}

.cap-recruit-button:hover {
  background: #2a3442;
}

.cap-recruit-button:hover::after,
.cap-game-list-link a:hover::after {
  right: 3%;
}

.cap-back-to-top::before {
  content: "";
  position: absolute;
  top: 0.8em;
  width: 0.5em;
  height: 0.5em;
  border-top: 3px solid #111924;
  border-right: 3px solid #111924;
  transform: translate3d(0, -50%, 0) rotate(-45deg);
  transition: all 0.3s ease;
}

.cap-back-to-top:hover {
  background: #e3d7bf;
}

.cap-back-to-top:hover::before {
  top: 0.5em;
}

.cap-game-list-link {
  width: 100%;
  background: #202832;
  margin-top: 3em;
  padding: 2em 0;
}

.cap-game-list-link a {
  width: calc(64vw - 0.5em);
  max-width: calc(280px - 0.5em);
  height: 14vw;
  max-height: 52px;
  margin: 0 auto;
  background: #c6a56a;
  color: #fff;
  font-size: 16px;
  padding-right: 0.5em;
}

.cap-game-list-link a:hover {
  opacity: 0.8;
}

.cap-footer {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  background: #fff;
  color: #464646;
  padding: 0 20px 2em;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 85%;
}

.cap-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 1em;
}

.cap-footer a {
  display: block;
  border: none;
  border-radius: 50px;
  color: #333;
  margin-right: 1em;
  text-decoration: none;
}

.cap-footer a:last-of-type {
  margin-right: 0;
}

.cap-footer a:hover {
  opacity: 0.8;
}

.cap-footer-links,
.cap-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 2em 0;
}

.cap-footer-links a {
  width: 12em;
  height: 2.4em;
  background: #c5c5c5;
  font-weight: 700;
  line-height: 2.4em;
  text-align: center;
}

.cap-sns span {
  margin-right: 1em;
}

.cap-sns a {
  width: 2.4em;
  height: 2.4em;
  margin: 0;
  border-radius: 50%;
  background-color: #b7b7b7;
  background-position: center;
  background-repeat: no-repeat;
}

.cap-sns a span {
  display: none;
}

.cap-sns #yt {
  background-image: url("assets/zhion/sns-yt.png");
  background-size: auto 1em;
}

.cap-sns #fb {
  background-image: url("assets/zhion/sns-fb.png");
  background-position: center bottom;
  background-size: auto 1.9em;
}

.cap-sns #ig {
  background-image: url("assets/zhion/sns-ig.png");
  background-size: auto 1.4em;
}

.cap-page-title {
  display: grid;
  min-height: 96px;
  place-items: center;
  background: linear-gradient(#202832 0%, #0f1721 100%);
  color: #f5f6f7;
}

.cap-page-title h1 {
  font-size: 36px;
  font-weight: 900;
}

.cap-breadcrumb {
  display: flex;
  max-width: 980px;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: #777;
  margin: 0 auto;
  font-size: 15px;
}

.cap-breadcrumb a,
.cap-breadcrumb strong {
  border-radius: 999px;
  background: #dedede;
  color: #666;
  padding: 3px 18px;
  text-decoration: none;
}

.cap-contact-form-section {
  background: #e9e9e9;
  padding: 50px 20px 72px;
}

.cap-contact-inner {
  max-width: 980px;
  margin: 0 auto;
}

.cap-notice {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.cap-notice p + p {
  margin-top: 8px;
}

.cap-form {
  display: grid;
  gap: 22px;
}

.cap-form-row {
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 126px;
  align-items: center;
  background: #fff;
  padding: 34px 42px;
}

.cap-form-label {
  color: #111;
  font-size: 18px;
  font-weight: 900;
}

.cap-form-label em {
  display: block;
  color: #d91010;
  font-size: 15px;
  font-style: normal;
  margin-top: 4px;
}

.cap-field-wrap {
  display: grid;
  gap: 10px;
}

.cap-field-wrap input,
.cap-field-wrap textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 7px;
  background: #f8f8f8;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.12);
  color: #111;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 14px;
}

.cap-field-wrap input {
  height: 52px;
}

.cap-field-wrap small {
  color: #555;
  font-size: 16px;
  font-weight: 800;
}

.cap-radio-row {
  border: 0;
}

.cap-radio-list {
  display: grid;
  gap: 10px;
  color: #333;
  font-size: 16px;
}

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

.cap-submit-wrap {
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 40px;
}

.cap-submit-wrap button {
  width: 230px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(to right, #111924 0%, #c6a56a 100%);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.cap-contact-links {
  background: #cecece;
  padding: 2em 20px;
  text-align: center;
}

.cap-contact-link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cap-contact-primary,
.cap-contact-back {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cap-contact-primary {
  width: 64vw;
  max-width: 280px;
  height: 14vw;
  max-height: 68px;
  background: #111924;
  color: #fff;
  font-size: 19.2px;
}

.cap-contact-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  width: 0.5em;
  height: 0.5em;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translate3d(0, -50%, 0) rotate(45deg);
  transition: all 0.3s ease;
}

.cap-contact-primary:hover {
  background: #2a3442;
}

.cap-contact-primary:hover::after {
  right: 3%;
}

.cap-contact-back {
  width: calc(64vw - 8px);
  max-width: 272px;
  height: calc(14vw - 8px);
  max-height: 60px;
  margin: 1.5em auto 0;
  border: 3px solid #111924;
  background: #fff;
  color: #111924;
  font-size: 19.2px;
  padding-top: 0.4em;
}

.cap-contact-back::before {
  content: "";
  position: absolute;
  top: 0.8em;
  width: 0.5em;
  height: 0.5em;
  border-top: 3px solid #111924;
  border-right: 3px solid #111924;
  transform: translate3d(0, -50%, 0) rotate(-45deg);
  transition: all 0.3s ease;
}

.cap-contact-back:hover {
  background: #e3d7bf;
}

.cap-contact-back:hover::before {
  top: 0.5em;
}

.cap-mobile-showcase {
  display: none;
}

@keyframes capAppear {
  15% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes capSlide {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1600px;
  }
}

@media (max-width: 900px) {
  .cap-header {
    min-height: 58px;
    height: 58px;
  }

  .cap-brand img {
    max-height: 30px;
  }

  .cap-brand span {
    font-size: 12px;
  }

  .cap-nav {
    position: absolute;
    top: 58px;
    left: 0;
    display: none;
    width: 100%;
    height: auto;
    flex-direction: column;
    background: #0d131b;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    font-size: 32px;
    padding: 10px 0 20px;
  }

  .cap-menu {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 44px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    margin-right: 8px;
  }

  .cap-menu::before {
    content: "≡";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #f2f3f4;
    font-size: 34px;
    line-height: 44px;
  }

  .cap-header:hover .cap-nav,
  .cap-header:focus-within .cap-nav {
    display: flex;
  }

  .cap-nav a {
    width: 100%;
    min-width: 0;
    padding: 5px 0;
  }

  .cap-nav-dropdown,
  .cap-language-wrap {
    width: 100%;
    min-width: 0;
    height: auto;
  }

  .cap-dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .cap-nav-dropdown:hover .cap-dropdown-menu,
  .cap-nav-dropdown:focus-within .cap-dropdown-menu {
    transform: none;
  }

  .cap-hero {
    height: 60vh;
    min-height: 360px;
  }

  .cap-about-copy {
    padding: 0 22px;
    font-size: 14px;
    line-height: 1.9;
  }

  .cap-ip-strip {
    display: none;
  }

  .cap-mobile-showcase {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 240px;
    background-size: 1600px 240px;
    animation: capSlide 40s linear infinite;
  }

  .cap-ip-showcase {
    background-image: url("assets/zhion/ip-showcase.jpg");
  }

  .cap-work-card {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cap-recruit {
    background-image: none;
  }

  .cap-recruit-wrap {
    width: 100%;
    padding-bottom: 22px;
  }

  .cap-recruit-text {
    position: relative;
    width: 90%;
    margin: 0 auto 16px;
  }

  .cap-recruit-picture {
    display: none;
  }

  .cap-rc-showcase {
    background-image: url("assets/zhion/rc-showcase.jpg");
  }

  .cap-game-list-link {
    margin-top: 0;
  }

  .cap-recruit-text dl div,
  .cap-form-row {
    grid-template-columns: 1fr;
  }

  .cap-form-row {
    gap: 18px;
    padding: 24px 20px;
  }

  .cap-breadcrumb {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .cap-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cap-contact-link-row {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .cap-nav {
    font-size: 12px;
  }

  .cap-language {
    font-size: 11px;
    padding: 3px 8px;
  }

  .cap-hero {
    min-height: 520px;
  }

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