* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body { background: var(--bg-color2); overflow-x: hidden; }
body.no-scroll { overflow: hidden; }

@-moz-document url-prefix() {
  html, .menu, .years-list, .candidate-list {
    scrollbar-width: thin;
    scrollbar-color: #D5D5D5 #F1F1F1;
  }
}

html::-webkit-scrollbar, .menu::-webkit-scrollbar,
.years-list::-webkit-scrollbar, .candidate-list::-webkit-scrollbar {
  width: 5px; 
}

html::-webkit-scrollbar-thumb, .menu::-webkit-scrollbar-thumb, 
.years-list::-webkit-scrollbar-thumb, .candidate-list::-webkit-scrollbar-thumb {
  background: #E6E6E6; 
  height: 87px;
  border-radius: 3px;
}

:root {
  --primary-color: #222F37;
  --secondary-color: #D9BE65;
  --main-grey: #90A1B9;
  --main-red: #ED2127;
  --bg-color: #F6F2F2;
  --bg-color1: #F1F1F1;
  --bg-color2: #F3F4F4;
  --border-color: #E9E9E9;
  --border-color1: #F0F0F0;
  --text-color: #555555;
}

.Container {
  display: flex;
  width: 100%;
  padding: 0 80px 0 30px;
}

.content, .content1 {
  display: flex;
  width: 100%;
  max-width: 1100px; 
}

.content1 { flex-direction: column; }

.side-menu {
  background: var(--bg-color2);
  border-right: 1px solid #EAEAEA;
  padding-top: 15px;
  position: fixed;
  left: 0; top: 0;
  z-index: 1000;
  width: 240px; height: 100vh;
}

.logo {
  display: flex;
  margin: 0 auto 10px;
  width: 151px;
  img { width: 100%; }
}

.main-content {
  background: var(--bg-color2);
  width: calc(100vw - 240px);
  margin-left: 240px;
}

header { 
  background: var(--primary-color);
  height: 108px;
  border-bottom: 5px solid var(--secondary-color); 
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.web-title {
  color: white;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0.5px;
  font: 24px 'Campton Medium', 'Helvetica Medium';
  line-height: 30px;
  font-feature-settings: 'case' 1;
  span:last-child { text-transform: uppercase; }
}

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

.socials {
  display: flex;
  gap: 15px;
}

.socials a, .search button {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
}

.socials a {
  background: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.language-change {
  background: var(--bg-color);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
  width: 105px; height: 40px;
  a {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 30px;
    transition: all 0.3s ease;
    &:hover, &.active { 
      background: white; 
      box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    }
  }
}

.search {
  display: flex;
  align-items: center;
  input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: #848484;
    font: 12px 'Helvetica Roman';
    line-height: 16px;
    width: 0; height: 40px;
    opacity: 0; padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    left: 0;
    &:focus { outline: none; }
  }
}

.search.active input {
  width: 300px;
  padding: 0 16px;
  opacity: 1;
}

.search button { transition: all 0.3s ease; }
.search.active button { border-radius: 0 10px 10px 0; border-left: none; }

.banner { position: relative; height: 500px; }
.banner-swiper {
  width: 100% !important;
  height: 100%;
  top: 0;
}

.banner-slide {
  width: 100%; height: 100%;
  > img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
}

.swiper1 .swiper-pagination {
  background: rgba(255, 255, 255, 0.73);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  left: 50% !important;
  transform: translateX(-50%);
  padding: 0 10px;
  width: unset !important; 
  height: 30px;
}

.swiper1 .swiper-pagination-bullet {
  background: var(--primary-color);
  border-radius: 4px;
  width: 8px; height: 8px;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper1 .swiper-pagination-bullet-active { 
  background: var(--secondary-color); 
  width: 36px;
}

.btn-prev, .btn-next {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: absolute;
  top: 50%; 
  transform: translateY(-50%);
  width: 54px; height: 54px;
  transition: all 0.3s ease;
  z-index: 1000;
  &:hover { background: var(--primary-color); }
}

.btn-prev { left: 30px; }
.btn-next { right: 30px; }

.news-prev { padding: 30px 80px 30px 30px; }
.news-prev1 { padding: 40px 80px 100px 30px; }
.news-head, .cand-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 45px;
  > p {
    color: var(--primary-color);
    font: 20px 'Helvetica Medium';
    line-height: 39px;
    font-feature-settings: 'case' 1;
    position: relative;
    margin-bottom: 0;
    &::before {
      content: '';
      background: var(--secondary-color);
      border-radius: 2px;
      height: 4px; width: 80px;
      position: absolute;
      left: 0; bottom: -16px;
    }
  }
  > a:not(.goback) {
    background: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0px 4px 12px 0px rgba(34, 47, 55, 0.2);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font: 15px 'Helvetica Medium';
    line-height: 20px;
    width: 255px; height: 45px;
    transition: all 0.3s ease;
    font-feature-settings: 'case' 1;
    &:hover { background: rgba(34, 47, 55, 0.8); }
  }
}

.news-swiper { 
  width: 100% !important; 
  padding: 0 5px 50px 2px !important; 
}
.news-swiper .swiper-pagination { background: rgba(0, 0, 0, 0.02) !important; }
.news-card.swiper-slide { width: 344px !important; }

.news-card {
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.1);
  color: unset;
  text-decoration: none;
  > img {
    width: 100%; height: 220px;
    object-fit: cover;
  }
}

.date, .time {
  color: #999999;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 13px 'Helvetica Roman';
  line-height: 19px;
  margin-bottom: 14px;
}

.news-desc {
  background: white;
  padding: 28px 24px 28px 28px;
  .title {
    color: var(--primary-color);
    display: -webkit-box;
    font: 15px 'Helvetica Medium';
    line-height: 23px;
    margin-bottom: 16px;
    overflow: hidden;
    height: 46px;
    line-clamp: 2;
    font-feature-settings: 'case' 1;
  }
  .intro {
    color: #666666;
    display: -webkit-box;
    font: 13px 'Helvetica Roman';
    line-height: 23px;
    overflow: hidden;
    height: 69px;
    line-clamp: 3;
  }
  hr {
    border-color: rgba(0, 0, 0, 0.05);
    opacity: 1;
    margin: 20px 0 12px;
  }
}

.more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  span:first-child {
    color: var(--primary-color);
    font: 13px 'Helvetica Medium';
    line-height: 19px;
    letter-spacing: 0.5px;
    font-feature-settings: "case" 1;
  }
  span:last-child {
    color: var(--secondary-color);
    position: relative;
    top: -2px;
  }
}

.about-pc { 
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  padding: 40px 80px 65px 30px;
}

.sec-title p, .sec-title1 p {
  color: var(--primary-color);
  text-align: center;
  font: 20px 'Helvetica Medium';
  line-height: 33px;
  margin-bottom: 50px;
  font-feature-settings: 'case' 1;
  position: relative;
  &::after {
    content: '';
    background: var(--secondary-color);
    border-radius: 4px;
    position: absolute;
    bottom: -17px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
  }
}

.sec-title1 p {
  text-align: start;
  &::after { left: 0; transform: unset; }
}

.about-pc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 15px;
}

.about-pc-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  > a {
    background: var(--bg-color1);
    border-radius: 10px;
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0);
    color: black;
    text-decoration: none;
    font: 17px 'Helvetica Medium';
    line-height: 25px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    svg { fill: var(--main-red); transition: all 0.3s ease; }
  }
  > div {
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 21px 17px;
  }
}

.about-pc-card > a:hover {
  background: var(--primary-color);
  color: white;
  svg { fill: white; }
}

.authority-prev {
  display: flex;
  flex-direction: column;
  gap: 10px;
  > div {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font: 12px 'Helvetica Roman';
    line-height: 20px;
    text-align: center;
    padding: 15px 21px;
    div {
      background: var(--bg-color1);
      border-radius: 8px;
      width: 43px; height: 43px;
    }
  }
}

.members-prev {
  display: flex;
  align-items: center;
  gap: 22px;
  > p:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45px;
    span:first-child {
      color: var(--primary-color);
      font: bold 36px 'Campton Medium';
      line-height: 40px;
    }
    span:last-child {
      color: #45556C;
      font: 14px 'Helvetica Roman';
      line-height: 20px;
    }
  }
  > div {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: calc(100% - 67px); 
  }
}

.member-num {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px 16px 9px 10px;
  width: 100%;
  > div:first-child {
    background: var(--bg-color1);
    border-radius: 8px;
    width: 34px; height: 34px;
  }
  > p {
    color: var(--text-color);
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    max-width: 260px;
    margin-bottom: 0;
  }
  > div:last-child {
    background: var(--primary-color);
    border-radius: 5px;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    color: white;
    font: bold 18px 'Campton Medium';
    line-height: 28px;
    width: 35px; height: 35px;
    margin-left: auto;
  }
}

.member-num .decor {
  width: 27px; height: 7px;
  position: relative;
  &::after, &::before {
    content: '';
    background: var(--main-grey);
    position: absolute;
  }
  &::after {
    border-radius: 50%;
    top: 0; right: 0;
    width: 6px; height: 6px;
  }
  &::before {
    left: 0; top: 3px;
    width: 12px; height: 1px;
  }
}

.members-prev1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  > div {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font: 12px 'Helvetica Roman';
    line-height: 16px;
    padding: 14px 24px 14px 17px;
    span { width: calc(100% - 54px); }
    div {
      background: var(--bg-color1);
      border-radius: 8px;
      width: 44px; height: 44px;
    }
  }
}

.years-prev {
  display: grid;
  grid-template-columns: 170fr 320fr;
  gap: 10px;
  padding: 56px 20px !important;
  position: relative;
  &::after, &::before {
    content: '';
    background: var(--main-grey);
    position: absolute;
    z-index: 1;
  }
  &::after {
    width: calc(100% - 40px); height: 4px;
    left: 20px; top: 145px;
  }
  &::before {
    border-radius: 50%;
    width: 12px; height: 12px;
    right: 15px; top: 141px;
  }
}

.year-prev {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative; 
  z-index: 2;
  > p:first-child {
    color: var(--primary-color);
    font: bold 24px 'Campton Medium';
    line-height: 24px;
    margin-bottom: 0;
  }
  > div:nth-child(2) {
    background: var(--bg-color1);
    box-shadow: 0px 15.96px 31.93px -7.66px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    border: 5px solid white;
    width: 90px; height: 90px;
  }
  > div:last-child {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    color: var(--text-color);
    font: 12px 'Helvetica Roman';
    line-height: 16px;
    padding: 24px 10px;
    text-align: center;
  }
}

.activities-prev {
  background: url('../images/bg.png') no-repeat center center / cover;
  padding: 45px 80px 45px 30px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  a {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.04);
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 33px;
    > div:first-child {
      background: var(--bg-color1);
      border-radius: 8px;
      width: 50px; height: 50px;
      img { width: 21px; }
    }
  }
}

.activity-desc {
  width: calc(100% - 66px);
  > p:first-child {
    color: var(--primary-color);
    font: 16px 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 13px;
    font-feature-settings: 'case' 1;
  }
  > p:last-child {
    color: black;
    font: 14px 'Helvetica Roman';
    line-height: 24px;
    margin-bottom: 0;
  }
}

.candidates-prev {
  background: url('../images/bg1.png') no-repeat center center / cover;
  padding: 60px 80px 60px 30px;
  .content {
    align-items: flex-start;
    gap: 30px;
  }
}

.candidate-imgs {
  position: relative;
  width: 510px; height: 325px;
  > img {
    border-radius: 20px;
    width: 475px; height: 315px;
    object-fit: cover;
    position: relative;
    z-index: 2;
  }
  div { position: absolute; z-index: 1; border-radius: 20px; }
  div:nth-child(2) {
    background: linear-gradient(135deg, #E2E8F0 0%, #CAD5E2 100%);
    width: 475px; height: 260px;
    transform: rotate(4deg);
    top: 0;
  }
  div:nth-child(3) {
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    width: 475px; height: 260px;
    transform: rotate(-4deg);
    top: 0;
  }
}

.candidate-intro {
  width: calc(100% - 540px);
  > a {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0px 10px 15px -4px rgba(0, 0, 0, 0.1); 
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 30px;
    margin-bottom: 15px;
    &:last-child { margin-bottom: 0; }
    > div:first-child {
      border: 1px solid #EEEEEE;
      border-radius: 14px;
      width: 60px; height: 60px;
      img { width: 28px; }
    }
    span {
      color: #2A2A2A;
      font: 16px 'Helvetica Medium';
      line-height: 20px;
      width: calc(100% - 106px);
    }
    i { color: var(--main-red); font-size: 19px; }
  }
}

.legal-prev { padding: 40px 80px 40px 30px; }

.legal-framework {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  padding: 32px 27px 44px;
}

.legal-framework a {
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  color: #333333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font: 14px 'Helvetica Medium';
  line-height: 20px;
  padding: 0 20px 0 17px;
  width: 100%; height: 73px;
  transition: all 0.3s ease;
  span { width: calc(100% - 34px); }
  &:hover { background: white; border-color: rgba(34, 47, 55, 0.4); }
}

.useful-links { padding: 50px 80px 50px 30px; }
.usefulLink-swiper { width: 100% !important; }
.useful-link {
  color: black;
  text-decoration: none;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font: 14px 'Helvetica Medium';
  line-height: 20px;
  width: 260px !important;
  span { text-align: center; }
}

footer {
  background: var(--border-color1);
  border-top: 9px solid var(--secondary-color);
  padding: 30px 80px 24px 30px !important;
}

.footer-content { gap: 40px; }

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.footer-logo { max-width: 370px; }
.footer-logo a {
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  font: 16px 'Helvetica Medium';
  line-height: 22px;
  font-feature-settings: 'case' 1;
  margin-bottom: 16px;
  img { width: 51px; }
}

.footer-logo div {
  color: rgba(0, 0, 0, 0.7);
  font: 14px 'Helvetica Roman';
  line-height: 24px;
}

.footer-menu { max-width: 370px; }
.footer-menu > p:first-child {
  color: var(--primary-color);
  font: 16px 'Helvetica Medium';
  line-height: 22px;
  font-feature-settings: 'case' 1;
  margin-bottom: 30px;
}

.contact-item {
  color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font: 14px 'Helvetica Roman';
  line-height: 22px;
  margin-bottom: 12px;
  &:last-child { margin-bottom: 0; }
  img { margin-top: 5px; }
  span { width: calc(100% - 32px); }
}

footer .socials a {
  background: var(--primary-color);
  &:first-child img { filter: brightness(0) invert(1); }
}

.footer-bottom {
  color: #A7A7A7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 14px 'Helvetica Roman';
  line-height: 21px;
  padding-right: 60px;
  a { color: var(--secondary-color); text-decoration: none; }
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 15px;
  height: calc(100vh - 168px);
  overflow-y: auto;
}

.menu-item div, .menu-item > a:first-child {
  color: black;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font: 14px 'Helvetica Medium';
  line-height: 20px;
  font-feature-settings: 'case' 1;
  padding: 10px 10px 10px 20px;
  transition: all 0.3s ease;
  position: relative;
  span { max-width: 155px; }
  i {
    color: #B9B9B9;
    opacity: 0;
    font-size: 10px;
    transition: all 0.3s ease;
  }
  &::after {
    content: '';
    background: transparent;
    border-radius: 2px;
    width: 100px; height: 3px;
    position: absolute;
    bottom: 0; left: 20px;
    transition: all 0.3s ease;
  }
}

.menu-item div:hover, .menu-item > a:first-child:hover, 
.menu-item div.active {
  color: var(--primary-color);
  &::after { background: var(--secondary-color); }
  i { opacity: 1; }
}

.menu-item div.active i { transform: rotate(180deg); }

.menu-item ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  list-style: none;
  transition: max-height 0.3s ease;
  padding-left: 20px;
  li { display: flex; }
  a {
    color: black;
    text-decoration: none;
    font: 12px 'Helvetica Roman';
    line-height: 20px;
    transition: all 0.3s ease;
    padding: 5px 5px 5px 20px;
    width: 100%;
    &:hover { color: var(--primary-color); }
  }
}

.menu-item ul.active {
  max-height: 300px; 
}

.menu-item.active > a { 
  color: var(--primary-color); 
  &::after { background: var(--secondary-color); }
}

.menu-item.active > div {
  color: var(--primary-color);
  &::after { background: var(--secondary-color); }
  i { opacity: 1; }
}

.contact-page { padding: 30px 80px 60px 30px; }
.contact {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.contact-left > p, .contact-right > p {
  color: var(--primary-color);
  font: 18px 'Helvetica Medium';
  line-height: 24px;
  margin-bottom: 22px;
}

.contact-left { width: 565px; }
.contact-right { width: calc(100% - 595px); }
.contact-info {
  background: white;
  border: 1px solid var(--border-color1);
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  margin-bottom: 15px;
  > div:first-child {
    background: var(--bg-color1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
  }
  &:last-child { margin-bottom: 0; }
}

.contact-info > div:last-child {
  width: calc(100% - 65px);
  p, span, a {
    color: var(--primary-color);
    font: 16px 'Helvetica Medium';
    line-height: 25px;
    margin-bottom: 0;
  }
}

.contact-right iframe { 
  border-radius: 16px;
  width: 100%; height: 440px;
}

.page-cont { 
  padding: 40px 80px 100px 30px; 
  min-height: 60vh;
}

.inner-nav {
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  margin-bottom: 30px;
  a {
    background: white;
    border: 1px solid #DDDDDE;
    border-radius: 10px;
    color: black;
    text-decoration: none;
    font: 12px 'Helvetica Roman';
    line-height: 18px;
    padding: 14.5px 20px;
    transition: all 0.3s ease;
    &:hover, &.active {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: white;
    }
  }
}

.text-cont {
  background: white;
  border-radius: 16px;
  margin-bottom: 32px; 
}

.text-title {
  border-bottom: 1px solid var(--border-color1);
  color: var(--primary-color);
  font: bold 20px 'Helvetica Medium';
  line-height: 25px;
  margin-bottom: 0;
  padding: 32px;
}

.page-text {
  color: var(--text-color);
  font: 14px 'Helvetica Roman';
  line-height: 24px;
  padding: 32px 25px 42px 32px;
  hr {
    border-color: var(--border-color);
    opacity: 1;
  }
}

.about-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  > div {
    background: white;
    border-radius: 16px;
    border: 1px solid #F5F5F5;
    color: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font: 12px 'Helvetica Medium';
    line-height: 16px;
    padding: 26px 28px;
    p { margin-bottom: 0; text-align: center; }
  }
}

.members-status {
  background: white;
  border: 1px solid #DDDDDE;
  border-radius: 44px;
  display: flex;
  padding: 6px;
  position: sticky;
  width: 830px;
  margin: 0 auto 40px;
  &::after {
    content: '';
    background: var(--primary-color);
    border-radius: 38px;
    width: 50%; height: 76px;
    position: absolute;
    top: 6px;
    left: 6px;
    transition: all 0.3s ease;
    z-index: 1;
  }
}

.members-status.status1::after { left: calc(50% - 6px); }
.members-status > div {
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 14px 'Helvetica Medium';
  line-height: 17px;
  width: 50%; height: 76px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  svg {
    stroke: var(--primary-color);
    transition: all 0.3s ease;
  }
}

.members-status > div.active {
  color: white;
  svg { stroke: white; }
}

.members-cont { 
  display: none; 
  margin-bottom: 50px;
}

.members-cont[data-cat="curr"] { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.members-cont[data-cat='prev'] {
  flex-direction: column;
}

.member-card {
  background: white;
  color: unset;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 2px 2px 18px;
  img { 
    width: 100%; height: 250px;
    margin-bottom: 17px;
    object-fit: cover;
  }
  p:nth-child(2) {
    color: var(--primary-color);
    font: bold 18px 'Helvetica Medium';
    line-height: 27px;
    margin-bottom: 8px;
    padding-left: 20px;
  }
  p:nth-child(3) {
    color: #666666;
    font: 14px 'Helvetica Roman';
    line-height: 21px;
    margin-bottom: 0;
    padding-left: 20px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  button {
    background: white;
    border-radius: 5px;
    border: 1px solid #D5D5D5;
    color: #A6A6A6;
    cursor: pointer;
    font: 12px 'BPG Mrgvlovani'; 
    line-height: 16px;
    width: 30px; height: 30px;
    transition: all 0.3s ease;
    &:hover, &.active {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: white;
    }
  }
}

.members-head {
  background: white;
  border-bottom: 2px solid var(--border-color1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  margin-bottom: 35px;
  > span {
    color: var(--primary-color);
    font: bold 20px 'Helvetica Medium';
    line-height: 48px;
  }
  a {
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    color: #666666;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: 14px 'Helvetica Medium';
    line-height: 19px;
    width: 90px; height: 40px;
    transition: all 0.3s ease;
    svg {
      stroke: #666666;
      transition: all 0.3s ease;
    }
  }
}

.members-head a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  svg { stroke: white; }
}

.member {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  > img {
    border: 3px solid var(--border-color1);
    width: 300px; height: 360px;
    object-fit: cover;
  }
}

.member-info {
  background: white;
  border: 3px solid var(--border-color1);
  border-radius: 10px;
  color: var(--primary-color);
  padding: 35px 30px;
  width: calc(100% - 320px);
  > p {
    font: 16px 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 15px;
  }
  > p:first-child {
    font: bold 20px 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 30px;
  }
  > p:last-child { 
    color: #666666; 
    font-family: 'Helvetica Roman';
    margin-bottom: 0;
  }
}

.member-details-cont {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 45px;
}

.member-details {
  background: white;
  padding: 24px 30px 30px;
  .member-category-title {
    margin-left: 20px;
    > div { width: 52px; height: 52px; }
  }
}

.member-category-list1 {
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  &::after {
    content: '';
    background: var(--secondary-color);
    width: 1px; height: calc(100% - 55px);
    position: absolute;
    left: 3.5px; top: 6px;
  }
}

.member-category-list1 > div {
  display: flex;
  align-items: flex-start;
  gap: 21px;
  position: relative;
  padding-left: 20px;
  &::after {
    content: '';
    background: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    left: 0; top: 6px;
    width: 8px; height: 8px;
  }
}

.member-category-list1 > div > p {
  color: var(--text-color);
  font: 15px 'Helvetica Roman';
  line-height: 20px;
  margin-bottom: 0;
  width: 110px;
}

.member-category-list1 > div > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 150px);
  span:first-child {
    color: black;
    font: 15px 'Helvetica Medium';
    line-height: 25px;
  }
  span:last-child {
    color: #6A6A6A;
    font: 14px 'Helvetica Roman';
    line-height: 25px;
  }
}

.member-category-list1 > div:only-child {
  padding-left: 85px;
  &::after { content: none; }
  > p { display: none; }
  > div { width: 100%; }
}

.share-member {
  > p {
    color: #262626;
    font: 16px 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 21px;
  }
  > div {
    display: flex;
    gap: 10px;
    > * {
      background: var(--primary-color);
      border-radius: 10px;
      border: none;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      width: 35px; height: 35px;
    }
  }
}

.prev-member { border-bottom: 2px solid #F5F5F5; }
.prev-member.show .member-name i { transform: rotate(180deg); }

.member-name {
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px 18px 24px;
  .name {
    color: var(--primary-color);
    font: bold 16px 'Helvetica Medium';
    line-height: 20px;
    margin-bottom: 6px;
  }
  i {
    color: var(--main-red);
    transition: all 0.3s ease;
  }
}

.member-name .pos {
  color: #999999;
  display: flex;
  align-items: center;
  gap: 16px;
  font: 15px 'Helvetica Roman';
  line-height: 20px;
  margin-bottom: 0;
  div {
    background: #999999;
    border-radius: 50%;
    width: 4px; height: 4px;
  }
}

.member-desc {
  background: white;
  color: var(--text-color);
  font: 14px 'Helvetica Roman';
  line-height: 20px;
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.member-desc-content {
  border-top: 2px solid #F5F5F5;
  padding: 15px 25px 25px;
}

.member-category-title {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 12px;
  font: bold 18px 'Helvetica Medium';
  line-height: 24px;
  margin-bottom: 24px;
  div {
    background: #FAFAFA;
    border: 1px solid var(--border-color1);
    border-radius: 4px;
    width: 38px; height: 38px;
  }
}

.member-category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
  li {
    background: #FAFAFA;
    border: 1px solid var(--border-color1);
    border-radius: 4px;
    padding: 13px 30px;
    position: relative;
    &::after {
      content: '';
      background: var(--primary-color);
      border-radius: 50%;
      position: absolute;
      top: 20px; left: 15px;
      width: 5px; height: 5px;
    }
  }
}

.birthday {
  background: #FAFAFA;
  border: 1px solid var(--border-color1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 17px;
  margin-bottom: 24px;
  span:first-child {
    color: var(--primary-color);
    font: bold 15px 'Helvetica Medium';
    line-height: 19px;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 28px;
  margin-bottom: 40px;
}

.latest-news {
  display: grid;
  grid-template: repeat(2, 222px) / 660fr 418fr;
  gap: 10px;
  margin-bottom: 40px;
}

.latest {
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 0 40px 30px;
  > * { position: relative; z-index: 2; }
  img {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1; inset: 0;
  }
  &::after {
    content: '';
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}
.latest:first-child { grid-row: span 2 / span 2; }
.latest:last-child { grid-column-start: 2; }

.latest .date { color: white; margin-bottom: 5px; }
.latest .title {
  display: -webkit-box;
  font: 18px 'Helvetica Medium';
  line-height: 24px;
  margin-bottom: 15px;
  line-clamp: 2;
  overflow: hidden;
  height: 48px;
  font-feature-settings: 'case' 1;
}

.latest .intro {
  display: -webkit-box;
  font: 12px 'Helvetica Roman';
  line-height: 16px;
  height: 32px;
  line-clamp: 2;
  overflow: hidden;
  margin-bottom: 15px;
}

.latest:first-child .title {
  font-size: 28px; line-height: 30px;
  height: 60px;
  margin-bottom: 7px;
}

.more1 {
  background: rgba(221, 221, 222, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: 14px 'Helvetica Medium';
  line-height: 20px;
  width: 155px; height: 45px;
  transition: all 0.3s ease;
  span { font-feature-settings: 'case' 1; }
  &:hover { background: var(--primary-color); border-color: var(--primary-color); }
}

.search-news {
  border-radius: 10px;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  width: 345px; height: 40px;
  margin-bottom: 30px;
  input {
    background: white;
    border: none;
    border-radius: 10px;
    color: #848484;
    font: 12px 'Helvetica Roman';
    line-height: 20px;
    padding: 0 40px 0 16px;
    width: 100%; height: 100%;
    &:focus { outline: none; }
  }
  button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    position: absolute;
    top: 10px; right: 12px;
  }
}

.goback {
  color: #4E5868;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 14px 'BPG Mrgvlovani';
  line-height: 21px;
}

.news {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.curr-news { width: 65%; }
.other-news { width: calc(35% - 30px); }

.news-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  > div { margin-bottom: 0; }
}

.curr-news .title {
  color: black;
  font: 26px 'Helvetica Medium';
  line-height: 30px;
  margin-bottom: 20px;
  font-feature-settings: 'case' 1;
}

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

.curr-news .text {
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.06);
  color: #2A2A2A;
  font: 16px 'Helvetica Light';
  line-height: 28px;
  padding: 30px;
  margin-bottom: 25px;
  * { font-family: 'Helvetia Light' !important; }
}

.share {
  background: white;
  border-radius: 16px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
}

.share p {
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font: 14px 'Campton Light';
  line-height: 20px;
  margin-bottom: 0;
}

.share button {
  background: #1877F2;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 3px 10px 0px rgba(24, 119, 242, 0.25);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 14px 'Campton Medium';
  line-height: 20px;
  gap: 8px;
  width: 130px; height: 40px;
}

.news-gallery-cont {
  position: relative;
  margin-bottom: 25px;
}

.news-gallery-slide {
  color: unset;
  text-decoration: none;
  width: 228px !important;
  img {
    width: 100%; height: 152px;
    object-fit: cover;
  }
}

.image-prev, .image-next {
  background: white;
  border-radius: 50%;
  border: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: var(--main-red);
  font-size: 10px;
  width: 31px; height: 31px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.image-prev { left: -15px; }
.image-next { right: -15px; }
.image-prev:disabled, .image-next:disabled { color: var(--main-grey); }

.other-news {
  background: white;
  border-radius: 20px;
  border: rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.06);
  > p {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    font: 14px 'Helvetica Roman';
    line-height: 21px;
    font-feature-settings: 'case' 1;
    position: relative;
    padding: 20px 24px 20px 37px;
    margin-bottom: 0;
    &::after {
      content: '';
      background: var(--secondary-color);
      border-radius: 2px;
      width: 3px; height: 20px;
      position: absolute;
      left: 24px; top: 21px;
    }
  }
}

.other-news-card {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 48px 18px 24px;
  > img {
    width: 70px; height: 70px;
    object-fit: cover;
  }
  > div { width: calc(100% - 84px); }
  > div p {
    color: black;
    display: -webkit-box;
    font: 12px 'Helvetica Medium';
    line-height: 16px;
    line-clamp: 3;
    height: 48px;
    overflow: hidden;
    font-feature-settings: 'case' 1;
    margin-bottom: 5px;
  }
  > div > div span {
    color: #717182;
    font: 12px 'Helvetica Roman';
    line-height: 16px;
  }
  > div > div i {
    color: var(--main-red);
    font-size: 10px;
  }
}
.other-news-card:last-child { border-bottom: none; }

.page-title {
  background: white;
  border: 2px solid var(--border-color1);
  border-radius: 10px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 32px;
  margin-bottom: 30px;
  gap: 10px;
  > span {
    font: bold 20px 'Helvetica Medium';
    line-height: 28px;
  }
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14.5px;
  > a { min-height: 100px; }
}

.pdf {
  background: white;
  border: 1px solid #DDDDDE;
  border-radius: 10px;
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 20px;
  transition: all 0.3s ease;
  > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'Helvetica Roman';
    line-height: 24px;
    width: calc(100% - 34px);
    p { margin-bottom: 0; transition: all 0.3s ease; }
    p:first-child { color: black; font-size: 14px; }
    p:last-child { color: #3F3F3F; font-size: 12px; }
  }
  &:hover {
    background: #E2E8F1;
    border-color: #F5F5F5;
    > div p:last-child { color: black; }
  }
}

.pdf-cont {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 50px;
}

.select-year select, .select-status select {
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background: white;
  background-image: url('../images/select-arrow.svg');
  background-repeat: no-repeat;
  background-position-x: 96%;
  background-position-y: 10px;
  border-radius: 10px;
  border: 1px solid #DDDDDE;
  color: #848484;
  font: 12px 'Helvetica Roman';
  line-height: 20px;
  padding-left: 16px;
  width: 170px; height: 40px;
}

.protocol {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.04);
  padding: 24px 28px;
  > p {
    color: var(--primary-color);
    font: 16px 'Helvetica Medium';
    line-height: 21px;
    margin-bottom: 24px;
  }
}

.protocol-actions {
  display: flex;
  gap: 8px;
  a {
    border-radius: 8px;
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font: 12px 'Helvetica Medium';
    line-height: 16px;
    padding: 6px 12px;
  }
}

.protocol-actions a[data-type="pdf"] {
  background: rgba(217, 190, 101, 0.08);
  border: 1px solid rgba(217, 190, 101, 0.15);
  color: var(--primary-color);
  img { max-width: 13px; }
}

.protocol-actions a[data-type="video"] {
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: #2563EB;
}

.protocol-actions a[data-type="audio"] {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  color: #7C3AED;
}

.history {
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
  &::after, &::before {
    content: '';
    background: var(--primary-color);
    position: absolute;
    z-index: 1;
  }
  &::after {
    opacity: 0.3;
    width: 3px; height: 100%;
    top: 0; left: 414px;
  }
  &::before {
    border-radius: 50%;
    width: 9px; height: 9px;
    bottom: 0; left: 411px;
  }
}

.history-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  > img {
    border-radius: 15px;
    width: 365px; height: 495px;
    object-fit: cover;
  }
}

.history-desc {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  width: calc(100% - 399px);
}

.history-desc > div:first-child {
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font: bold 13px 'Helvetica Medium';
  line-height: 16px;
  position: absolute;
  top: 0; left: 0;
  width: 52px; height: 52px;
  z-index: 2;
}

.history-text {
  width: calc(100% - 79px);
  margin-left: auto;
  > p {
    color: black;
    font: bold 20px 'Helvetica Medium';
    line-height: 24px;
    margin-bottom: 30px;
  }
  > div {
    color: #333333;
    font: 14px 'Helvetica Roman';
    line-height: 18px;
    text-align: justify;
    * { font-weight: 'Helvetica Roman' !important; }
  }
}

.candidate-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  > p {
    color: #848484;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 0;
  }
}

.candidate-form .search-news {
  box-shadow: none;
  margin-bottom: 0;
  width: 310px;
  margin-left: auto;
}

.select-status select { border: none; }

.candidates-cont {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.candidate-years {
  border-radius: 5px;
  width: 240px;
}

.candidate-years .title, .candidate-table .title {
  background: white;
  border-radius: 5px 5px 0 0;
  color: var(--primary-color);
  font: 14px 'Helvetica Medium';
  line-height: 15px;
  font-feature-settings: 'case' 1;
  margin-bottom: 0;
  position: relative;
  padding: 20px 20px 28px;
  &::after {
    content: '';
    background: var(--secondary-color);
    border-radius: 1px;
    position: absolute;
    width: 80px; height: 2px;
    bottom: 13px; left: 20px;
    z-index: 1;
  }
}

.years-list {
  max-height: 350px;
  overflow-y: auto;
  position: relative;
  &::after {
    content: '';
    background: #DDDDDE;
    width: 1px; height: calc(100% - 30px);
    position: absolute;
    left: 25px; top: 15px;
    z-index: 1;
  }
}

.year-item {
  background: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 10px 10px 10px 20px;
  transition: all 0.3s ease;
  position: relative;
  &::before {
    content: '';
    background: #F5F5F5;
    position: absolute;
    bottom: 0; right: 0;
    width: 200px; height: 1px;
    transition: all 0.3s ease;
  }
  &:last-child { border-radius: 0 0 5px 5px; }
  > * { transition: all 0.3s ease; }
  > div:first-child {
    background: white;
    border: 1px solid #DDDDDE;
    border-radius: 50%;
    width: 11px; height: 11px;
    position: relative; z-index: 2;
  }
  > p:nth-child(2) {
    color: var(--primary-color);
    font: 12px 'Helvetica Medium';
    line-height: 15px;
    margin-bottom: 0;
  }
  > div:nth-child(3) {
    background: #F5F5F5;
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 8px 'Campton Medium';
    line-height: 8px;
    margin-left: auto;
    width: 19px; height: 19px;
  }
  i { color: var(--primary-color); font-size: 9px; }
}

.year-item:hover, .year-item.active {
  background: var(--primary-color);
  > div:first-child {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
  }
  > p:nth-child(2) { color: white; }
  > div:nth-child(3) {
    background: rgba(255, 255, 255, 0.15);
    color: white;
  }
  i { color: white; }
  &::before { background: var(--primary-color); }
}

.candidate-table {
  width: calc(100% - 260px);
}

.table-head {
  background: var(--bg-color2);
  color: #2F2F2F;
  display: flex;
  align-items: center;
  gap: 20px;
  font: 12px 'Helvetica Medium';
  line-height: 15px;
  font-feature-settings: 'case' 1;
  padding: 6px 44px 6px 24px;
  p { margin-bottom: 0; }
}

.table-head p:first-child, .candidate > p:first-child { width: 9px; }
.table-head p:nth-child(2), .candidate > p:nth-child(2) { width: 117px; }
.table-head p:nth-child(3), .candidate > div:nth-child(3) { width: 102px; }
.table-head p:nth-child(4), .candidate > p:nth-child(4) { width: 265px; }
.table-head p:nth-child(5) { width: 152px; }

.candidate-list {
  max-height: 387px;
  overflow-y: auto;
}

.candidate {
  background: white;
  border-bottom: 1px solid #F5F5F5;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 28px 10px 24px;
  transition: all 0.3s ease;
  &:hover {
    background: #F9F9F9;
    border-color: #C0C0C0;
  }
}

.candidate > p {
  color: #2F2F2F;
  font: 12px 'Helvetica Medium';
  line-height: 15px;
  margin-bottom: 0;
}

.candidate > div:nth-child(3) { display: flex; }
.candidate > div:nth-child(3) a, .modal-file {
  background: rgba(144, 161, 185, 0.08);
  border: 1px solid rgba(144, 161, 185, 0.4);
  color: var(--primary-color);
  border-radius: 8px;
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font: 12px 'Helvetica Medium';
  line-height: 16px;
  padding: 5px 12px;
  width: unset;
  img { max-width: 13px; }
}

.status {
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font: 12px 'Helvetica Medium';
  line-height: 18px;
  width: 166px;
  padding: 3.5px 12px;
}

.status1 { background: #F0F3F1; color: #60927D; }
.status2 { background: rgba(237, 33, 39, 0.08); color: var(--main-red); }


.candidate-modal-overlay {
  background: rgba(0,0,0,.5);
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  &.active { display: flex; }
}

.candidate-modal {
  background: white;
  border-radius: 10px;
  padding: 24px;
  padding: 30px 35px 25px 30px;
  position: relative;
  width: 345px;
  max-width: calc(100vw - 40px);
}

.candidate-modal > p:first-child {
  color: var(--primary-color);
  font: 12px 'Helvetica Medium';
  line-height: 15px;
  font-feature-settings: 'case' 1;
  margin-bottom: 32px;
}

.candidate-modal > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 20px;
  > span:first-child {
    color: #A6A6A6;
    font: 12px 'Helvetica Medium';
    line-height: 15px;
    font-feature-settings: 'case' 1;
    max-width: 105px;
  }
}

.candidate-modal-close {
  background: var(--primary-color);
  border: none;
  border-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 12px 'Helvetica Medium';
  line-height: 15px;
  width: 100px; height: 30px;
  margin-left: auto;
}

.modal-name, .modal-org {
  color: #2F2F2F;
  font: 14px 'Helvetica Medium';
  line-height: 20px;
  text-align: end;
}

.cand-head { margin-bottom: 50px; }
.cand-head .candidate-form { margin-bottom: 0; }
.cand-head select { border: none; background-position-y: 11px; }
.cand-head .search-news { width: 245px; }

.selected-candidates {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.selected-cand > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  p {
    background: #4E0506;
    border-radius: 6px;
    box-shadow: 0px 2px 6px 0px rgba(139, 0, 0, 0.18);
    color: white;
    font: bold 12px 'Helvetica Medium';
    line-height: 17px;
    width: 48px; height: 24px;
    margin-bottom: 0;
  }
  hr {
    border-color: #E8E9EC;
    width: calc(100% - 60px);
    opacity: 1;
    margin: 0;
  }
}

.selected-cand-desc {
  background: white;
  border: 1px solid #E8E9EC;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 16px 20px 11px 20px;
}

.cand-left {
  display: flex;
  align-items: center;
  gap: 14px;
  img {
    border: 1px solid #E8E9EC;
    border-radius: 6px;
    width: 55px; height: 63px;
    object-fit: cover;
  }
}

.cand-left > div {
  p:first-child {
    color: #111827;
    font: bold 14px 'Helvetica Medium';
    line-height: 18px;
    margin-bottom: 3px;
  }
  p:nth-child(2) {
    color: #6B7280;
    font: 12px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 2px;
  }
  p:last-child {
    color: #9CA3AF;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 0;
  }
}

.cand-right {
  display: flex;
  align-items: flex-start;
  gap: 35px;
}

.cand-right > div {
  max-width: 250px;
  p:first-child {
    color: #2F2F2F;
    font: 12px 'Helvetica Medium';
    line-height: 15px;
    font-feature-settings: 'case' 1;
    margin-bottom: 12px;
  }
  p:last-child {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    width: 82px; height: 26px;
    margin: 0;
  }
}