@charset "UTF-8";

/* ===================================================
   용인특례시 계약정보공개시스템 - Main Stylesheet
   =================================================== */

/* ----- CSS Variables ----- */
:root {
  /* Colors */
  --color-primary: #00B179;
  --color-accent: #FF5C77;
  --color-navy: #1B2D3F;
  --color-navy-light: #2C3F52;
  --color-blue: #006ECF;
  --color-green: #6DB721;
  --color-orange: #FF745C;
  --color-gray-light: #F3F3F3;
  --color-line: #E7E7E7;
  --color-line2: #D8D8D8;
  --color-text: #000000;
  --color-text1: #5B5B5B;
  --color-text2: #999999;
  --color-white: #FFFFFF;

  /* Card BG Colors */
  --color-card-mint: #BCF0EA;
  --color-card-orange: #FFE7C8;
  --color-card-pink: #FFD7DA;
  --color-card-blue: #D5E6FF;
  --color-card-gray: #EDF1F5;

  /* Layout */
  --max-width: 1920px;
  --content-width: 1560px;
  --content-padding: 180px;

  /* Font */
  --font-family: 'Pretendard GOV', sans-serif;
}

/* ----- Reset ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-white);
  min-width: var(--max-width);
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

/* ----- Color Utility ----- */
.color-primary { color: var(--color-primary); }
.color-accent { color: var(--color-accent); }
.color-blue { color: var(--color-blue); }

/* ----- Layout Utility ----- */
.inner {
  width: var(--content-width);
  margin: 0 auto;
}

/* ===================================================
   1. TOP LINK BAR
   =================================================== */
.top-link-bar {
  background: var(--color-primary);
  height: 48px;
}

.top-link-bar .inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.top-link-bar__list {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.top-link-bar__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.top-link-bar__item + .top-link-bar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.top-link-bar__link {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  font-weight: 400;
}

.top-link-bar__item.is-active {
  background: var(--color-white);
}

.top-link-bar__item.is-active .top-link-bar__link {
  color: var(--color-text);
}

/* ===================================================
   2. GNB HEADER
   =================================================== */
.gnb {
  background: var(--color-white);
  height: 80px;
  position: relative;
}

.gnb .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.gnb__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gnb__logo-img {
  height: 44px;
}

.gnb__logo-text {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 32px;
  margin-top:4px;
}


/* ----- Sub Navigation ----- */
.gnb-sub {
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  height: 64px;
}

.gnb-sub__inner {
  max-width: 1920px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.gnb-sub__list {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  padding-left: var(--content-padding);
  gap: 0;
}

.gnb-sub__item {
  width: 299px;
  height: 100%;
  display: flex;
  align-items: center;
}

.gnb-sub__link {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-text);
  padding-left: 0;
}

.gnb-sub__link:hover {
  color: var(--color-primary);
}

.gnb-sub__item.is-hover .gnb-sub__link {
  border-bottom: 3px solid var(--color-accent);
}

.gnb-sub__menu-area {
  width: 64px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
  margin-right: var(--content-padding);
}

.gnb-sub__menu-btn {
  width: 28px;
  height: 28px;
  position: relative;
}

.gnb-sub__menu-btn img {
  width: 100%;
  height: 100%;
  transition: opacity 0.2s;
}

.gnb-sub__menu-btn .gnb-sub__close-icon {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
}

.gnb-sub__menu-btn .gnb-sub__close-icon::before,
.gnb-sub__menu-btn .gnb-sub__close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--color-text);
}

.gnb-sub__menu-btn .gnb-sub__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gnb-sub__menu-btn .gnb-sub__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 메뉴 열렸을 때 */
.mega-menu.is-open ~ .gnb-sub__menu-area .gnb-sub__menu-btn img,
.header-wrap.menu-open .gnb-sub__menu-btn img {
  display: none;
}

.header-wrap.menu-open .gnb-sub__menu-btn .gnb-sub__close-icon {
  display: block;
}

/* ----- Header Wrap ----- */
.header-wrap {
  position: relative;
  z-index: 100;
}

/* ----- Mega Menu ----- */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.mega-menu.is-open {
  display: block;
}

.mega-menu__panel {
  position: relative;
  background: var(--color-white);
  border-radius: 0 0 24px 24px;
  padding: 16px 0 40px;
  z-index: 2;
}

.mega-menu__columns {
  display: flex;
  min-height: 496px;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

.mega-menu__col {
  width: 299px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 10px;
}

.mega-menu__divider {
  width: 1px;
  background: var(--color-line);
  flex-shrink: 0;
  height: 496px;
}

.mega-menu__group {
  display: flex;
  flex-direction: column;
}

.mega-menu__2depth {
  display: flex;
  align-items: center;
  height: 36px;
  padding-left: 10px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--color-text);
  white-space: nowrap;
}

.mega-menu__2depth:hover {
  background: var(--color-card-gray);
}

.mega-menu__3depth-list {
  display: flex;
  flex-direction: column;
}

.mega-menu__3depth {
  display: flex;
  align-items: center;
  height: 36px;
  padding-left: 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text1);
}

.mega-menu__3depth:hover {
  background: var(--color-card-gray);
}

.mega-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* ===================================================
   3. HERO / VISUAL SECTION
   =================================================== */
.hero {
  position: relative;
  padding-top: 48px;
  padding-bottom: 0;
  text-align: center;
}

.hero__subtitle {
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  color: var(--color-text);
  margin-bottom: 32px;
}

.hero__desc {
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
  color: var(--color-text1);
}

/* ----- Search Area ----- */
.search-area {
  position: relative;
  margin-top: 64px;
}

.search-area__bar-bg {
  background: var(--color-primary);
  border-radius: 24px;
  height: 128px;
  position: relative;
}

/* QR box 높이만큼 아래 공간 확보 */
.search-area__bar-wrap {
  position: relative;
}

.search-area__label {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-area__label-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
}

.search-area__label-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-area__label-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  color: var(--color-white);
}

/* Search Input */
.search-area__input-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 596px;
  height: 64px;
  background: var(--color-white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 8px 0 30px;
}

.search-area__select-wrap {
  position: relative;
  padding-right: 16px;
  border-right: 1px solid var(--color-line);
}

.search-area__select {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
}

.search-area__select-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.search-area__select-wrap.is-open .search-area__select-icon {
  transform: rotate(180deg);
}

.search-area__select-list {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: -30px;
  width: 180px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 20;
}

.search-area__select-wrap.is-open .search-area__select-list {
  display: block;
}

.search-area__select-item {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text1);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.search-area__select-item:hover {
  background: var(--color-gray-light);
  color: var(--color-text);
}

.search-area__select-item.is-active {
  color: var(--color-primary);
  font-weight: 500;
}

.search-area__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding: 0 16px;
  font-family: var(--font-family);
  color: var(--color-text);
}

.search-area__input::placeholder {
  color: var(--color-text2);
}

.search-area__search-btn {
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-area__search-btn img {
  width: 24px;
  height: 24px;
}

/* QR Code Box */
.search-area__qr {
  position: absolute;
  right: 80px;
  top: 34px;
  width: 298px;
  height: 348px;
  background: var(--color-white);
  border: 4px solid var(--color-text);
  border-radius: 24px;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 48px 24px;
  z-index: 10;
}

.search-area__qr-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  color: var(--color-text);
  text-align: center;
}

.search-area__qr-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text);
  text-align: center;
  margin-top: 4px;
}

.search-area__qr-img {
  width: 140px;
  height: 140px;
  margin-top: 10px;
}

.search-area__qr-img img {
  width: 100%;
  height: 100%;
}

.search-area__qr-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text1);
  text-align: center;
  margin-top: 10px;
  white-space: nowrap;
}

/* ===================================================
   4. ICON MENU
   =================================================== */
.icon-menu {
  padding-top: 48px;
  padding-bottom: 118px;
}

.icon-menu .inner {
  display: flex;
  justify-content: flex-start;
  padding-left: 80px;
  gap: 100px;
}

.icon-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.icon-menu__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-card-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.icon-menu__item:hover .icon-menu__icon {
  transform: scale(1.05);
  background: var(--color-accent);
}

.icon-menu__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.icon-menu__text {
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-text);
}

/* ===================================================
   5. CARD SECTION (계약 관련 정보)
   =================================================== */
.card-section {
  padding: 0 0 80px;
}

.card-section .inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.card-section__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: var(--color-text);
  flex-shrink: 0;
  width: 323px;
}

.card-section__list {
  display: flex;
  gap: 24px;
  flex: 1;
}

.card-section__card {
  width: 280px;
  height: 318px;
  position: relative;
  border-radius: 16px;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.card-section__card:hover {
  transform: translateY(-4px);
}

.card-section__card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 18px;
  border-radius: 16px;
}

.card-section__card--mint .card-section__card-bg { background: var(--color-card-mint); }
.card-section__card--orange .card-section__card-bg { background: var(--color-card-orange); }
.card-section__card--pink .card-section__card-bg { background: var(--color-card-pink); }
.card-section__card--blue .card-section__card-bg { background: var(--color-card-blue); }

.card-section__card-content {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.card-section__card-name {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  color: var(--color-text);
  margin-bottom: 12px;
}

.card-section__card-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text1);
}

.card-section__card-mascot {
  position: absolute;
  right: 0;
  top: 210px;
  width: 116px;
  height: 108px;
  object-fit: contain;
}

.card-section__card-more {
  position: absolute;
  left: 32px;
  top: 220px;
  width: 48px;
  height: 48px;
  z-index: 1;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.card-section__card-more::before,
.card-section__card-more::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-text1);
  border-radius: 1px;
}

.card-section__card-more::before {
  width: 18px;
  height: 2px;
}

.card-section__card-more::after {
  width: 2px;
  height: 18px;
}

/* ===================================================
   6. CONTRACT INFO SECTION (계약정보)
   =================================================== */
.contract-section {
  background: var(--color-gray-light);
  padding: 100px 0;
}

.contract-section__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: var(--color-text);
  margin-bottom: 40px;
}

/* Tab Navigation */
.contract-section__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.contract-section__tabs {
  display: flex;
  gap: 12px;
}

.contract-section__tab {
  padding: 10px 30px;
  border-radius: 990px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  background: var(--color-line);
  color: var(--color-text1);
  transition: background 0.2s, color 0.2s;
}

.contract-section__tab.is-active {
  background: var(--color-accent);
  color: var(--color-white);
}

.contract-section__tab:hover:not(.is-active) {
  background: var(--color-line2);
}

.contract-section__more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text);
}

.contract-section__more-icon {
  width: 20px;
  height: 20px;
}

/* Tab Panels */
.contract-section__panel {
  display: none;
}

.contract-section__panel.is-active {
  display: block;
}

/* Contract Cards */
.contract-section__list {
  display: flex;
  gap: 24px;
}

.contract-card {
  width: 504px;
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-line2);
  overflow: hidden;
  transition: background 0.2s;
  cursor: pointer;
}

/* Hover: 카드 배경 → 배지 색상, 배지 → 흰색 배경 + 원래 색상 텍스트 */
.contract-card:hover .contract-card__badge--construction { background: var(--color-white); color: var(--color-blue); }
.contract-card:hover .contract-card__badge--goods { background: var(--color-white); color: var(--color-green); }
.contract-card:hover .contract-card__badge--service { background: var(--color-white); color: var(--color-orange); }

.contract-card--construction:hover { background: var(--color-blue); border-color: var(--color-blue); }
.contract-card--goods:hover { background: var(--color-green); border-color: var(--color-green); }
.contract-card--service:hover { background: var(--color-orange); border-color: var(--color-orange); }

.contract-card--construction:hover .contract-card__title,
.contract-card--construction:hover .contract-card__info-item,
.contract-card--construction:hover .contract-card__info-label,
.contract-card--construction:hover .contract-card__info-value,
.contract-card--goods:hover .contract-card__title,
.contract-card--goods:hover .contract-card__info-item,
.contract-card--goods:hover .contract-card__info-label,
.contract-card--goods:hover .contract-card__info-value,
.contract-card--service:hover .contract-card__title,
.contract-card--service:hover .contract-card__info-item,
.contract-card--service:hover .contract-card__info-label,
.contract-card--service:hover .contract-card__info-value {
  color: var(--color-white);
}

.contract-card--construction:hover .contract-card__header,
.contract-card--goods:hover .contract-card__header,
.contract-card--service:hover .contract-card__header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.contract-card__header {
  padding: 40px 40px 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--color-line2);
}

.contract-card__badge {
  width: 56px;
  height: 56px;
  border-radius: 990px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.contract-card__badge--construction { background: var(--color-blue); }
.contract-card__badge--goods { background: var(--color-green); }
.contract-card__badge--service { background: var(--color-orange); }

.contract-card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 64px;
}

.contract-card__body {
  padding: 30px 40px 30px 30px;
}

.contract-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contract-card__info-item {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text1);
  padding-left: 16px;
  position: relative;
}

.contract-card__info-item::before {
  content: '•';
  position: absolute;
  left: 0;
}

.contract-card__info-label {
  color: var(--color-text);
  letter-spacing: 1.26px;
}

.contract-card__info-value {
  color: var(--color-text1);
}

/* Notice Cards (공지사항) */
.notice-card {
  display: flex;
  flex-direction: column;
  width: 504px;
  height: 285px;
  border-radius: 16px;
  border: 1px solid var(--color-line2);
  background: var(--color-white);
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.notice-card:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.2);
}

.notice-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px 40px 30px;
  border-bottom: 1px solid var(--color-line2);
}

.notice-card:hover .notice-card__header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.notice-card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-card:hover .notice-card__title {
  color: var(--color-white);
}

.notice-card__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text1);
}

.notice-card:hover .notice-card__date {
  color: var(--color-white);
}

.notice-card__body {
  padding: 30px 40px;
}

.notice-card__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text1);
}

.notice-card:hover .notice-card__desc {
  color: var(--color-white);
}

/* ===================================================
   7. FOOTER LINKS (더보기메뉴)
   =================================================== */
.footer-links {
  background: var(--color-navy-light);
  height: 48px;
}

.footer-links .inner {
  display: flex;
  height: 100%;
}

.footer-links__item {
  flex: 1;
  position: relative;
  height: 100%;
}

.footer-links__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-links__item:last-child::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-links__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 10px 0 30px;
}

.footer-links__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-white);
}

.footer-links__arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.footer-links__item.is-open .footer-links__arrow {
  transform: rotate(180deg);
}

.footer-links__arrow img {
  width: 100%;
  height: 100%;
}

.footer-links__list {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 311px;
  max-height: 320px;
  overflow-y: auto;
  background: var(--color-white);
  border: 1px solid var(--color-navy);
  border-radius: 8px;
  padding: 5px 10px 20px 30px;
  z-index: 10;
}

.footer-links__item.is-open .footer-links__list {
  display: block;
}

.footer-links__list li {
  border-bottom: 1px solid var(--color-line);
}

.footer-links__list li:last-child {
  border-bottom: none;
}

.footer-links__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text);
  transition: color 0.15s;
}

.footer-links__list li a::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8.00001 0C12.4182 0 16 3.58172 16 8C16 12.4182 12.4182 16 8.00001 16C3.58172 16 0 12.4182 0 8C0 3.58172 3.58172 0 8.00001 0ZM8.62425 4.37518L8.55697 4.31708C8.34817 4.16216 8.06161 4.16025 7.85089 4.31134L7.77569 4.37518L7.71761 4.44246C7.56273 4.65126 7.56081 4.93783 7.71193 5.14854L7.77569 5.2237L9.95145 7.39944H4.59943L4.51801 7.40488C4.25178 7.44104 4.04103 7.65176 4.00491 7.918L3.99943 7.99944L4.00491 8.08088C4.04103 8.34712 4.25178 8.55784 4.51801 8.59392L4.59943 8.59944H9.95145L7.77521 10.7758L7.71713 10.843C7.54281 11.0779 7.56209 11.4112 7.77505 11.6242C7.98809 11.8374 8.32137 11.8567 8.55633 11.6826L8.62361 11.6245L11.8248 8.42448L11.883 8.35712C12.0379 8.14832 12.0398 7.86176 11.8887 7.65104L11.8249 7.57584L8.62425 4.37518Z' fill='%23FF5C77'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.15s;
}

.footer-links__list li a:hover {
  color: var(--color-accent);
}

.footer-links__list li a:hover::after {
  opacity: 1;
}

.footer-links__list li a:hover {
  color: var(--color-accent);
}

.footer-links__list::-webkit-scrollbar {
  width: 20px;
}

.footer-links__list::-webkit-scrollbar-track {
  background: transparent;
  margin: 20px 0;
}

.footer-links__list::-webkit-scrollbar-thumb {
  background: var(--color-text2);
  border-radius: 90px;
  border: 8px solid transparent;
  background-clip: padding-box;
}

/* ===================================================
   8. FOOTER / COPYRIGHT
   =================================================== */
.footer {
  background: var(--color-navy);
  padding: 64px 0;
}

.footer .inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo {
  height: 50px;
}

.footer__logo img {
  height: 100%;
}

.footer__info {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-white);
}

.footer__copyright {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-white);
  margin-top: 4px;
}
