/* [project]/src/components/layout/Header/Header.module.css [app-client] (css) */
.Header-module__85i50G__header {
  width: var(--width);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  margin: 0 auto;
  display: flex;
}

.Header-module__85i50G__nav {
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

.Header-module__85i50G__logo {
  border-radius: 0;
  width: 50px;
  height: 50px;
}

.Header-module__85i50G__list, .Header-module__85i50G__dropdown {
  z-index: 999;
  visibility: hidden;
  background-color: var(--color-surface-dark);
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: 100%;
  padding: 0 15px 15px;
  display: flex;
  position: absolute;
  left: 0;
}

.Header-module__85i50G__list {
  top: 75px;
}

.Header-module__85i50G__dropdown {
  top: 0;
}

.Header-module__85i50G__list.Header-module__85i50G__active, .Header-module__85i50G__dropdown.Header-module__85i50G__active {
  visibility: visible;
  animation: .2s ease-out Header-module__85i50G__reveal-right;
}

.Header-module__85i50G__item {
  width: 100%;
  list-style-type: none;
}

.Header-module__85i50G__item:not(:last-child) {
  border-bottom: 1px solid var(--color-surface);
}

.Header-module__85i50G__link, .Header-module__85i50G__button {
  text-wrap: nowrap;
  cursor: pointer;
  width: 100%;
  color: var(--color-text);
  background-color: var(--color-surface-dark);
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  padding: 15px;
  display: flex;
}

.Header-module__85i50G__button.Header-module__85i50G__active {
  color: var(--color-text-light);
}

.Header-module__85i50G__link:hover, .Header-module__85i50G__button:hover {
  color: var(--color-text-light);
  background-color: var(--color-surface);
  text-decoration: none;
}

.Header-module__85i50G__hamburger {
  width: 43px;
  height: 43px;
  color: var(--color-text);
  background: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Header-module__85i50G__hamburger:hover {
  color: var(--color-text-light);
  background-color: var(--color-surface);
}

@keyframes Header-module__85i50G__reveal-right {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 768px) {
  .Header-module__85i50G__list {
    visibility: visible;
    flex-direction: row;
    width: fit-content;
    height: auto;
    padding: 0;
    position: static;
  }

  .Header-module__85i50G__dropdown {
    border: 1px solid var(--color-surface);
    border-radius: 5px;
    width: max-content;
    height: auto;
    padding: 5px;
    top: calc(100% + 10px);
  }

  .Header-module__85i50G__dropdown.Header-module__85i50G__active {
    animation: .2s ease-out Header-module__85i50G__reveal-up;
  }

  .Header-module__85i50G__dropdown .Header-module__85i50G__item:not(:last-child) {
    border-bottom: 1px solid var(--color-surface);
  }

  .Header-module__85i50G__item {
    position: relative;
  }

  .Header-module__85i50G__item.Header-module__85i50G__back {
    display: none;
  }

  .Header-module__85i50G__list .Header-module__85i50G__item {
    border-bottom: none;
  }

  .Header-module__85i50G__link, .Header-module__85i50G__button {
    background: none;
    margin-bottom: 0;
    padding: 10px;
  }

  .Header-module__85i50G__dropdown .Header-module__85i50G__item:not(:last-child) .Header-module__85i50G__link, .Header-module__85i50G__dropdown .Header-module__85i50G__item:not(:last-child) .Header-module__85i50G__button {
    margin-bottom: 5px;
  }

  .Header-module__85i50G__dropdown .Header-module__85i50G__link:hover, .Header-module__85i50G__dropdown .Header-module__85i50G__button:hover {
    background-color: var(--color-surface);
  }

  .Header-module__85i50G__link:hover, .Header-module__85i50G__button:hover {
    background: none;
  }

  .Header-module__85i50G__hamburger {
    display: none;
  }

  @keyframes Header-module__85i50G__reveal-up {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* [project]/src/components/layout/Main/Main.module.css [app-client] (css) */
.Main-module__0L3xna__main {
  flex-direction: column;
  gap: 150px;
  margin-bottom: 150px;
  display: flex;
}

.Main-module__0L3xna__main.Main-module__0L3xna__margin-top {
  margin-top: 75px;
}

/* [project]/src/components/layout/Footer/Footer.module.css [app-client] (css) */
.Footer-module__hP-FLq__footer {
  width: var(--width);
  border-top: 1px solid var(--color-surface);
  flex-direction: column;
  gap: 30px;
  margin: auto auto 0;
  padding: 30px 0;
  display: flex;
}

.Footer-module__hP-FLq__links {
  text-wrap: nowrap;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  display: grid;
}

.Footer-module__hP-FLq__links ul {
  padding: 0;
}

.Footer-module__hP-FLq__links li {
  list-style-type: none;
}

.Footer-module__hP-FLq__copyright {
  align-items: center;
  column-gap: 10px;
  display: flex;
}

.Footer-module__hP-FLq__image {
  border-radius: 0;
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  .Footer-module__hP-FLq__footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* [project]/src/app/[locale]/apply/components/StaffSection/StaffSection.module.css [app-client] (css) */
.StaffSection-module__0eC2MG__staffContainer {
  box-sizing: border-box;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
}

.StaffSection-module__0eC2MG__rankSection {
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  display: flex;
}

.StaffSection-module__0eC2MG__rankTitle {
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.StaffSection-module__0eC2MG__membersGrid {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
}

.StaffSection-module__0eC2MG__memberCard {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  flex-direction: column;
  flex: none;
  align-items: center;
  gap: .75rem;
  min-width: 140px;
  padding: 1.25rem;
  transition: all .3s;
  display: flex;
}

.StaffSection-module__0eC2MG__memberCard:hover {
  background: #ffffff1a;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px #0003;
}

.StaffSection-module__0eC2MG__avatar {
  border-radius: 12px;
  width: 64px;
  height: 64px;
  transition: transform .3s;
  box-shadow: 0 4px 12px #0000004d;
}

.StaffSection-module__0eC2MG__memberCard:hover .StaffSection-module__0eC2MG__avatar {
  transform: scale(1.05);
}

.StaffSection-module__0eC2MG__username {
  text-align: center;
  color: #fff;
  word-break: break-word;
  font-size: .9rem;
  font-weight: 600;
}

@media (min-width: 1025px) {
  .StaffSection-module__0eC2MG__memberCard {
    min-width: 160px;
  }

  .StaffSection-module__0eC2MG__avatar {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .StaffSection-module__0eC2MG__staffContainer {
    padding: 0 1.5rem;
  }

  .StaffSection-module__0eC2MG__memberCard {
    min-width: 150px;
  }

  .StaffSection-module__0eC2MG__avatar {
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .StaffSection-module__0eC2MG__staffContainer {
    padding: 0 1rem;
  }

  .StaffSection-module__0eC2MG__rankTitle {
    font-size: 1.25rem;
  }

  .StaffSection-module__0eC2MG__memberCard {
    gap: 1rem;
    min-width: 140px;
    padding: 1.5rem;
  }

  .StaffSection-module__0eC2MG__avatar {
    width: 80px;
    height: 80px;
  }

  .StaffSection-module__0eC2MG__username {
    font-size: .95rem;
  }
}

@media (max-width: 480px) {
  .StaffSection-module__0eC2MG__staffContainer {
    gap: 2rem;
    padding: 0 1rem;
  }

  .StaffSection-module__0eC2MG__rankSection {
    gap: 1.25rem;
  }

  .StaffSection-module__0eC2MG__rankTitle {
    font-size: 1.2rem;
  }

  .StaffSection-module__0eC2MG__membersGrid {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .StaffSection-module__0eC2MG__memberCard {
    gap: 1.25rem;
    width: calc(100% - 2rem);
    min-width: 200px;
    max-width: 280px;
    padding: 2rem;
  }

  .StaffSection-module__0eC2MG__avatar {
    width: 96px;
    height: 96px;
  }

  .StaffSection-module__0eC2MG__username {
    font-size: 1.1rem;
    font-weight: 700;
  }
}

/*# sourceMappingURL=src_f9390ae3._.css.map*/