@charset "UTF-8";
:root {
  /* Font stacks */
  --font-sans: 'DM Sans', 'Noto Sans TC','Noto Sans JP', system-ui, sans-serif;
  /* Nav height */
  --nav-height: 64px;
  /* Primary accent (steel blue) */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  /* Neutrals — slate-toned (cool gray) */
  --white: #ffffff;
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}
*::-webkit-scrollbar,
*::before::-webkit-scrollbar,
*::after::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track,
*::before::-webkit-scrollbar-track,
*::after::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb,
*::before::-webkit-scrollbar-thumb,
*::after::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover,
*::before::-webkit-scrollbar-thumb:hover,
*::after::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

::-moz-selection {
  background: #192d63;
  color: white;
}

::selection {
  background: #192d63;
  color: white;
}

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

a {
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

html {
  font-size: 16px;
}

select {
  border: none;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  height: 40px;
  padding: 8px 12px;
  font-size: 18px;
  width: 240px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../admin/images/icons/arrow_down_gray.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px auto;
  padding-right: 36px;
  cursor: pointer;
}
select:focus {
  outline: 2px solid #393580;
}

.text-blue-1 {
  color: #393580;
}

body {
  font-family: var(--font-sans);
  background: var(--neutral-50);
  color: var(--neutral-900);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  --global-y-padding: 2rem 0 4rem;
}

.imgs-box {
  width: 100%;
  max-width: 100%;
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}
.imgs-box .img {
  flex: 1;
}
.imgs-box .img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .imgs-box {
    flex-direction: column;
  }
}

.index-page {
  padding: 0px;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  position: relative;
}
.index-page .marquee {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  overflow: hidden;
  --quantity: 12;
  --width: 21px;
  --height: 80px;
  --time: 24s;
  width: var(--width);
}
.index-page .marquee .marquee-track {
  min-height: calc(var(--height) * var(--quantity));
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 24px;
}
.index-page .marquee .marquee-track .marquee-item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  top: 100%;
  animation: scroll-y var(--time) linear infinite;
  transition: filter 0.5s;
  animation-delay: calc(var(--time) / var(--quantity) * (var(--position) - 1) - var(--time)) !important;
  cursor: pointer;
  overflow: visible;
}
@keyframes scroll-y {
  from {
    top: 100%;
  }
  to {
    top: calc(var(--height) * -1);
  }
}
.index-page .bounce-box {
  position: absolute;
  left: 240px;
  bottom: 80px;
  transform: translate(0px, 0px);
  transition: all;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 2;
}
.index-page .bounce-box.head img {
  width: clamp(60px, 6.25vw, 120px);
  transition: transform 0.5s ease-in-out;
  transform: scaleX(1);
}
.index-page .bounce-box.head.reverse img {
  transform: scaleX(-1);
}
.index-page .bounce-box:nth-child(2) {
  left: auto;
  bottom: auto;
  top: 60px;
  right: 120px;
}
.index-page .bounce-box:nth-child(3) {
  left: auto;
  bottom: auto;
  top: 40px;
  right: 300px;
}
.index-page .bounce-box .kaiwa-box {
  padding: 4px 8px;
  background-color: white;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  word-break: keep-all;
  white-space: nowrap;
  min-width: 60px;
}
.index-page .bounce-box .kaiwa-box::before {
  position: absolute;
  content: "";
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.hero {
  padding: 12px 0;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(248, 250, 252, 0.97) 0%, rgba(248, 250, 252, 0.9) 28%, rgba(248, 250, 252, 0.55) 50%, rgba(248, 250, 252, 0.08) 72%, transparent 88%);
}
@media (max-width: 768px) {
  .hero__bg::after {
    background: linear-gradient(to right, rgba(248, 250, 252, 0.9) 0%, rgba(248, 250, 252, 0.7) 55%, rgba(248, 250, 252, 0.4) 100%);
  }
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 65% center;
     object-position: 65% center;
  transform: scale(1);
}
.hero__body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero__content {
  max-width: 100%;
  min-height: 680px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 1.25vw, 24px);
}
@media (max-width: 990px) {
  .hero__content {
    max-width: 100%;
  }
}
.hero__cards {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  --card-gap: clamp(32px, 1.875vw, 36px);
  gap: var(--card-gap);
}
.hero__deco {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.hero__deco .line {
  display: inline-block;
  width: 12px;
  height: 6px;
  border-radius: 4px;
  background-color: rgb(15, 15, 116);
  transition: all 0.4s ease-in-out;
}
.hero__deco .line:nth-child(2n) {
  margin-bottom: 12px;
}
.hero__card {
  background-color: rgb(255, 255, 255);
  border-radius: 16px;
  --card-padd: 24px;
  padding: var(--card-padd) var(--card-padd) var(--card-padd) calc(var(--card-padd) * 1.5);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
.hero__card .triangle {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
  display: none;
}
.hero__card img.card-img {
  width: clamp(88px, 12.5vw, 240px);
  filter: grayscale(1);
  transition: all 0.5s ease-in-out;
}
.hero__card .hover-text {
  font-size: clamp(16px, 1.04vw, 20px);
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  color: #333;
  letter-spacing: 2px;
  transition: all 1s ease-in-out;
  width: 100%;
  text-align: start;
  width: -moz-fit-content;
  width: fit-content;
  overflow: visible;
}
.hero__card .hover-text__original {
  transform: translateY(0);
  border-bottom: 1px dashed #686868;
  opacity: 1;
}
.hero__card .hover-text__clone {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 12px);
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  border-bottom: 1px dashed #1d1f3a;
}
.hero__card:hover {
  background: linear-gradient(135deg, #a3bdcd 50%, white 100%);
}
.hero__card:hover img.card-img {
  filter: grayscale(0);
  transform: scale(1.05);
}
.hero__card:hover .hover-text__original {
  opacity: 0;
}
.hero__card:hover .hover-text__clone {
  position: absolute;
  transform: translate(-50%, 0);
  opacity: 1;
  color: #192d63;
  font-weight: 500;
}
.hero__card:nth-child(2) {
  align-items: flex-start;
  transform: translateY(24px);
}
.hero__card:nth-child(3) {
  align-items: flex-end;
}
.hero__card:nth-child(3) .hover-text__clone {
  position: absolute;
  left: auto;
  right: 0;
  transform: translate(0px, 12px);
  opacity: 0;
  border-bottom: 1px dashed #1d1f3a;
}
.hero__card:nth-child(3):hover .hover-text__clone {
  position: absolute;
  transform: translate(0, 0);
  opacity: 1;
  color: #192d63;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero__card {
    flex: 1;
    min-width: calc(50% - var(--card-gap) / 2);
    max-width: calc(50% - var(--card-gap) / 2);
  }
  .hero__card:nth-child(2) {
    transform: translateY(50%);
  }
}
@media (max-width: 480px) {
  .hero__card {
    min-width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: flex-end !important;
  }
  .hero__card:nth-child(2) {
    transform: translateY(0px);
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.425rem;
  color: var(--neutral-600);
  font-size: 0.9375rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  background-color: white;
  padding: 4px 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero__badge img {
  width: 24px;
  margin-bottom: 2px;
}
.hero__title {
  font-size: clamp(60px, 6.25vw, 80px);
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1;
  letter-spacing: 0.025em;
  text-shadow: 2px 2px white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
}
.hero__title .logo-m {
  width: clamp(60px, 6.25vw, 80px);
}
.hero__slogan {
  font-size: clamp(24px, 1.67vw, 32px);
  color: var(--neutral-900);
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 2px 2px white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__slogan-box {
  display: flex;
  align-items: flex-start;
}
.hero__frame {
  background-color: white;
  padding: 0px 16px;
}
.hero__deco-line {
  display: inline-block;
  width: var(--line-width);
  height: 12px;
  background-color: white;
}
.hero__sub {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.75;
  max-width: 36ch;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.25rem;
}
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #192d63;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero__cta-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__cta-primary:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 45, 99, 0.38);
}
.hero__cta-primary:hover svg {
  transform: translateX(4px);
}
.hero__cta-primary:hover .hover-text__original {
  transform: translateY(-160%) skewY(12deg);
}
.hero__cta-primary:hover .hover-text__clone {
  transform: translateY(0) skewY(0deg);
}
.hero__cta-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}
.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: var(--neutral-700);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1.5px solid var(--neutral-300);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.6);
}
.hero__cta-secondary:hover {
  color: var(--neutral-900);
  border-color: var(--neutral-500);
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 24px rgba(25, 45, 99, 0.38);
}
.hero__cta-secondary:hover .hover-text__original {
  transform: translateY(-160%) skewY(12deg);
}
.hero__cta-secondary:hover .hover-text__clone {
  transform: translateY(0) skewY(0deg);
}

.container {
  width: 100%;
  padding: 0 clamp(20px, 6.25vw, 120px);
}

.main {
  flex: 1;
  min-height: calc(100vh - var(--nav-height));
  height: calc(100vh - var(--nav-height));
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable both-edges;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
.main.index {
  background-color: var(--neutral-50);
  scrollbar-gutter: stable;
}

.lucide {
  display: inline-block;
  vertical-align: middle;
}

.hover-text {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  vertical-align: middle;
}
.hover-text__original {
  transform: translateY(0) skewY(0deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-text__clone {
  position: absolute;
  inset: 0;
  transform: translateY(160%) skewY(12deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav {
  width: 100vw;
  width: 100dvw;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  background: rgba(248, 250, 252, 0.92);
  background-image: url("../images/bg/suisai05＿opa_2.png");
  background-size: cover;
  background-position: top center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.nav__logo {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--neutral-900);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.2s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.nav__logo img {
  width: 160px;
}
.nav__desktop {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
@media (max-width: 990px) {
  .nav__desktop {
    display: none;
  }
}
.nav__item {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.nav__item--dropdown:hover .nav__dropdown-outer {
  pointer-events: all;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  color: var(--neutral-500);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  border: 2px dotted transparent;
  font-weight: 300;
}
.nav__link .menu-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  background-image: url("../images/icons/menu_close.png");
  background-size: contain;
  background-position: center;
}
.nav__link:hover {
  color: var(--neutral-900);
  background: var(--neutral-100);
}
.nav__link.is-active {
  position: relative;
}
.nav__link.is-active::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 4px;
  background: linear-gradient(to left, transparent, rgba(29, 29, 61, 0.5));
  top: 80%;
  left: 0;
  right: 0;
  border-radius: 8px;
}
.nav__link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__item--dropdown:hover .nav__link {
  color: var(--neutral-900);
  background: var(--neutral-100);
}
.nav__item--dropdown:hover .menu-icon {
  background-image: url("../images/icons/menu_open.png");
  background-size: contain;
  background-position: center;
}
.nav__dropdown-outer {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  pointer-events: none;
}
.nav__dropdown {
  position: relative;
  min-width: -moz-max-content;
  min-width: max-content;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  padding: 0.375rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 14px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid var(--neutral-200);
}
.nav__dropdown::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(255, 255, 255, 0.98);
}
.nav__dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--neutral-600);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.nav__dropdown-link:hover {
  background: var(--neutral-50);
  color: var(--neutral-900);
}
.nav__hamburger {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--neutral-600);
  align-items: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
@media (max-width: 990px) {
  .nav__hamburger {
    display: flex;
  }
}
.nav__hamburger:hover {
  background: var(--neutral-100);
  color: var(--neutral-900);
}
.nav__hamburger svg {
  width: 22px;
  height: 22px;
}
.nav__hamburger .icon-close {
  display: none;
}
.nav__hamburger.is-open {
  background: var(--neutral-100);
}
.nav__hamburger.is-open .icon-menu {
  display: none;
}
.nav__hamburger.is-open .icon-close {
  display: block;
}
.nav__mobile {
  display: none;
  border-top: 1px solid var(--neutral-200);
  padding: 0.5rem 0 0.75rem;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.nav__mobile.is-open {
  display: block;
}
.nav__mobile-link {
  display: block;
  padding: 0.625rem 0.75rem;
  color: var(--neutral-600);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav__mobile-link:hover {
  background: var(--neutral-100);
  color: var(--neutral-900);
}
.nav__mobile-link.is-active {
  color: var(--primary);
}
.nav__mobile-sub {
  padding-left: 1rem;
  margin-bottom: 0.25rem;
}
.nav__mobile-sub-link {
  display: block;
  padding: 0.4375rem 0.75rem;
  font-size: 0.875rem;
  color: var(--neutral-500);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav__mobile-sub-link:hover {
  background: var(--neutral-100);
  color: var(--neutral-900);
}
.nav__mobile-lang {
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
  margin-top: 0.5rem;
  padding: 0 0.75rem;
  border-top: 1px solid var(--neutral-100);
}
.nav__mobile-lang-btn {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-500);
  background: none;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.nav__mobile-lang-btn:hover {
  color: var(--neutral-900);
  background: var(--neutral-100);
}

.footer {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--neutral-200);
  margin-top: auto;
  background-image: url("../images/bg/suisai05＿opa.png");
  background-size: cover;
  background-position: top center;
}
.footer::before {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -1.5rem;
  width: 220px;
  height: 220px;
  background: url("../images/decoration/leaf.png") no-repeat center/contain;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}
.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem clamp(20px, 6.25vw, 120px) 1.75rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.footer__logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.footer__logo:hover {
  color: var(--primary);
}
.footer__tagline {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.5;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.footer__link {
  padding: 0.375rem 0.625rem;
  font-size: 0.875rem;
  color: var(--neutral-500);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
@media (max-width: 768px) {
  .footer__link {
    padding: 0.375rem 0px;
    margin-right: 0.625rem;
  }
}
.footer__link:hover {
  color: var(--neutral-900);
  background: var(--neutral-100);
}
.footer__bottom {
  position: relative;
  z-index: 1;
  padding: 1rem clamp(20px, 6.25vw, 120px);
  width: 100%;
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
@media (max-width: 768px) {
  .footer__bottom {
    border-top: none;
  }
}
.footer__copy {
  font-size: 0.8125rem;
  color: var(--neutral-400);
  z-index: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.pagination__btns-wrapper {
  padding: 8px 24px;
  background-color: white;
  border-radius: 999px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.pagination__btn {
  min-height: 0;
  padding: 12px;
  width: 32px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: var(--white);
  color: var(--neutral-700);
  font-size: clamp(16px, 1.04vw, 20px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.pagination__btn:not(.is-active):not(.is-disabled):not(.pagination__btn--nav):hover {
  background: var(--neutral-100);
  color: var(--neutral-900);
}
.pagination__btn.is-active {
  background-color: rgb(29, 50, 107);
  color: var(--white);
  pointer-events: none;
}
.pagination__btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.pagination__btn--nav {
  width: 48px;
  height: 48px;
  padding: 0.5rem 0.625rem;
  background: white;
  border: none;
  color: var(--neutral-400);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.pagination__btn--nav:not(.is-disabled):hover {
  color: var(--neutral-800);
}
.pagination__btn--nav svg {
  display: block;
  width: 24px;
  height: 24px;
}

.portfolio-page {
  padding: 2rem 0 4rem;
  position: relative;
  isolation: isolate;
}

.portfolio {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .portfolio {
    flex-direction: column;
  }
}
.portfolio__sidebar {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .portfolio__sidebar {
    width: 100%;
  }
}
.portfolio__main {
  flex: 1;
  min-width: 0;
}
.portfolio__header {
  margin-bottom: 2rem;
}
.portfolio__title-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.375rem;
  flex-wrap: wrap;
}
.portfolio__title {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--neutral-900);
  line-height: 1.2;
}
.portfolio__filter-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--neutral-500);
  background: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  padding: 0.2rem 0.625rem;
  border-radius: 99px;
  line-height: 1.5;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  margin-bottom: 0.2rem;
}
.portfolio__filter-badge.is-filtered {
  color: var(--primary);
  background: var(--primary-light);
  border-color: transparent;
}
.portfolio__desc {
  font-size: 0.9375rem;
  color: var(--neutral-500);
  line-height: 1.7;
  width: 100%;
  margin: 0.375rem 0 0.625rem;
}
.portfolio__count {
  color: var(--neutral-600);
  font-size: 0.9375rem;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 1380px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
}

.sidebar-card {
  position: sticky;
  top: 80px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  padding: 1rem;
}
.sidebar-card__title {
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
@media (max-width: 1200px) {
  .sidebar-card__title {
    margin-bottom: 0px;
  }
}
@media (max-width: 1200px) {
  .sidebar-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) and (max-width: 1200px) {
  .sidebar-card nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
  }
}

.page-deco {
  position: absolute;
  bottom: 0;
  left: -3rem;
  width: 680px;
  opacity: 0.06;
  transform: rotate(-18deg);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: -1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  color: var(--neutral-700);
  font-size: 0.9375rem;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.sidebar-link svg,
.sidebar-link img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.15s;
}
.sidebar-link:hover {
  background: var(--neutral-50);
  color: var(--neutral-900);
}
.sidebar-link:hover svg {
  opacity: 0.8;
}
.sidebar-link.is-active {
  background: var(--primary-light);
  color: var(--primary);
}
.sidebar-link.is-active svg,
.sidebar-link.is-active img {
  opacity: 1;
}
.sidebar-link.is-active .sidebar-link__count {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
}
.sidebar-link__count {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--neutral-500);
  background: var(--neutral-100);
  padding: 0.1rem 0.45rem;
  border-radius: 99px;
  line-height: 1.6;
  transition: background 0.15s, color 0.15s;
}
@media (max-width: 1200px) {
  .sidebar-link {
    justify-content: flex-start;
    flex: 1;
    min-width: 91px;
  }
  .sidebar-link__count {
    display: none;
  }
}
@media (max-width: 990px) {
  .sidebar-link {
    min-width: calc(33.33% - 8px);
  }
}
@media (max-width: 768px) {
  .sidebar-link {
    min-width: calc(50% - 6px);
  }
}

.sidebar-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sidebar-profile__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.sidebar-profile__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar-profile__dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--white);
}
.sidebar-profile__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-profile__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--neutral-900);
  line-height: 1.3;
}
.sidebar-profile__role {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .sidebar-profile {
    margin-bottom: 0;
  }
  .sidebar-profile__info {
    display: none;
  }
  .sidebar-profile__avatar {
    width: 36px;
    height: 36px;
  }
  .sidebar-profile__dot {
    width: 8px;
    height: 8px;
  }
}

.sidebar-divider {
  border: none;
  border-top: 1px solid var(--neutral-200);
  margin: 0 0 1rem;
}
@media (max-width: 1200px) {
  .sidebar-divider {
    border-top: none;
    border-left: 1px solid var(--neutral-200);
    width: 1px;
    height: 24px;
    margin: 0;
    align-self: center;
  }
}

.card {
  background-color: rgb(53, 53, 53);
  border-radius: 8px;
}
.card.is-hidden {
  display: none;
}
.card__inner {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  transform-origin: left bottom;
}
.card:hover .card__inner {
  box-shadow: 0 0px 25px rgba(0, 0, 0, 0.5);
  transform: rotate(2deg) translate(4px, -8px);
}
.card:hover .card__image img {
  transform: scale(1.05);
}
.card:hover .card__overlay {
  background: rgba(0, 0, 0, 0.08);
}
.card:hover .card__title a {
  color: var(--primary);
}
.card__image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--neutral-100);
}
.card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}
.card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__label {
  position: absolute;
  right: 8px;
  top: 8px;
  border-radius: 4px;
  background: white;
  z-index: 2;
  padding: 2px 12px;
  font-size: 14px;
}
.card__content {
  flex: 1;
}
.card__title {
  font-weight: 600;
  margin-bottom: 0.375rem;
  line-height: 1.4;
}
.card__title a {
  color: var(--neutral-900);
  transition: color 0.2s;
}
.card__date {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin-bottom: 0.625rem;
}
.card__team {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--neutral-100);
  flex-wrap: wrap;
  gap: 4px 0px;
}
.card__member {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.15s;
  min-width: 33.33%;
}
.card__member:hover {
  opacity: 0.7;
}
.card__member-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.card__member-role {
  font-size: 0.6875rem;
  color: var(--neutral-400);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.card__member-name {
  font-size: 0.8125rem;
  color: var(--neutral-700);
  font-weight: 500;
  line-height: 1.3;
}
.card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--neutral-200);
}
.card__desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}
.card__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.875rem;
  margin-top: 0.875rem;
  border-top: 1px solid var(--neutral-100);
}
.card__view-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--primary);
  transition: color 0.2s;
}
.card__view-link:hover {
  color: var(--primary-hover);
}
.card__view-link svg {
  width: 14px;
  height: 14px;
}
.card__ext-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--neutral-500);
  transition: color 0.2s;
  margin-left: auto;
}
.card__ext-link:hover {
  color: var(--neutral-800);
}
.card__ext-link svg {
  width: 14px;
  height: 14px;
}

.detail-page {
  padding: 2rem 0 4rem;
}

.detail {
  max-width: 896px;
  margin: 0 auto;
}
.detail__dates {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem 4px;
  font-size: 0.875rem;
  color: var(--neutral-600);
}
.detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.detail__back:hover {
  color: var(--neutral-900);
}
.detail__back svg {
  width: 16px;
  height: 16px;
}
.detail__hero {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.detail__hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.detail__title .cat-label {
  color: #333;
  background-color: white;
  padding: 4px 16px;
  font-size: clamp(16px, 0.94vw, 18px);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 999px;
}
@media (max-width: 768px) {
  .detail__title {
    font-size: 1.75rem;
  }
}
.detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--neutral-600);
}
.detail__meta-item svg {
  width: 16px;
  height: 16px;
}
.detail__meta-item--link {
  color: var(--primary);
  transition: color 0.2s;
}
.detail__meta-item--link:hover {
  color: var(--primary-hover);
}
.detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.detail__tag {
  padding: 0.25rem 0.75rem;
  background: var(--neutral-100);
  color: var(--neutral-700);
  border-radius: 9999px;
  font-size: 0.875rem;
}
.detail__section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}
.detail__desc {
  color: var(--neutral-700);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.detail__desc h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--neutral-900);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  white-space: nowrap;
}
.detail__desc h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 1em;
  background: #192d63;
  border-radius: 2px;
  flex-shrink: 0;
}
.detail__desc h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--neutral-200);
}
.detail__desc p {
  font-size: 1.0625rem;
  color: var(--neutral-500);
  line-height: 2;
  width: 100%;
  margin-bottom: 48px;
}
.detail__desc p a {
  color: rgb(3, 3, 141);
}
.detail__desc ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.detail__desc li {
  margin-bottom: 0.375rem;
}
.detail__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .detail__gallery {
    grid-template-columns: 1fr;
  }
}
.detail__gallery-item {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
}
.detail__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.detail__gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s;
}
.detail__gallery-item:hover img {
  transform: scale(1.04);
}
.detail__gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.18);
}
.detail__team {
  display: flex;
  align-items: center;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.detail__member {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  transition: opacity 0.15s;
}
.detail__member:hover {
  opacity: 0.7;
}
.detail__member + .detail__member {
  padding-left: 1.25rem;
  margin-left: 1.25rem;
  border-left: 1px solid var(--neutral-200);
}
.detail__member-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--neutral-200);
}
.detail__member-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.detail__member-role {
  font-size: 0.75rem;
  color: var(--neutral-400);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.detail__member-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-800);
  line-height: 1.3;
}

.about-page {
  padding: 3rem 0 5rem;
}

@keyframes about-dot-pulse {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}
.about {
  max-width: 900px;
  margin: 0 auto;
}
.about__header {
  margin-bottom: 4rem;
  padding: 2.25rem 0;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 768px) {
  .about__header {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 0px;
  }
}
.about__header-avatar {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.about__header-avatar .center-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
}
.about__header-avatar .center-head img.head {
  --offset-shake: 5px;
  width: clamp(80px, 6.25vw, 120px);
}
.about__header-avatar .center-head img.head.shake {
  animation: shake infinite var(--offset-time) linear;
}
.about__header-avatar .center-head .name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.about__header-avatar .center-head .name img {
  width: 20px;
}
@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  14% {
    transform: translate(var(--offset-shake), calc(var(--offset-shake) * -1));
  }
  28% {
    transform: translate(calc(var(--offset-shake) * -1), var(--offset-shake));
  }
  42% {
    transform: translate(var(--offset-shake), var(--offset-shake));
  }
  57% {
    transform: translate(calc(var(--offset-shake) * -1), calc(var(--offset-shake) * -1));
  }
  71% {
    transform: translate(0, var(--offset-shake));
  }
  85% {
    transform: translate(var(--offset-shake), 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}
@keyframes reversePlay {
  from {
    left: calc(var(--width) * -1);
  }
  to {
    left: 100%;
  }
}
.about__header-avatar .slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
  --width: clamp(40px, 3.125vw, 60px);
  --height: clamp(40px, 3.125vw, 60px);
}
.about__header-avatar .slider:hover .item {
  animation-play-state: paused !important;
  filter: grayscale(1);
}
.about__header-avatar .slider .list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}
.about__header-avatar .slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun var(--time) linear infinite;
  transition: filter 0.5s;
  animation-delay: calc(var(--time) / var(--quantity) * (var(--position) - 1) - var(--time)) !important;
  cursor: pointer;
  overflow: visible;
}
.about__header-avatar .slider .list .item.selected::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  background-color: var(--Main-Color);
  bottom: 30px;
  left: 0px;
  display: block;
}
.about__header-avatar .slider .list .item img.active {
  animation-name: big;
  animation-duration: 1s;
}
.about__header-avatar .slider .list .item:hover {
  filter: grayscale(0);
}
.about__header-avatar .slider[reverse=true] .list .item {
  animation: reversePlay var(--time) linear infinite;
  overflow: hidden;
}
.about__header-avatar .slider[reverse=true] .list .item:hover {
  filter: grayscale(0);
}
.about__avatar {
  display: block;
  width: 160px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about__header-body {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.about__header-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .about__header-chips {
    justify-content: center;
  }
}
.about__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--neutral-100);
  color: var(--neutral-600);
  border: 1px solid var(--neutral-200);
}
.about__chip svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.about__chip--green {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #bbf7d0;
}
.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-500);
  margin-bottom: 0.875rem;
}
@media (max-width: 768px) {
  .about__badge {
    justify-content: center;
  }
}
.about__badge::before {
  content: "";
  display: block;
  width: 3px;
  height: 1em;
  background: #192d63;
  border-radius: 2px;
  flex-shrink: 0;
}
.about__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--neutral-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .about__title {
    text-align: center;
  }
}
.about__subtitle {
  font-size: 1.0625rem;
  color: var(--neutral-500);
  line-height: 1.7;
  width: 100%;
}
.about__section {
  margin-bottom: 4.5rem;
}
.about__sub-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neutral-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  margin-top: 2rem;
}
.about__sub-heading:first-of-type {
  margin-top: 0;
}
.about__top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .about__top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.about__range {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about__range input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100px;
  height: 4px;
  background: var(--neutral-200);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.about__range input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: var(--neutral-200);
  border-radius: 2px;
}
.about__range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #192d63;
  border: 2.5px solid var(--white);
  box-shadow: 0 0 0 1.5px rgba(25, 45, 99, 0.35);
  cursor: grab;
  margin-top: -6px;
  -webkit-transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s;
}
.about__range input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(25, 45, 99, 0.12), 0 0 0 1.5px rgba(25, 45, 99, 0.35);
  transform: scale(1.15);
}
.about__range input[type=range]:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(0.92);
}
.about__range input[type=range]::-moz-range-track {
  height: 4px;
  background: var(--neutral-200);
  border-radius: 2px;
  border: none;
}
.about__range input[type=range]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #192d63;
  border: 2.5px solid var(--white);
  box-shadow: 0 0 0 1.5px rgba(25, 45, 99, 0.35);
  cursor: grab;
  -moz-transition: box-shadow 0.15s;
  transition: box-shadow 0.15s;
}
.about__range input[type=range]:hover::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(25, 45, 99, 0.12), 0 0 0 1.5px rgba(25, 45, 99, 0.35);
}
.about__range input[type=range]:active::-moz-range-thumb {
  cursor: grabbing;
}
.about__range .btn-range {
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  outline: none;
  border: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  background-color: #eee;
  cursor: pointer;
}
.about__range .btn-range:hover {
  background-color: #dbdbdb;
}
.about__range .btn-range img {
  width: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.about__curr-speed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #192d63;
  background: rgba(25, 45, 99, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--neutral-900);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  white-space: nowrap;
}
.section-heading::before {
  content: "";
  display: block;
  width: 4px;
  height: 1em;
  background: #192d63;
  border-radius: 2px;
  flex-shrink: 0;
}
.section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--neutral-200);
}

@keyframes timeline-ping {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70%, 100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: var(--neutral-200);
}
.timeline__item {
  position: relative;
  margin-bottom: 1.75rem;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__dot {
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #192d63;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--neutral-200);
}
.timeline__card {
  position: relative;
  border: 1px solid var(--neutral-100);
  border-radius: 10px;
  padding: 1.375rem 1.5rem;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  transform: translate(0px, 0px);
}
.timeline__card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  transform: translate(-8px, -8px);
}
.timeline__card .deco-img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 40%;
  opacity: 0.16;
  z-index: -1;
}
.timeline__card .deco-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
.timeline__card .deco-img.third {
  width: 36%;
}
.timeline__card .deco-img.third img {
  -o-object-position: top left;
     object-position: top left;
}
.timeline__card.text-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
.timeline__card.text-end .deco-img {
  width: 48%;
  left: 0;
  right: auto;
}
.timeline__card.text-end .deco-img img {
  -o-object-position: right center;
     object-position: right center;
}
.timeline__item.is-current .timeline__dot {
  background: #192d63;
}
.timeline__item.is-current .timeline__dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(25, 45, 99, 0.32);
  animation: timeline-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.timeline__item.is-current .timeline__card {
  box-shadow: 0px 0px 4px #19347e;
}
.timeline__item.is-current .timeline__card:hover {
  box-shadow: 0 0 20px rgba(25, 25, 126, 0.5);
  transform: translate(-8px, -8px);
}
.timeline__year {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #192d63;
  letter-spacing: 0.02em;
  margin-bottom: 0.375rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.timeline__experience {
  font-weight: 400;
  color: #333;
  padding: 2px 12px;
  border-radius: 999px;
  border: 1px dashed #333;
}
.timeline__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.2rem;
}
.timeline__company {
  font-size: 0.875rem;
  color: var(--neutral-400);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.timeline__employee {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
}
.timeline__employee img {
  width: 18px;
}
.timeline__desc {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 990px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

.skill-group__hd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.875rem;
  border-bottom: 1px solid var(--neutral-100);
}
.skill-group__hd svg {
  width: 15px;
  height: 15px;
  color: #192d63;
  flex-shrink: 0;
}
.skill-group__hd h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
  letter-spacing: 0.02em;
}

.skill-group--primary {
  grid-column: 1/-1;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}
.skill-group--primary .skill-group__hd {
  border-bottom-color: var(--neutral-200);
  margin-bottom: 1.25rem;
}
.skill-group--primary .skill-group__hd h3 {
  font-size: 0.9375rem;
  color: var(--neutral-900);
}
.skill-group--primary .skill-group__hd svg {
  width: 16px;
  height: 16px;
}

.skill-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
}
@media (max-width: 768px) {
  .skill-items {
    grid-template-columns: 1fr;
  }
}

.skill-item {
  padding: 0.625rem 0.75rem;
  margin: -0.625rem -0.75rem;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.skill-item:hover {
  background: var(--neutral-100);
}
.skill-item:hover .skill-item__icon {
  border-color: #192d63;
  transform: translateY(-1px);
}
.skill-item:hover .skill-item__name {
  color: #192d63;
}
.skill-item__top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.4rem;
}
.skill-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 7px;
  background: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.skill-item__icon img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
.skill-item__icon svg {
  width: 13px;
  height: 13px;
  color: var(--neutral-400);
}
.skill-item__icon--fallback {
  background: var(--neutral-50);
}
.skill-item__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-800);
  flex-shrink: 0;
  min-width: 7.25rem;
  transition: color 0.2s ease;
}
.skill-item__meter {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.skill-item__bar {
  flex: 1;
  height: 5px;
  border-radius: 2px;
  background: var(--neutral-200);
  transition: background 0.2s;
}
.skill-item__bar.is-filled {
  background: #192d63;
}
.skill-item__level {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neutral-700);
  justify-content: flex-end;
}
.skill-item__level-en {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--neutral-400);
  letter-spacing: 0.03em;
}
.skill-item__note {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  line-height: 1.65;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.skill-group--tool {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.skill-group--tool .skill-group__hd {
  border-bottom-color: var(--neutral-200);
  margin-bottom: 1rem;
}
.skill-group--tool .skill-group__hd h3 {
  font-size: 0.9375rem;
  color: var(--neutral-900);
}
.skill-group--tool .skill-group__hd svg {
  width: 16px;
  height: 16px;
}

.skill-group__level {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem;
  border-top: 1px solid var(--neutral-200);
  padding-top: 0.75rem;
  margin-bottom: 0.4rem;
}

.skill-tag {
  display: inline-block;
  padding: 0.3125rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--neutral-600);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.skill-tag:hover {
  background: var(--neutral-100);
  color: var(--neutral-800);
  border-color: var(--neutral-300);
}

.lang-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .lang-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .lang-list {
    grid-template-columns: 1fr;
  }
}

.lang-item {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 120px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.lang-item::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  width: 72px;
  height: 72px;
  background-image: var(--lang-img, none);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}
.lang-item:hover {
  box-shadow: 0 6px 24px rgba(25, 45, 99, 0.1);
  border-color: rgba(25, 45, 99, 0.25);
}
.lang-item__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.lang-item__middle {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.lang-item__cert {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--neutral-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lang-item__score {
  font-size: 1.875rem;
  font-weight: 700;
  color: #192d63;
  line-height: 1;
  letter-spacing: -0.03em;
}
.lang-item__score small {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--neutral-400);
  letter-spacing: 0;
  margin-left: 0.15rem;
}
.lang-item__sep {
  display: none;
}
.lang-item__level {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: #192d63;
  background: rgba(25, 45, 99, 0.08);
  padding: 0.2rem 0.625rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.lang-item__level::before {
  content: none;
}

.abilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media (max-width: 480px) {
  .abilities-grid {
    grid-template-columns: 1fr;
  }
}

.ability-card {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
}
.ability-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.2rem;
}
.ability-card__desc {
  font-size: 0.8125rem;
  color: var(--neutral-400);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.contact-form__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-800);
}
.contact-form__required {
  color: #ef4444;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--white);
  color: var(--neutral-900);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: var(--neutral-400);
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: var(--neutral-400);
}
.contact-form__input:focus, .contact-form__textarea:focus {
  border-color: #192d63;
  box-shadow: 0 0 0 3px rgba(25, 45, 99, 0.1);
}
.contact-form__input.is-error, .contact-form__textarea.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__error {
  font-size: 0.8125rem;
  color: #ef4444;
  display: none;
}
.contact-form__error.is-visible {
  display: block;
}
.contact-form__submit {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.75rem 2rem;
  background: #192d63;
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.contact-form__submit svg {
  width: 16px;
  height: 16px;
}
.contact-form__submit:hover {
  background: #1e3a8a;
  box-shadow: 0 4px 16px rgba(25, 45, 99, 0.35);
  transform: translateY(-1px);
}
.contact-form__submit:active {
  transform: translateY(0);
  box-shadow: none;
}
.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.articles-page {
  padding: 3rem 0 4rem;
  flex: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  flex-shrink: 0;
}

.page-deco--articles {
  position: absolute;
  top: -2rem;
  left: auto;
  right: 0px;
  transform: none;
  width: 320px;
  opacity: 0.07;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: -1;
}

.articles {
  max-width: 1024px;
  margin: 0 auto;
}
.articles__header {
  margin-bottom: 2rem;
  text-align: center;
}
.articles__header h1 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .articles__header h1 {
    font-size: 1.75rem;
  }
}
.articles__header p {
  color: var(--neutral-600);
}
.articles__tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.articles__tabs-wrap::-webkit-scrollbar {
  display: none;
}
.articles__search {
  position: relative;
  flex: 1;
}
.articles__search svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--neutral-400);
  pointer-events: none;
}
.articles__search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  font-size: 0.9375rem;
  outline: none;
  background: var(--white);
  color: var(--neutral-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.articles__search input::-moz-placeholder {
  color: var(--neutral-400);
}
.articles__search input::placeholder {
  color: var(--neutral-400);
}
.articles__search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.articles__search button#clear {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}
.articles__search button#clear img {
  width: 24px;
}
.articles__search button#clear.hidden {
  display: none;
}
.articles__search-block {
  width: 100%;
  display: flex;
  margin-bottom: 8px;
}
.articles__search-block #articleSearch {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.articles__search-block #articleSearchBtn {
  border: none;
  outline: none;
  padding: 8px 24px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.articles__search-keywords.hidden {
  display: none;
}
.articles__loading-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.articles__loading-box img {
  width: 60px;
}
.articles__loading-box.hidden {
  display: none;
}
.articles__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.articles__list.hidden {
  display: none;
}
.articles__empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--neutral-600);
}
.articles__empty.hidden {
  display: none;
}

.chip-tabs {
  position: relative;
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 12px;
  flex-wrap: wrap;
}
.chip-tabs__indicator {
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  background: var(--primary);
  border-radius: 8px;
  pointer-events: none;
  z-index: 0;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.chip-tabs__tab {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1.125rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--neutral-500);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}
.chip-tabs__tab.is-active {
  color: var(--white);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.chip-tabs__tab:not(.is-active):hover {
  color: var(--neutral-900);
}

.article-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.article-card.is-hidden {
  display: none;
}
.article-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.article-card:hover .article-card__image img {
  transform: scale(1.05);
}
.article-card:hover .article-card__title {
  color: var(--primary);
}
.article-card__inner {
  display: flex;
}
@media (max-width: 768px) {
  .article-card__inner {
    flex-direction: column;
  }
}
.article-card__image {
  width: 33.333%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .article-card__image {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.article-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.article-card__body {
  flex: 1;
  padding: 1.5rem;
}
.article-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.article-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--neutral-600);
}
.article-card__meta-item svg {
  width: 16px;
  height: 16px;
}
.article-card__category {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 4px;
  font-size: 0.75rem;
}
.article-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.2s;
}
@media (max-width: 768px) {
  .article-card__title {
    font-size: 1.0625rem;
  }
}
.article-card__excerpt {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-progress {
  position: fixed;
  top: var(--nav-height, 64px);
  left: 0;
  right: 0;
  height: 2px;
  z-index: 99;
  pointer-events: none;
}
.read-progress__bar {
  height: 100%;
  background: var(--primary);
  transform-origin: 0 center;
  transform: scaleX(0);
}

.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 896px) 208px;
  gap: 3rem;
  justify-content: center;
}
@media (max-width: 1380px) {
  .article-detail-layout {
    grid-template-columns: minmax(0, 896px);
  }
  .article-detail-layout .article-sidebar {
    display: none;
  }
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.article-sidebar__profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
}
.article-sidebar__avatar {
  align-self: flex-start;
  width: 80%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.625rem;
}
.article-sidebar__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}
.article-sidebar__about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--neutral-500);
  transition: color 0.2s;
}
.article-sidebar__about-link svg {
  width: 13px;
  height: 13px;
}
.article-sidebar__about-link:hover {
  color: #192d63;
}
.article-sidebar__widget-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--neutral-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.article-sidebar__recent-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.article-sidebar__recent-item {
  display: block;
}
.article-sidebar__recent-item:hover .article-sidebar__recent-title {
  color: #192d63;
}
.article-sidebar__recent-title {
  display: block;
  font-size: 0.8125rem;
  color: var(--neutral-700);
  line-height: 1.4;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s;
}
.article-sidebar__recent-date {
  font-size: 0.6875rem;
  color: var(--neutral-400);
}
.article-sidebar__archive-list, .article-sidebar__category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.article-sidebar__archive-item, .article-sidebar__category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--neutral-500);
  padding: 0.375rem 0.75rem;
  border-left: 2px solid var(--neutral-200);
  transition: color 0.15s, border-color 0.15s;
}
.article-sidebar__archive-item:hover, .article-sidebar__category-item:hover {
  color: var(--neutral-900);
  border-left-color: var(--neutral-400);
}
.article-sidebar__count {
  font-size: 0.6875rem;
  color: var(--neutral-400);
  font-weight: 500;
}

.article-toc {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: -moz-fit-content;
  width: fit-content;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: transform 0.3s ease;
}
@media (max-width: 1380px) {
  .article-toc {
    left: 0;
    width: -moz-fit-content;
    width: fit-content;
    background-color: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.12);
    padding: 0.625rem 22px 0.625rem 0.75rem;
    align-items: flex-start;
    transform: translateX(-100%) translateY(-50%);
    overflow: visible;
  }
  .article-toc.opened {
    transform: translateX(0%) translateY(-50%);
  }
}
.article-toc__btn {
  display: none;
}
@media (max-width: 1380px) {
  .article-toc__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 28px;
    height: 40px;
    background-color: white;
    border: none;
    outline: none;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    padding: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
  }
  .article-toc__btn img {
    width: 20px;
    display: block;
  }
}
@media (max-width: 1380px) {
  .article-toc.opened .article-toc__btn {
    transform: translateX(0%);
    box-shadow: none;
    border-radius: 0;
  }
}
@media (max-width: 1620px) {
  .article-toc--with-sidebar {
    left: 0;
    background-color: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.12);
    padding: 0.625rem 22px 0.625rem 0.75rem;
    align-items: flex-start;
    transform: translateX(-100%) translateY(-50%);
    overflow: visible;
  }
  .article-toc--with-sidebar.opened {
    transform: translateX(0%) translateY(-50%);
  }
}
@media (max-width: 1620px) {
  .article-toc--with-sidebar .article-toc__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 28px;
    height: 40px;
    background-color: white;
    border: none;
    outline: none;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    padding: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
  }
  .article-toc--with-sidebar .article-toc__btn img {
    width: 20px;
    display: block;
  }
}
@media (max-width: 1620px) {
  .article-toc--with-sidebar.opened .article-toc__btn {
    transform: translateX(0%);
    box-shadow: none;
    border-radius: 0;
  }
}
.article-toc__title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--neutral-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
@media (max-width: 1380px) {
  .article-toc__title {
    display: none;
  }
}
.article-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.article-toc__list a {
  display: block;
  font-size: 0.8125rem;
  color: var(--neutral-500);
  padding: 0.375rem 0.75rem;
  border-left: 2px solid var(--neutral-200);
  line-height: 1.45;
  transition: color 0.15s, border-color 0.15s;
}
.article-toc__list a:hover {
  color: var(--neutral-900);
  border-left-color: var(--neutral-400);
}
.article-toc__list a.is-active {
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 500;
}

.article-detail-page {
  padding: 3rem 0 4rem;
}

.article-detail {
  max-width: 896px;
  margin: 0 auto;
}
.article-detail__updated {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.25rem 4px;
  font-size: 0.875rem;
  color: var(--neutral-600);
}
.article-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.article-detail__back:hover {
  color: var(--neutral-900);
}
.article-detail__back svg {
  width: 16px;
  height: 16px;
}
.article-detail__hero {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.article-detail__hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.article-detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--neutral-600);
}
.article-detail__meta-item svg {
  width: 16px;
  height: 16px;
}
.article-detail__category-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
}
.article-detail__share-group {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.article-detail__share-label {
  font-size: 0.8125rem;
  color: var(--neutral-400);
  margin-right: 0.25rem;
}
.article-detail__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--white);
  color: var(--neutral-500);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.article-detail__share-btn:hover {
  background: var(--neutral-50);
  color: var(--neutral-900);
  border: 1px solid var(--neutral-300);
}
.article-detail__share-btn.is-copied {
  background: #dcfce7;
  color: #16a34a;
  border-color: #86efac;
}
.article-detail__share-btn svg,
.article-detail__share-btn img {
  width: 20px;
  height: 20px;
}
.article-detail__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 2rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .article-detail__title {
    font-size: 1.75rem;
  }
}
.article-detail__related {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
}
.article-detail__related h3 {
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}
.article-detail__actions {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-100);
  display: flex;
  justify-content: center;
}
.article-detail__back-to-list {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: 1.5px solid var(--neutral-300);
  color: var(--neutral-700);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.article-detail__back-to-list:hover {
  color: var(--neutral-900);
  border-color: var(--neutral-500);
  background: var(--neutral-50);
}
.article-detail__back-to-list svg {
  width: 16px;
  height: 16px;
}
.article-detail__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 480px) {
  .article-detail__related-grid {
    grid-template-columns: 1fr;
  }
}
.article-detail__related-item {
  display: block;
  padding: 1rem;
  background: var(--neutral-50);
  border-radius: 8px;
  transition: background 0.15s;
}
.article-detail__related-item:hover {
  background: var(--neutral-100);
}
.article-detail__related-item h4 {
  font-weight: 500;
  color: var(--neutral-900);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.article-detail__related-item p {
  font-size: 0.875rem;
  color: var(--neutral-600);
}

.article-content {
  color: var(--neutral-700);
  line-height: 1.8;
}
.article-content h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--neutral-900);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  white-space: nowrap;
}
.article-content h2::before {
  content: "";
  display: block;
  width: 4px;
  height: 1em;
  background: #192d63;
  border-radius: 2px;
  flex-shrink: 0;
}
.article-content h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--neutral-200);
}
.article-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin: 1.5rem 0 0.75rem;
}
.article-content p {
  font-size: 1.0625rem;
  color: var(--neutral-500);
  line-height: 2;
  width: 100%;
  margin-bottom: 48px;
}
.article-content p a {
  color: rgb(3, 3, 141);
}
.article-content ul,
.article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.article-content li {
  margin-bottom: 0.375rem;
}
.article-content strong {
  font-weight: 600;
  color: var(--neutral-900);
}
.article-content code {
  background: var(--neutral-100);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-size: 0.875em;
  font-family: "Courier New", monospace;
}
.article-content pre {
  background: var(--neutral-900);
  color: #e5e5e5;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.article-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}/*# sourceMappingURL=main.css.map */