/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fbf7f0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
}

/* =========================
   COLORS
========================= */

:root {
  --navy: #072d5c;
  --cream: #fbf7f0;
  --beige: #f3ede4;
  --text: #111827;
  --subtext: #3b536e;
  --gold: #c8a35d;
}

/* =========================
   TOP BROWSER BAR
========================= */

.browser-bar {
  width: 100%;
  height: 52px;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.dots {
  display: flex;
  gap: 11px;
}

.dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: white;
}

.dots .gold-dot {
  background-color: var(--gold);
}

/* =========================
   SITE CONTAINER
========================= */

.site-container {
  width: calc(100% - 44px);
  max-width: 1440px;
  margin: 0 auto;
  background-color: white;
}

/* =========================
   HEADER
========================= */

.header {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px 0 54px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
}

.logo-wrap img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.logo-wrap h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav a {
  text-decoration: none;
  color: #333333;
  font-size: 18px;
  font-weight: 400;
}

.nav a:hover {
  color: var(--navy);
}

.nav .apply-btn {
  background-color: var(--navy);
  color: white;
  font-size: 20px;
  padding: 18px 34px;
  border-radius: 9px;
  font-weight: 500;
}

/* =========================
   NEW MAIN PHOTO SECTION
========================= */

.main-photo-section {
  padding: 10px 58px 70px 58px;
}

.main-photo-box {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}

.main-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  display: block;
}

.main-photo-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 46%;
  transform: translateY(-50%);
  text-align: center;
}

.main-photo-text h2 {
  color: white;
  font-size: 82px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -2px;
}

/* =========================
   MAIN TITLE MOTION
========================= */

.main-photo-text h2 {
  opacity: 0;
  transform: translateY(35px);
  animation: titleAppear 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes titleAppear {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   OFFER SECTION
========================= */

.offer {
  width: 920px;
  margin: 0 auto;
  padding: 50px 0 100px 0;
  text-align: center;
}

.offer h2 {
  font-size: 50px;
  font-weight: 900;
  color: #1f2860;
  line-height: 1;
  margin-bottom: 40px;
}

.offer > p {
  font-size: 17px;
  color: #444444;
  margin-bottom: 50px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.offer-card {
  height: 150px;
  background-color: white;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);

  display: flex;
  align-items: center;
  gap: 28px;
  text-align: left;

  padding: 20px 24px;
}

.icon-box {
  width: 105px;
  height: 105px;
  border-radius: 16px;
  background-color: var(--cream);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.offer-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: #1f2860;
  margin-bottom: 12px;
}

.offer-card p {
  font-size: 16px;
  line-height: 1.45;
  color: #444444;
  font-weight: 600;
}

/* =========================
   FOOTER
========================= */

.footer {
  height: 200px;
  background-color: black;
  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;

  text-align: center;
}

.footer h3 {
  font-size: 16px;
  font-weight: 900;
}

/* =========================
   SCROLL ANIMATION
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 1100px) {
  .header {
    height: auto;
    padding: 40px;
    flex-direction: column;
    gap: 30px;
  }

  .hero {
    flex-direction: column;
    gap: 50px;
  }

  .hero-left {
    width: 100%;
  }

  .hero-right {
    width: 100%;
    max-width: 540px;
  }

  .offer {
    width: 90%;
  }
}

@media screen and (max-width: 700px) {
  .site-container {
    width: 100%;
  }

  .browser-bar {
    padding-left: 25px;
  }

  .logo-wrap h1 {
    font-size: 28px;
  }

  .nav {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 30px;
  }

  .hero-left h2 {
    font-size: 40px;
  }

  .hero-left p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-right {
    height: auto;
    flex-direction: column;
    padding: 35px 0;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    height: auto;
  }
}


/* =========================
   SUB PAGE HEADER
========================= */

.sub-header {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
}

.sub-header h1 {
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}

/* =========================
   TEAM PAGE
========================= */

.team-page {
  min-height: calc(100vh - 52px);
}

.team-section {
  width: 760px;
  margin: 0 auto;
  padding: 10px 0 120px 0;

  display: flex;
  flex-direction: column;
  gap: 85px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 70px;
}

.photo-box {
  width: 245px;
  height: 340px;
  border: 4px solid #f1eee7;
  border-radius: 42px;
  background-color: #ffffff;

  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-box span {
  display: none;
}

.member-info {
  width: 520px;
}

.member-info h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 52px;
}

.member-info p {
  font-size: 18px;
  line-height: 1.22;
  font-weight: 900;
  color: var(--navy);
}

/* =========================
   TEAM PAGE RESPONSIVE
========================= */

@media screen and (max-width: 850px) {
  .team-section {
    width: 90%;
  }

  .team-member {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .member-info {
    width: 100%;
  }

  .member-info h2 {
    margin-bottom: 25px;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  min-height: calc(100vh - 52px);
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  padding: 15px 58px 70px 58px;
  gap: 70px;
}

.contact-left {
  width: 770px;
}

.contact-row {
  width: 100%;
  height: 84px;
  background-color: #f3ede4;
  border: 2px solid #6a6a6a;
  border-radius: 13px;

  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;

  padding: 0 48px;
  margin-bottom: 40px;
}

.contact-row h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
}

.contact-row p {
  font-size: 23px;
  color: #4a4a4a;
}

.application-row {
  background-color: var(--navy);
  border: none;
}

.application-row h3 {
  color: white;
}

.application-row p {
  color: white;
}

.application-row p a {
  color: white;
  text-decoration: none;
}

.application-row p a:visited {
  color: white;
}

.application-row p a:hover {
  text-decoration: underline;
}

/* =========================
   JOIN PANEL
========================= */

.join-panel {
  width: 310px;
  height: 600px;
  background-color: var(--navy);
  border-radius: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 20px;
  margin-top: -8px;
}

.join-panel-inner {
  width: 250px;
  height: 530px;
  background-color: #fbf7f0;
  border-radius: 36px;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding-top: 48px;
}

.join-panel-inner h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 78px;
}

.join-panel-inner p {
  font-size: 16px;
  color: #444444;
  margin-bottom: 58px;
}

.quick-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quick-btn {
  width: 190px;
  height: 58px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 19px;
}

.navy-btn {
  background-color: var(--navy);
  color: white;
  border: 2px solid var(--navy);
}

.white-btn {
  background-color: white;
  color: var(--navy);
  border: 2px solid #6a6a6a;
}

/* =========================
   CONTACT RESPONSIVE
========================= */

@media screen and (max-width: 1050px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-left {
    width: 100%;
  }

  .join-panel {
    margin-right: 0;
  }
}

@media screen and (max-width: 650px) {
  .contact-section {
    padding: 20px 30px 60px 30px;
  }

  .contact-row {
    height: auto;
    min-height: 90px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 28px;
  }

  .contact-row h3 {
    font-size: 22px;
  }

  .contact-row p {
    font-size: 20px;
  }

  .join-panel {
    width: 290px;
    height: 560px;
  }

  .join-panel-inner {
    width: 235px;
    height: 470px;
  }
}

/* =========================
   ABOUT PAGE
========================= */

.about-page {
  min-height: calc(100vh - 52px);
}

/* First section */

.about-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 72px 80px 72px;
  gap: 90px;
}

.about-text {
  width: 610px;
}

.about-text h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 55px;
}

.about-text p {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 58px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-photo-box {
  width: 560px;
  height: 480px;
  background-color: #f3ede4;
  border-radius: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  flex-shrink: 0;
}

.about-photo-box img,
.about-large-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo-box span,
.about-large-photo-box span {
  display: none;
}

.about-photo-box span {
  font-size: 28px;
  color: #000000;
}

/* Second section */

.about-bottom {
  min-height: 720px;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 130px;
  padding: 70px 80px 100px 80px;
}

.about-large-photo-box {
  width: 480px;
  height: 500px;
  background-color: #f3ede4;
  border-radius: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  flex-shrink: 0;
}

.about-large-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.about-large-photo-box span {
  font-size: 28px;
  color: #000000;
}

.about-korean-text {
  width: 590px;
}

.about-korean-text p {
  font-size: 21px;
  line-height: 1.45;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 70px;
  word-break: keep-all;
}

.about-korean-text p:last-child {
  margin-bottom: 0;
}
.about-large-photo-box {
  width: 520px;
  height: 460px;
  background-color: #f3ede4;
  border-radius: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  flex-shrink: 0;
}

.about-large-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-large-photo-box span {
  display: none;
}

/* =========================
   ABOUT PAGE RESPONSIVE
========================= */

@media screen and (max-width: 1100px) {
  .about-top,
  .about-bottom {
    flex-direction: column;
    gap: 60px;
  }

  .about-text,
  .about-korean-text {
    width: 90%;
  }

  .about-photo-box,
  .about-large-photo-box {
    width: 90%;
    max-width: 500px;
  }
}

@media screen and (max-width: 650px) {
  .about-top {
    padding: 20px 30px 70px 30px;
  }

  .about-bottom {
    padding: 60px 30px 90px 30px;
  }

  .about-text h1 {
    font-size: 34px;
  }

  .about-text p,
  .about-korean-text p {
    font-size: 18px;
  }

  .about-photo-box,
  .about-large-photo-box {
    height: 360px;
  }
}

/* =========================
   NOTICE PAGE
========================= */

.notice-page {
  min-height: calc(100vh - 52px);
}

.notice-header {
  height: 180px;
}

/* =========================
   EVENTS CAROUSEL
========================= */

.events-section {
  position: relative;
  padding: 0 100px 70px 100px;
}

.event-carousel {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
  overflow: hidden;

  transition: transform 0.45s ease, opacity 0.45s ease;
}

.event-carousel.slide-left {
  transform: translateX(-120px);
  opacity: 0.35;
}

.event-carousel.slide-right {
  transform: translateX(120px);
  opacity: 0.35;
}

.event-carousel.slide-reset {
  transition: none;
}

.event-card-item {
  width: 315px;
  height: 200px;
  border-radius: 32px;
  padding: 36px 32px;
  flex-shrink: 0;
}

.beige-card {
  background-color: #f3ede4;
  color: var(--navy);
}

.navy-card {
  background-color: var(--navy);
  color: white;
}

.event-card-item h2 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 34px;
}

.event-card-item p {
  font-size: 11px;
  margin-bottom: 26px;
}

.small-white-btn,
.small-gold-btn {
  width: 110px;
  height: 38px;
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.small-white-btn {
  background-color: white;
  color: var(--navy);
  border: none;
}

.small-gold-btn {
  background-color: #c8a35d;
  color: var(--navy);
  border: none;
}

.carousel-btn {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: none;

  background-color: var(--navy);
  color: white;

  font-size: 38px;
  font-weight: 900;
  cursor: pointer;

  position: absolute;
  top: 67px;
  z-index: 10;
}

.left-btn {
  left: 52px;
}

.right-btn {
  right: 52px;
}

.carousel-btn:hover {
  background-color: #061f40;
}

/* =========================
   POSTS SECTION
========================= */

.posts-section {
  padding: 0 70px 90px 70px;
}

.posts-section h1 {
  font-size: 38px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 28px;
}

.posts-table {
  width: 92%;
  margin: 0 auto;
  background-color: #eeeeee;
}

.post-title-area {
  width: 92%;
  margin: 0 auto 45px auto;
}

.post-title-area h2 {
  font-size: 34px;
  font-weight: 900;
  color: #000000;
}

.post-row {
  height: 46px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;

  padding: 0 32px;
  border-bottom: 1px solid #555555;

  text-decoration: none;
  color: var(--navy);
}

.post-row span {
  font-size: 16px;
  font-weight: 900;
}

.post-row p {
  font-size: 16px;
  font-weight: 800;
}

.post-row:hover {
  background-color: #e1e1e1;
}

.hidden-post {
  display: none;
}

.show-more-btn {
  width: 150px;
  height: 46px;
  border: none;
  background-color: var(--navy);
  color: white;
  border-radius: 8px;

  display: block;
  margin: 28px auto 0 auto;

  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.show-more-btn:hover {
  background-color: #061f40;
}

/* =========================
   POST DETAIL PAGE
========================= */

.post-page {
  min-height: calc(100vh - 52px);
}

.post-detail {
  padding: 0 75px 80px 75px;
}

.post-meta {
  width: 88%;
  height: 40px;
  margin: 0 auto 70px auto;
  background-color: #eeeeee;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 42px;
}

.post-meta h2 {
  font-size: 18px;
  font-weight: 900;
  color: #000000;
}

.post-photo-area {
  width: 88%;
  height: 220px;
  margin: 0 auto 36px auto;
  background-color: #fbf7f0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.post-photo-area p {
  font-size: 32px;
  color: #4a4a4a;
}

.post-photo-grid {
  width: 72%;
  margin: 0 auto 80px auto;

  display: flex;
  flex-direction: column;
  gap: 45px;
}

.small-post-photo {
  width: 100%;
  height: auto;
  background-color: #fbf7f0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.small-post-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.small-post-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.post-buttons {
  width: 82%;
  margin: 0 auto 80px auto;

  display: flex;
  justify-content: space-between;
}

.post-buttons a {
  width: 130px;
  height: 40px;
  background-color: #eeeeee;
  color: #000000;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 19px;
}

/* =========================
   NOTICE RESPONSIVE
========================= */

@media screen and (max-width: 950px) {
  .event-carousel {
    gap: 20px;
  }

  .event-card-item {
    width: 270px;
  }

  .post-photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 700px) {
  .auth-links {
    display: none;
  }

  .events-section {
    padding: 0 35px 60px 35px;
  }

  .event-carousel {
    flex-direction: column;
  }

  .carousel-btn {
    display: none;
  }

  .posts-section {
    padding: 0 30px 70px 30px;
  }

  .post-row {
    grid-template-columns: 1fr;
    height: auto;
    padding: 14px 20px;
    gap: 6px;
  }

  .post-meta {
    height: auto;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .post-photo-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   AUTH PAGES
========================= */

.auth-body {
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.auth-page {
  width: 88%;
  margin: 0 auto;
  padding: 55px 0;
}

.auth-page h1 {
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #333333;
  margin-bottom: 45px;
}

.auth-box {
  width: 88%;
  margin: 0 auto;
}

.auth-box h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 6px;
  color: #333333;
  margin-bottom: 48px;
}

.auth-box form {
  width: 100%;
}

.auth-box input {
  width: 100%;
  height: 68px;
  border: 1px solid #c7ccd4;
  border-radius: 6px;
  padding: 0 34px;

  font-size: 26px;
  color: #333333;
  outline: none;
  margin-bottom: 12px;
}

.auth-box input::placeholder {
  color: #666666;
}

.auth-box label {
  display: block;
  font-size: 25px;
  color: #5c6675;
  margin-bottom: 35px;
}

.password-wrap {
  display: flex;
  width: 100%;
  margin-bottom: 28px;
}

.password-wrap input {
  margin-bottom: 0;
  border-radius: 6px 0 0 6px;
}

.password-wrap button {
  width: 90px;
  border: 1px solid #c7ccd4;
  border-left: none;
  background-color: #e9edf2;
  border-radius: 0 6px 6px 0;
  font-size: 28px;
  cursor: pointer;
}

.auth-submit {
  width: 100%;
  height: 70px;
  border: none;
  border-radius: 6px;

  background-color: #4e78bf;
  color: white;

  font-size: 26px;
  letter-spacing: 6px;
  cursor: pointer;
}

.auth-submit:hover {
  background-color: #3f67a8;
}

.auth-bottom-links {
  text-align: center;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 35px;
}

.auth-bottom-links a {
  color: #4e78bf;
  text-decoration: none;
  font-size: 24px;
}

.auth-bottom-links a:hover {
  text-decoration: underline;
}

/* =========================
   POPUP MODAL
========================= */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: rgba(0, 0, 0, 0.45);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.popup-overlay.show {
  display: flex;
}

.popup-box {
  width: 430px;
  min-height: 260px;
  background-color: #fbf7f0;
  border-radius: 28px;
  padding: 42px 38px;

  position: relative;
  text-align: center;

  animation: popupAppear 0.3s ease;
}

.popup-box h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 28px;
}

.popup-box p {
  font-size: 17px;
  color: #444444;
  margin-bottom: 34px;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;

  border: none;
  background: none;

  font-size: 30px;
  cursor: pointer;
  color: #333333;
}

.popup-apply-btn {
  width: 180px;
  height: 50px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--navy);
  color: white;
  text-decoration: none;

  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
}

.popup-apply-btn:visited {
  color: white;
}

@keyframes popupAppear {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   DROPDOWN NAVIGATION
========================= */

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav > a,
.nav-main-link {
  text-decoration: none;
  color: #333333;
  font-size: 18px;
  font-weight: 400;
}

.nav > a:hover,
.nav-main-link:hover {
  color: var(--navy);
}

.nav-dropdown {
  position: relative;
  padding: 25px 0;
}

.dropdown-menu {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);

  width: 230px;
  background-color: #fbf7f0;

  display: none;
  flex-direction: column;

  z-index: 999;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.dropdown-menu a {
  width: 100%;
  height: 58px;

  display: flex;
  align-items: center;

  padding: 0 18px;

  text-decoration: none;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;

  border-bottom: 1px solid #c9c9c9;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: #f3ede4;
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.nav .apply-btn {
  background-color: var(--navy);
  color: white;
  font-size: 20px;
  padding: 18px 34px;
  border-radius: 9px;
  font-weight: 500;
}

.nav .apply-btn:hover {
  background-color: #061f40;
  color: white;
}

/* =========================
   CAREER ROADMAP PAGE
========================= */

.roadmap-page {
  min-height: calc(100vh - 52px);
  padding-bottom: 0px;
}

/* ---- Filter tabs ---- */

.filter-section {
  padding: 34px 58px 35px 58px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.filter-group {
  position: relative;
  z-index: 200;
}

.filter-tab-btn {
  height: 52px;
  padding: 0 30px;
  border-radius: 30px;
  border: 2px solid #ded7c8;
  background-color: white;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-tab-btn:hover {
  border-color: var(--navy);
}

.filter-tab-btn.active {
  background-color: var(--navy);
  color: white;
  border-color: var(--navy);
}

.filter-group {
  position: relative;
}

.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);

  min-width: 230px;
  background-color: #fbf7f0;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);

  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

.filter-group:hover .filter-dropdown-menu,
.filter-group.open .filter-dropdown-menu {
  display: flex;
}

.filter-dropdown-menu button {
  height: 52px;
  padding: 0 22px;
  display: flex;
  align-items: center;

  border: none;
  border-bottom: 1px solid #e4ddd0;
  background: none;

  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

.filter-dropdown-menu button:last-child {
  border-bottom: none;
}

.filter-dropdown-menu button:hover {
  background-color: #f3ede4;
}

.filter-dropdown-menu button.active {
  background-color: var(--navy);
  color: white;
}

/* ---- Year grid / cards ---- */

.roadmap-section {
  padding: 90px 58px 300px 58px;
}

.roadmap-track-label {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--subtext);
  margin-bottom: 55px;
}

.roadmap-track-label span {
  color: var(--navy);
  font-weight: 900;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: start;
}

.year-card {
  border-radius: 26px;
  padding: 32px 28px;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.year-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Blue -> Gold gradient progression across year 1-4 */
.year-card.year-1 { background: linear-gradient(155deg, #072d5c, #1c4a82); }
.year-card.year-2 { background: linear-gradient(155deg, #17436f, #4d6d94); }
.year-card.year-3 { background: linear-gradient(155deg, #4d6d94, #ad8e5c); }
.year-card.year-4 { background: linear-gradient(155deg, #ad8e5c, #c8a35d); }

.year-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}

.year-milestone {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
  min-height: 82px;
}

.year-toggle-icon {
  position: absolute;
  top: 32px;
  right: 26px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
}

.year-card.open .year-toggle-icon {
  transform: rotate(45deg);
}

.year-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35);
}

.year-tasks {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.45s ease, margin-top 0.45s ease;
}

.year-card.open .year-tasks {
  max-height: 700px;
  margin-top: 22px;
}

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 15px;
}

.task-item:last-child {
  margin-bottom: 0;
}

.task-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.22);
  white-space: nowrap;
  margin-top: 1px;
}

/* ---- Career roadmap responsive ---- */

@media screen and (max-width: 1150px) {
  .roadmap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 700px) {
  .filter-section {
    padding: 26px 24px 6px 24px;
  }

  .roadmap-section {
    padding: 24px 24px 30px 24px;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .year-milestone {
    min-height: 0;
  }

  .roadmap-cta {
    flex-direction: column;
    gap: 12px;
    padding: 16px 22px;
  }

  .cta-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .roadmap-page {
    padding-bottom: 150px;
  }
}


/* =========================
   ALUMNI NETWORK PAGE
========================= */
 
.alumni-page {
  min-height: calc(100vh - 52px);
}
 
/* ---- Search + filter toolbar ---- */
 
.alumni-toolbar {
  padding: 34px 58px 10px 58px;
 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
 
.search-bar {
  width: 100%;
  max-width: 620px;
  height: 58px;
 
  background-color: #f3ede4;
  border: 2px solid #ded7c8;
  border-radius: 30px;
 
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 26px;
}
 
.search-icon {
  font-size: 18px;
  opacity: 0.7;
}
 
.search-bar input {
  flex: 1;
  height: 100%;
  border: none;
  background: none;
  outline: none;
 
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
}
 
.search-bar input::placeholder {
  color: #8a8a8a;
}
 
.alumni-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
 
.coffeechat-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
 
  height: 52px;
  padding: 0 24px;
  border-radius: 30px;
  border: 2px solid #ded7c8;
  background-color: white;
 
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}
 
.coffeechat-toggle input {
  width: 17px;
  height: 17px;
  accent-color: var(--navy);
  cursor: pointer;
}
 
.alumni-results-count {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--subtext);
  margin: 24px 0 70px 0;
}
 
/* ---- Alumni card grid ---- */
 
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 58px 20px 58px;
}
 
.alumni-card {
  background-color: white;
  border: 1px solid #eeeeee;
  border-radius: 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 26px 26px 24px 26px;
 
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.alumni-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.13);
}
 
.alumni-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
 
.alumni-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
 
  background-color: var(--navy);
  color: white;
 
  display: flex;
  align-items: center;
  justify-content: center;
 
  font-size: 17px;
  font-weight: 900;
}
 
.alumni-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
}
 
.alumni-major {
  font-size: 12.5px;
  color: #777777;
  font-weight: 600;
  margin-top: 3px;
  line-height: 1.35;
}
 
.alumni-role-box {
  background-color: #fbf7f0;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  min-height: 62px;
}
 
.alumni-company {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
}
 
.alumni-role {
  font-size: 13px;
  color: #555555;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.35;
}
 
.alumni-badge-row {
  margin-bottom: 18px;
}
 
.badge-coffeechat {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 13px;
  border-radius: 20px;
  background-color: #eaf4ea;
  color: #2e7d32;
}
 
.badge-coffeechat.badge-unavailable {
  background-color: #f1f1f1;
  color: #888888;
}
 
.alumni-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
 
.alumni-btn {
  flex: 1;
  height: 44px;
  border-radius: 8px;
  border: none;
 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
 
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}
 
.alumni-btn-outline {
  background-color: white;
  color: var(--navy);
  border: 2px solid var(--navy);
}
 
.alumni-btn-outline:hover {
  background-color: #f3ede4;
}
 
.alumni-btn-gold {
  background-color: var(--gold);
  color: var(--navy);
}
 
.alumni-btn-gold:hover {
  background-color: #b8924d;
}
 
.alumni-btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  border: 2px solid #cccccc;
  color: #999999;
  background-color: #f5f5f5;
}
 
.alumni-empty-state {
  display: none;
  text-align: center;
  font-size: 16px;
  color: #777777;
  font-weight: 600;
  padding: 60px 0;
}
 
/* ---- Coffee chat modal ---- */
 
.coffeechat-box {
  width: 460px;
  text-align: left;
}
 
.coffeechat-box h2 {
  margin-bottom: 6px;
}
 
.coffeechat-sub {
  font-size: 15px;
  font-weight: 700;
  color: var(--subtext);
  margin-bottom: 22px !important;
}
 
.coffeechat-message-box {
  background-color: #fbf7f0;
  border: 1px solid #e8e1d3;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
 
.coffeechat-message-box p {
  font-size: 14px;
  line-height: 1.55;
  color: #333333;
  margin-bottom: 0 !important;
}
 
.coffeechat-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
 
  background-color: #f3ede4;
  border-radius: 10px;
  padding: 14px 18px;
 
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}
 
/* ---- Alumni page responsive ---- */
 
@media screen and (max-width: 1150px) {
  .alumni-grid {
    grid-template-columns: 1fr 1fr;
  }
}
 
@media screen and (max-width: 700px) {
  .alumni-toolbar {
    padding: 26px 24px 6px 24px;
  }
 
  .alumni-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 20px 24px;
  }
 
  .alumni-filters {
    gap: 10px;
  }
 
  .coffeechat-box,
  .popup-box.coffeechat-box {
    width: 88vw;
  }
}

/* =========================
   ALUMNI DROPDOWN FIX
========================= */

.alumni-toolbar {
  position: relative;
  z-index: 300;
  overflow: visible;
}

.alumni-filters {
  position: relative;
  z-index: 400;
  overflow: visible;
}

.alumni-filters .filter-group {
  position: relative;
  z-index: 500;
}

.alumni-filters .filter-dropdown-menu {
  z-index: 9999;
}

.alumni-page .roadmap-section {
  padding: 0 58px 90px 58px !important;
  position: relative;
  z-index: 1;
}


/* =========================
   PARTNERSHIP PAGE
========================= */
 
.partnership-page {
  min-height: calc(100vh - 52px);
}
 
.section-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
 
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}
 
.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #666666;
  font-weight: 600;
  margin-bottom: 40px;
}
 
/* ---- Social media power stats ---- */
 
.stats-section {
  padding: 50px 58px 100px 58px;
}
 
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  max-width: 980px;
  margin: 0 auto 45px auto;
}
 
.stat-card {
  background: linear-gradient(155deg, #072d5c, #1c4a82);
  border-radius: 20px;
  padding: 34px 20px;
 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
 
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}
 
.stat-number {
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
}
 
.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-align: center;
}
 
.stats-footnote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: #666666;
  font-weight: 600;
  line-height: 1.6;
}
 
/* ---- Signature offline events ---- */
 
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
 
.event-highlight-card {
  background-color: white;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.event-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
 
.event-month {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--navy);
  background-color: #f3ede4;
  padding: 5px 11px;
  border-radius: 20px;
  margin-bottom: 12px;
}
 
.event-highlight-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
 
.event-highlight-card p {
  font-size: 13px;
  color: #555555;
  line-height: 1.55;
  margin-bottom: 14px;
}
 
.event-value {
  font-size: 12px;
  font-weight: 700;
  color: #a3792f;
  background-color: #fbf3e2;
  border-radius: 10px;
  padding: 10px 12px;
  line-height: 1.5;
}
 
.event-why-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid #eeeeee;
}
 
.event-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
 
.event-why-item strong {
  font-size: 15px;
  color: var(--navy);
  font-weight: 900;
}
 
.event-why-item span {
  font-size: 13px;
  color: #666666;
  font-weight: 600;
}
 
/* ---- Example exposure placement mockups ---- */
 
.placement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.placement-mock {
  aspect-ratio: 4 / 3;
  border: 2px dashed #c9c0ac;
  border-radius: 18px;
  background-color: #fbf9f4;
 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}
 
.placement-icon {
  font-size: 34px;
  opacity: 0.85;
}
 
.placement-tag {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  background-color: white;
  border: 1px solid #ded7c8;
  padding: 5px 12px;
  border-radius: 20px;
}
 
.placement-desc {
  font-size: 12.5px;
  color: #8a8272;
  font-weight: 600;
  line-height: 1.5;
}
 
/* ---- Marketing action plan ---- */
 
.action-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
 
.action-step-card {
  background-color: #fbf7f0;
  border-radius: 20px;
  padding: 30px 26px;
}
 
.action-step-num {
  display: inline-block;
  font-size: 15px;
  font-weight: 900;
  color: white;
  background-color: var(--navy);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  margin-bottom: 16px;
}
 
.action-step-card h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
 
.action-step-card > p {
  font-size: 13px;
  color: #555555;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.5;
}
 
.action-step-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.action-step-card li {
  font-size: 13px;
  color: #444444;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
 
.action-step-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
 
.deliverables-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
 
.deliverables-row span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background-color: white;
  border: 1.5px solid #ded7c8;
  padding: 9px 16px;
  border-radius: 20px;
}
 
/* ---- Sponsorship packages ---- */
 
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
 
.package-card {
  position: relative;
  background-color: white;
  border-radius: 22px;
  padding: 32px 26px;
  border: 2px solid #eeeeee;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
 
  display: flex;
  flex-direction: column;
}
 
.package-tier {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
 
.package-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
 
.package-condition {
  font-size: 12.5px;
  color: #777777;
  font-weight: 600;
  margin-bottom: 14px;
}
 
.package-tagline {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eeeeee;
}
 
.package-rewards {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.package-rewards li {
  font-size: 13.5px;
  color: #444444;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
 
.package-rewards li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 900;
}
 
.package-bronze .package-tier { color: #a3712f; }
.package-bronze .package-rewards li::before { color: #a3712f; }
 
.package-silver {
  border-color: #c9ccd1;
}
.package-silver .package-tier { color: #6a7178; }
.package-silver .package-rewards li::before { color: #6a7178; }
 
.package-gold {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffdf7, #ffffff);
  transform: scale(1.04);
  box-shadow: 0 12px 28px rgba(200, 163, 93, 0.28);
}
.package-gold .package-tier { color: var(--gold); }
.package-gold .package-rewards li::before { color: var(--gold); }
 
.package-badge {
  position: absolute;
  top: -14px;
  right: 26px;
  background-color: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
 
/* ---- Contact & partnership ---- */
 
.partnership-contact {
  padding: 30px 58px 70px 58px;
}
 
.contact-email-box {
  max-width: 780px;
  margin: 0 auto 40px auto;
 
  background-color: #fbf7f0;
  border: 1px solid #e8e1d3;
  border-radius: 20px;
  padding: 26px 30px;
}
 
.contact-email-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
 
.contact-email-header span {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}
 
.copy-template-btn {
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  border: none;
  background-color: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}
 
.copy-template-btn:hover {
  background-color: #0d3f7a;
}
 
.contact-email-body {
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  white-space: pre-line;
  background-color: white;
  border: 1px solid #e8e1d3;
  border-radius: 12px;
  padding: 20px 22px;
}
 
.contact-people {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
 
.person-card {
  width: 240px;
  background-color: white;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
 
.person-role {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
 
.person-name {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}
 
.person-email {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
}
 
/* ---- Partnership responsive ---- */
 
@media screen and (max-width: 1150px) {
  .stats-strip,
  .events-grid,
  .placement-grid,
  .action-steps,
  .package-grid {
    grid-template-columns: 1fr 1fr;
  }
 
  .package-gold {
    transform: none;
  }
}
 
@media screen and (max-width: 700px) {
  .stats-section,
  .partnership-contact {
    padding-left: 24px;
    padding-right: 24px;
  }
 
  .stats-strip,
  .events-grid,
  .placement-grid,
  .action-steps,
  .package-grid {
    grid-template-columns: 1fr;
  }
 
  .section-title {
    font-size: 22px;
  }
 
  .contact-email-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
 
  .copy-template-btn {
    width: 100%;
  }
}

/* =========================
   PARTNERSHIP SPACE FIX
========================= */

.partnership-page .roadmap-section {
  padding: 55px 58px 80px 58px !important;
}

.partnership-page .stats-section {
  padding: 80px 58px 80px 58px;
}

.partnership-page .placement-grid {
  margin-bottom: 0;
}

.partnership-page .action-steps,
.partnership-page .package-grid,
.partnership-page .events-grid {
  margin-bottom: 35px;
}

.partnership-page .partnership-contact {
  padding: 80px 58px 80px 58px;
}

 
/* =========================
   JOB POSTING PAGE
========================= */
 
.jobs-page .alumni-toolbar {
  padding-bottom: 0;
}

.jobs-page .filter-section {
  padding: 30px 58px 0;
}
 
.jobs-caution {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-size: 12.5px;
  color: #8a8272;
  font-weight: 600;
  line-height: 1.6;
  background-color: #fbf7f0;
  border: 1px solid #e8e1d3;
  border-radius: 12px;
  padding: 16px 22px;
}
 
/* ---- Category sections ---- */
 
.job-category-section {
  margin-bottom: 44px;
}
 
.job-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eeeeee;
}
 
.job-category-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
 
.job-category-header h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
}
 
.job-category-count {
  font-size: 13px;
  font-weight: 700;
  color: #999999;
  background-color: #f3ede4;
  padding: 4px 12px;
  border-radius: 20px;
}
 
/* ---- Job card grid ---- */
 
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.job-card {
  background-color: white;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  padding: 24px 24px 22px 24px;
 
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
 
.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
 
.job-company {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
}
 
.job-role {
  font-size: 16.5px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 14px;
  min-height: 46px;
}
 
.job-meta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
 
.job-meta-row span {
  font-size: 12.5px;
  color: #666666;
  font-weight: 600;
}
 
.job-note {
  font-size: 12px;
  color: #888888;
  line-height: 1.5;
  background-color: #fbf9f4;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  min-height: 40px;
}
 
.job-status-row {
  margin-bottom: 16px;
}
 
.job-status-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: #2e7d32;
  background-color: #eaf4ea;
  padding: 5px 12px;
  border-radius: 20px;
}
 
.job-deadline-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 20px;
  white-space: nowrap;
}
 
.job-deadline-badge.badge-open {
  background-color: #f3ede4;
  color: var(--navy);
}
 
.job-deadline-badge.badge-urgent {
  background-color: #fbe6e2;
  color: #c14a2f;
}
 
.job-deadline-badge.badge-closed {
  background-color: #eeeeee;
  color: #999999;
}
 
.job-deadline-badge.badge-neutral {
  background-color: #f3ede4;
  color: #8a8272;
}
 
.job-card .alumni-actions {
  margin-top: auto;
}
 
/* ---- Job posting responsive ---- */
 
@media screen and (max-width: 1150px) {
  .job-grid {
    grid-template-columns: 1fr 1fr;
  }
}
 
@media screen and (max-width: 700px) {
  .job-grid {
    grid-template-columns: 1fr;
  }
 
  .job-category-header h3 {
    font-size: 18px;
  }
}



/* =========================
   ALUMNI MEMBER-ONLY LOCK
========================= */
 
.alumni-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
 
  background: linear-gradient(155deg, #072d5c, #1c4a82);
 
  display: flex;
  align-items: center;
  justify-content: center;
 
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
 
.alumni-lock-overlay.unlocked {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
 
.lock-box {
  width: 92%;
  max-width: 420px;
 
  background-color: white;
  border-radius: 26px;
  padding: 44px 36px 36px 36px;
 
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
 
.lock-icon {
  font-size: 42px;
  margin-bottom: 14px;
}
 
.lock-title {
  font-size: 21px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
 
.lock-sub {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 26px;
}
 
.lock-input {
  width: 100%;
  height: 52px;
  border: 2px solid #ded7c8;
  border-radius: 12px;
  background-color: #fbf7f0;
 
  padding: 0 18px;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  text-align: center;
 
  margin-bottom: 14px;
  outline: none;
}
 
.lock-input:focus {
  border-color: var(--navy);
}
 
.lock-submit-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 12px;
  background-color: var(--navy);
  color: white;
 
  font-size: 15px;
  font-weight: 800;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
}
 
.lock-submit-btn:hover {
  background-color: #0d3f7a;
}
 
.lock-error {
  display: none;
  font-size: 13px;
  font-weight: 700;
  color: #c14a2f;
  margin-top: 14px;
}
 
.lock-error.show {
  display: block;
}
 
.lock-hint {
  font-size: 12px;
  color: #999999;
  font-weight: 600;
  margin-top: 22px;
  line-height: 1.6;
}
 
.lock-hint a {
  color: var(--navy);
  text-decoration: underline;
}
 
.lock-box.shake {
  animation: lockShake 0.4s ease;
}
 
@keyframes lockShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}
 
@media screen and (max-width: 500px) {
  .lock-box {
    padding: 36px 26px 28px 26px;
  }
}

/* =========================
   EXACT PARTNERSHIP SECTION FROM KOJOBS-ALUMNI-JOBS
========================= */
.partnership-page {
  --ink:#072D5C;
  --ink-soft:#3B536E;
  --paper:#FBF7F0;
  --beige:#F3EDE4;
  --card:#FFFFFF;
  --line:#E9E1D2;
  --gold:#C8A35D;
  --gold-soft:#F4E9D3;
  --green:#2F7A5D;
  --green-soft:#E3F1EA;
  --clay:#B5562C;
  --clay-soft:#F5E4DA;
  --radius:18px;
}

.partnership-page .container {
  max-width:1180px;
  margin:0 auto;
  padding:0 28px;
}

.partnership-page .eyebrow {
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.06em;
  color:var(--gold);
  text-transform:uppercase;
  margin-bottom:10px;
}

.partnership-page .eyebrow::before {
  content:"";
  width:16px;
  height:1.5px;
  background:var(--gold);
}

.partnership-page .job-logo,
.partnership-page .partner-logo-text {
  width:44px;
  height:44px;
  border-radius:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:14px;
  color:white;
  background:var(--ink);
}

.partnership-page .partner-logo-text {
  width:100%;
  height:100%;
  border-radius:7px;
}

/* ===== Partnership page ===== */
  .eyebrow.light{color:var(--gold);}
  .p-section-head{margin-bottom:26px;}
  .p-section-head.center{text-align:center;}
  .p-section-head h2{font-family:'Poppins','Pretendard',sans-serif;font-weight:800;font-size:27px;margin:6px 0 0;color:var(--ink);}
  .p-contact-copy h2{color:#fff;}

  .p-hero{
    position:relative;overflow:hidden;
    background:linear-gradient(160deg,#0E1830 0%, var(--ink) 45%, #26325A 100%);
    padding:88px 0 76px;color:#fff;
  }
  .p-hero-glow{
    position:absolute;top:-120px;right:-100px;width:420px;height:420px;border-radius:50%;
    background:radial-gradient(circle,rgba(184,145,47,0.32),transparent 70%);pointer-events:none;
  }
  .p-hero-inner{position:relative;z-index:1;}
  .p-hero-title{font-family:'Poppins','Pretendard',sans-serif;font-weight:800;font-size:44px;line-height:1.18;margin:14px 0 16px;letter-spacing:-.01em;}
  .p-hero-sub{font-size:15.5px;color:#C9D0E3;max-width:520px;line-height:1.7;margin:0 0 28px;}
  .p-hero-cta{
    display:inline-flex;align-items:center;gap:6px;background:var(--gold);color:#241C05;
    font-weight:700;font-size:14px;padding:13px 24px;border-radius:10px;
    transition:transform .15s, filter .15s;
  }
  .p-hero-cta:hover{transform:translateY(-2px);filter:brightness(1.05);}

  .p-stats {
  background: var(--paper);
  padding: 30px 0 0;
  padding-bottom: 35px;
  margin-top: 0;
  position: relative;
  z-index: 2;
  }
  .stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
  .stat-card{
    background:#fff;border:1px solid var(--line);border-radius:16px;
    padding:32px 20px;text-align:center;box-shadow:0 20px 40px -22px rgba(20,33,59,.28);
  }
  .stat-num{font-family:'Poppins','Pretendard',sans-serif;font-weight:800;font-size:40px;color:var(--ink);letter-spacing:-.01em;}
  .stat-num::after{content:attr(data-suffix);color:var(--gold);}
  .stat-label{font-size:13.5px;color:var(--ink-soft);font-weight:600;margin-top:6px;}

  /* Instagram performance strip */
  .ig-strip {
  margin-top: 40px;
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 26px;
  }
  .ig-strip-head{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:8px;margin-bottom:16px;}
  .ig-badge{
    display:inline-flex;align-items:center;gap:6px;font-size:12.5px;font-weight:700;color:var(--ink);
  }
  .ig-date{font-size:12px;color:var(--ink-soft);font-weight:500;}
  .ig-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
  .ig-item{text-align:center;}
  .ig-num{font-family:'Poppins','Pretendard',sans-serif;font-weight:800;font-size:24px;color:var(--ink);}
  .ig-label{font-size:12px;color:var(--ink-soft);font-weight:600;margin-top:3px;}

  /* Signature programs */
  .p-events{padding:78px 0 10px;}
  .p-section-sub{font-size:13.5px;color:var(--ink-soft);margin:8px 0 0;line-height:1.6;max-width:600px;}
  .p-section-sub.center{max-width:640px;margin-left:auto;margin-right:auto;}
  .event-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;}
  .event-card{
    background:var(--beige);border:1px solid var(--line);border-radius:14px;padding:22px 20px;
    transition:transform .15s, box-shadow .15s;
    flex:1 1 320px;max-width:352px;display:flex;flex-direction:column;
  }
  .event-card:hover{transform:translateY(-3px);box-shadow:0 16px 32px -18px rgba(20,33,59,.28);}
  .event-num{font-family:'Poppins','Pretendard',sans-serif;font-weight:800;font-size:13px;color:var(--gold);letter-spacing:.04em;}
  .event-card h3{font-size:14.5px;font-weight:700;color:var(--ink);margin:10px 0 8px;line-height:1.35;}
  .event-card p{font-size:12.5px;line-height:1.6;color:var(--ink-soft);margin:0;}
  .event-impact{margin-top:14px;padding-top:12px;border-top:1px solid var(--line);display:flex;flex-direction:column;gap:5px;}
  .event-impact-stat{font-family:'Poppins','Pretendard',sans-serif;font-weight:800;font-size:14px;color:var(--gold);letter-spacing:.01em;}
  .event-impact-tag{font-size:11px;font-weight:600;color:var(--ink-soft);}

  /* Direct contact info on contact section */
  .p-contact-direct{margin-top:26px;display:flex;flex-direction:column;gap:10px;}
  .p-contact-row{
    display:flex;align-items:center;gap:12px;font-size:13.5px;
    padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,0.14);
  }
  .p-contact-row span{color:#9FADC9;min-width:82px;font-weight:600;}
  .p-contact-row b{color:#fff;font-weight:700;}

  .p-benefits{padding:78px 0 10px;}
  .benefit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
  .benefit-card{
    background:#fff;border:1px solid var(--line);border-radius:14px;padding:24px 20px;
    transition:transform .15s, box-shadow .15s, border-color .15s;
  }
  .benefit-card:hover{transform:translateY(-3px);box-shadow:0 16px 32px -18px rgba(20,33,59,.28);border-color:#D8D2C2;}
  .benefit-icon{
    width:44px;height:44px;border-radius:11px;background:var(--gold-soft);color:#8A6A16;
    display:flex;align-items:center;justify-content:center;margin-bottom:14px;
  }
  .benefit-card h3{font-size:15.5px;font-weight:700;margin:0 0 8px;color:var(--ink);}
  .benefit-card p{font-size:13px;line-height:1.65;color:var(--ink-soft);margin:0;}

  /* Our Partners — reusable partner/sponsor card */
  .p-partners{padding:78px 0 10px;}
  .partner-grid{display:flex;flex-wrap:wrap;gap:16px;}
  .partner-subsection{margin-top:30px;}
  .partner-subsection:first-of-type{margin-top:26px;}
  .partner-sub-head{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
  .partner-sub-label{
    font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
    color:var(--ink-soft);white-space:nowrap;
  }
  .partner-sub-divider{flex:1;height:1px;background:var(--line);}
  .partner-card{
    background:#fff;border:1px solid var(--line);border-radius:16px;padding:24px 22px;
    display:flex;flex-direction:column;gap:12px;flex:1 1 300px;max-width:370px;
    transition:transform .15s, box-shadow .15s, border-color .15s;
  }
  .partner-card.is-sponsor{border-top:3px solid var(--gold);}
  .partner-card:hover{transform:translateY(-3px);box-shadow:0 16px 32px -18px rgba(20,33,59,.28);border-color:#D8D2C2;}
  .partner-logo-wrap{
    width:50px;height:50px;border-radius:11px;border:1px solid var(--line);background:#fff;
    display:flex;align-items:center;justify-content:center;padding:7px;flex-shrink:0;
  }
  .partner-logo-wrap img{width:100%;height:100%;object-fit:contain;border-radius:7px;}
  .partner-name{font-family:'Poppins','Pretendard',sans-serif;font-weight:700;font-size:15.5px;color:var(--ink);}
  .partner-badges{display:flex;flex-wrap:wrap;gap:6px;}
  .partner-badge{
    font-size:10px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
    padding:4px 9px;border-radius:999px;background:var(--gold-soft);color:#8A6A16;
  }
  .partner-desc{font-size:13px;line-height:1.65;color:var(--ink-soft);margin:0;flex:1;}
  .partner-cta{
    font-size:12.5px;font-weight:700;color:var(--ink);border-bottom:1.5px solid var(--gold);
    padding-bottom:2px;align-self:flex-start;
  }

  .p-logos{padding:78px 0;}
  .logo-wall{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(130px,1fr));gap:14px;
  }
  .logo-tile{
    background:#fff;border:1px solid var(--line);border-radius:12px;
    height:78px;display:flex;align-items:center;justify-content:center;
    filter:grayscale(1);opacity:.6;transition:filter .2s,opacity .2s,transform .2s,border-color .2s;
  }
  .logo-tile:hover{filter:grayscale(0);opacity:1;transform:translateY(-2px);border-color:#D8D2C2;}
  .logo-tile .job-logo{width:44px;height:44px;font-size:14px;}
  .logo-tile-img{max-width:70%;max-height:52px;width:auto;height:auto;object-fit:contain;}

  /* Partnership opportunities (compact) */
  .p-opportunities{padding:54px 0 10px;}
  .po-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:18px;}
  .po-pill{
    background:var(--card);border:1px solid var(--line);border-radius:12px;
    padding:16px 16px;text-align:center;transition:border-color .15s, transform .15s;
  }
  .po-pill:hover{border-color:#D8D2C2;transform:translateY(-2px);}
  .po-pill span{font-size:13px;font-weight:700;color:var(--ink);}
  .po-cta-row{margin-top:22px;text-align:center;}
  .po-cta-row a{
    display:inline-flex;align-items:center;gap:6px;background:var(--ink);color:#fff;
    font-weight:700;font-size:13.5px;padding:11px 22px;border-radius:10px;
    transition:filter .15s, transform .15s;
  }
  .po-cta-row a:hover{filter:brightness(1.15);transform:translateY(-1px);}
  @media (max-width:860px){
    .po-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:560px){
    .po-grid{grid-template-columns:1fr;}
  }

  .p-contact{
    position:relative;overflow:hidden;margin-top:20px;
    background:linear-gradient(160deg,#0E1830 0%, var(--ink) 55%, #26325A 100%);
    padding:78px 0 84px;color:#fff;
  }
  .p-contact-inner{position:relative;z-index:1;display:grid;grid-template-columns:0.85fr 1.15fr;gap:48px;align-items:start;}
  .p-contact-copy p{color:#C9D0E3;font-size:14px;line-height:1.7;max-width:340px;margin:10px 0 0;}
  .p-form{
    background:#fff;border-radius:18px;padding:28px;
    display:grid;grid-template-columns:1fr 1fr;gap:16px;
    box-shadow:0 30px 60px -20px rgba(0,0,0,.35);
  }
  .p-field{display:flex;flex-direction:column;gap:6px;}
  .p-field.span2{grid-column:1 / -1;}
  .p-field label{font-size:12.5px;font-weight:700;color:var(--ink-soft);}
  .p-field input, .p-field select, .p-field textarea{
    border:1.5px solid var(--line);border-radius:9px;padding:11px 13px;font-size:14px;
    font-family:inherit;color:var(--ink);outline:none;background:#FAF8F3;resize:vertical;
    transition:border-color .15s;
  }
  .p-field input:focus, .p-field select:focus, .p-field textarea:focus{border-color:var(--ink);}
  .p-submit{
    grid-column:1 / -1;border:none;border-radius:10px;padding:14px;
    background:var(--gold);color:#241C05;font-weight:700;font-size:14.5px;
    transition:filter .15s;
  }
  .p-submit:hover{filter:brightness(1.05);}
  .p-form-success{
    grid-column:1 / -1;display:none;font-size:13px;color:var(--green);font-weight:600;
    background:var(--green-soft);padding:10px 14px;border-radius:9px;margin:0;
  }
  .p-form-success.show{display:block;}

  .site-footer{
    background:var(--ink);color:#fff;text-align:center;padding:34px 20px 30px;
  }
  .site-footer p{margin:0 0 8px;font-size:13px;color:#B9C3D9;font-weight:500;}
  .site-footer p:last-child{margin-bottom:0;}
  .site-footer .foot-strong{color:#fff;font-weight:700;font-size:14.5px;}

  @media (max-width:920px){
    .benefit-grid{grid-template-columns:repeat(2,1fr);}
    .event-card{flex-basis:47%;}
    .ig-grid{grid-template-columns:repeat(2,1fr);}
    .p-contact-inner{grid-template-columns:1fr;}
    .p-hero-title{font-size:34px;}
  }
  @media (max-width:560px){
    .stat-grid{grid-template-columns:1fr;}
    .benefit-grid{grid-template-columns:1fr;}
    .event-card{flex-basis:100%;max-width:100%;}
    .ig-grid{grid-template-columns:repeat(2,1fr);}
    .ig-strip-head{flex-direction:column;align-items:flex-start;}
    .p-form{grid-template-columns:1fr;padding:22px;}
    .p-hero{padding:64px 0 60px;}
    .p-hero-title{font-size:28px;}
  }

  .partnership-page .p-stats .container {
  max-width: none;
  width: calc(100% - 56px);
  padding-left: 0;
  padding-right: 0;
  }

/* =========================
   SPONSOR IN BLUE BAR
========================= */

.browser-bar {
  position: relative;
  width: 100%;
  height: 52px;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.sponsor-top-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: white;
  white-space: nowrap;
  z-index: 10;
}

.sponsor-top-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  color: #c9d3ee;
}

.sponsor-top-dot {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.sponsor-top-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
  background-color: white;
}

.sponsor-top-name {
  font-size: 10px;
  font-weight: 900;
  color: white;
}

.sponsor-top-badge {
  font-size: 10px;
  font-weight: 900;
  color: #c8a35d;
  background-color: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 4px 14px;
}

/* Partnership Opportunities랑 footer 사이 공간 */
.p-opportunities {
  padding-bottom: 90px;
}

.sponsor-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sponsor-top-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
}

.sponsor-top-name {
  font-size: 12px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.sponsor-top-label {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
}

.sponsor-top-bar {
  gap: 13px;
}