:root {
  --color-primary: #00523c;
  --color-primary-light: #06c1ca;
  --color-accent: #ffbe17;
  --color-black: #0f0f0f;
  --color-dark: #111111;
  --color-text: #1d1d1d;
  --color-muted: #848484;
  --color-border: #dfdfdf;
  --color-bg-light: #f9f9f9;
  --color-bg-dark: #151515;

  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-width: 1280px;
  --container-padding-desktop: 100px;
  --container-padding-tablet: 40px;
  --container-padding-mobile: 20px;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-pill: 50px;

  --shadow-soft: 0 4px 4px rgba(121, 121, 121, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-desktop);
}

/* Header & Navigation */

.header {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 85px;
  background-color: #ffffff;
  z-index: 10;
}

.header .container {
  padding-inline: var(--container-padding-desktop);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.logo {
  width: 58.211px;
  height: 75.537px;
  flex-shrink: 0;
  position: relative;
}

.logo img {
  position: absolute;
  left: 6.05px;
  top: 7.76px;
  width: 46.244px;
  height: 60.007px;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 10px;
  color: #000000;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link.active {
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-primary);
  outline: none;
}

.btn {
  border-radius: var(--radius-md);
  border: none;
  background-color: var(--color-dark);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-primary);
  transform: translateY(-1px);
  outline: none;
}

.btn-register {
  width: 149px;
  height: 46px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
}

.btn-register:hover,
.btn-register:focus-visible {
  background-color: #003d2d;
  transform: translateY(-1px);
  outline: none;
}

.btn-hero {
  background-color: var(--color-primary);
  width: 168px;
}

.nav-toggle {
  display: none;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  position: absolute;
  right: var(--container-padding-desktop);
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */

.hero {
  position: relative;
  margin-top: 85px;
  min-height: 835px;
  background-color: var(--color-black);
  color: #ffffff;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  height: 640px;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: soft-light;
}

.top-banner {
  position: relative;
  z-index: 1;
  min-height: 50px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.top-banner .container {
  padding-inline: var(--container-padding-desktop);
  width: 100%;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.indicator-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #F00 0%, #800204 100%);
  flex-shrink: 0;
}

.banner-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.banner-item {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-body);
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
  gap: 12px;
}

.banner-item:first-child {
  padding-left: 10px;
  padding-right: 20px;
}

.banner-item:last-child {
  border-right: none;
  padding-right: 10px;
}

.banner-label {
  color: #ffffff;
}

.banner-date {
  color: var(--color-accent);
  font-weight: 500;
  white-space: nowrap;
}

.banner-item .highlight {
  color: var(--color-accent);
  font-weight: 500;
}

.banner-duration {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-body);
  line-height: 1.4;
  color: #ffffff;
  text-align: right;
  white-space: nowrap;
  gap: 2px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 149px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background-color: var(--color-primary-light);
  color: #111111;
  font-size: 18px;
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 500;
  line-height: 75px;
  letter-spacing: -1.28px;
  margin: 25px auto 24px;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  max-width: 713px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
}

.hackathon-banner {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  background: linear-gradient(to right, #2c2c2c 0%, #000000 48.5%, #2c2c2c 100%);
  box-shadow: var(--shadow-soft);
}

.hackathon-banner p {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.44px;
  padding: 10px 0;
}

.hero-footer {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.hero-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
}

.hero-date-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.hero-location-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: center;
}

/* About Section */

.about-section {
  padding: 80px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.about-content {
  flex: 1 1 0;
  min-width: 0;
}

.about-text {
  font-size: 20px;
  line-height: 35px;
  color: var(--color-text);
  margin-bottom: 32px;
  max-width: 755px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: -0.9px;
  color: #0a0a0a;
  margin-bottom: 32px;
}

.about-section .section-title {
  margin-bottom: 32px;
}

.apply-card {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
}

.apply-label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}

.date-circle {
  width: 104px;
  height: 104px;
  border-radius: 100px;
  background-color: var(--color-primary);
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.date-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
}

.date-month {
  font-size: 20px;
}

.apply-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-item {
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 8px;
  text-align: center;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item.highlight-box {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 0;
  border-bottom: none;
  margin-top: 16px;
  position: relative;
}

.flag-icons {
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}

.flag {
  width: 17px;
  height: 12px;
  display: inline-block;
  background-size: cover;
  background-position: center;
}

.flag-1 {
  left: 30px;
}

.flag-2 {
  left: 173px;
}

.detail-label {
  font-size: 16px;
}

.detail-value {
  font-size: 16px;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  row-gap: 20px;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card {
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.benefit-card p {
  margin: 0;
  text-align: left;
}

.benefit-card strong {
  font-weight: 700;
}

.benefit-develop {
  background-color: #d7fdff;
  grid-column: 1;
  grid-row: 1;
}

.benefit-unlock {
  background-color: #ffd6f1;
  grid-column: 3;
  grid-row: 1;
}

.benefit-connect {
  background-color: #fff1cd;
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  width: 100%;
}

/* Event Info Bar Section */

.event-info-section {
  padding: 0;
  width: 100%;
}

.event-info-bar {
  background-color: var(--color-primary);
  border-radius: 4px;
  padding: 16px;
  width: 100%;
}

.event-info-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--container-padding-desktop);
  max-width: var(--container-width);
  margin: 0 auto;
}

.info-item {
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  flex-shrink: 0;
}

.info-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.info-item span {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: normal;
  font-family: var(--font-body);
}

/* Timeline */

.timeline-section {
  padding: 40px 0 80px;
  background-color: #f0f0f0;
}

.timeline-section .section-title {
  margin-bottom: 40px;
}

#timeline-heading {
  margin-bottom: 40px;
}

.timeline-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1130px;
  margin: 0 auto;
  min-height: 200px;
  padding: 60px 0 0 0;
  margin-top: 0;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: #d8d8d8;
  z-index: 0;
}

.timeline-item {
  position: relative;
  width: 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-item-1 {
  order: 1;
}

.timeline-item-2 {
  order: 2;
}

.timeline-item-3 {
  order: 3;
}

.timeline-item-4 {
  order: 4;
}

.timeline-item-5 {
  order: 5;
}

.timeline-item-6 {
  order: 6;
}

.timeline-item-7 {
  order: 7;
}

.timeline-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  color: var(--color-text);
  margin: 0;
  width: 135px;
  position: absolute;
}

.timeline-item-1 .timeline-label,
.timeline-item-3 .timeline-label,
.timeline-item-5 .timeline-label,
.timeline-item-7 .timeline-label {
  bottom: calc(50% + 44.5px + 24px);
}

.timeline-item-2 .timeline-label,
.timeline-item-4 .timeline-label,
.timeline-item-6 .timeline-label {
  top: calc(50% + 44.5px + 24px);
}

.timeline-label p {
  margin: 0;
}

.timeline-label p:first-child {
  margin-bottom: 0;
}

.timeline-date {
  width: 89px;
  height: 89px;
  border-radius: 100px;
  background-color: var(--color-primary);
  border: 1px solid #d8d8d8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 24px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.timeline-item-5 .timeline-date,
.timeline-item-6 .timeline-date,
.timeline-item-7 .timeline-date {
  height: 88px;
  width: 88px;
}

.timeline-item-6 .timeline-label {
  top: calc(50% + 44px + 24px);
}

.timeline-date .date-number {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  height: 31px;
  line-height: 31px;
  text-align: center;
}

.timeline-date .date-month {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

/* Event Details / Tracks */

.event-details-section {
  padding: 80px 0;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.track-card {
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.track-cyber {
  background-color: #dcf9ff;
}

.track-sustainability {
  background-color: #fbe4ff;
}

.track-innovations {
  background-color: #dfe8ff;
}

.track-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.track-image {
  position: relative;
  height: 145px;
  background-color: #ebebeb;
  overflow: hidden;
}

.track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-badge {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.track-badge-1 {
  background-color: #b5f3ff;
}

.track-badge-2 {
  background-color: #ed84ff;
}

.track-badge-3 {
  background-color: #3f6ff0;
}

.track-title {
  position: absolute;
  left: 50%;
  top: 73px;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.48px;
  width: 100%;
  max-width: 316px;
}

.track-title.track-title-1 {
  font-size: 24px;
}

.track-title.track-title-2 {
  font-size: 22px;
  line-height: 26px;
}

.track-title.track-title-3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

.track-leader {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px dashed #ffffff;
  padding-bottom: 10px;
}

.track-leader img {
  width: 95px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.track-leader p {
  font-size: 15px;
  line-height: 19px;
  color: var(--color-text);
  letter-spacing: -0.3px;
  margin: 0;
}

.track-description {
  background-color: #ffffff;
  padding: 16px 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  margin: 0;
}

.track-mentors {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mentor-item {
  display: flex;
  gap: 18px;
}

.mentor-avatar {
  width: 68px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.mentor-avatar img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.mentor-badge {
  border-radius: 50px;
  border: 1px solid #ffffff;
  padding: 2px 10px;
  font-size: 14px;
}

.mentor-info {
  flex: 1 1 0;
}

.mentor-bio {
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.mentor-bio strong {
  font-weight: 600;
}

.read-more {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 500;
  color: #013124;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.read-more:hover,
.read-more:focus-visible {
  color: var(--color-primary);
  outline: none;
}

/* Mentor Modal Popup */
.mentor-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mentor-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.mentor-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.mentor-modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 32px;
  max-width: 850px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.mentor-modal[aria-hidden="false"] .mentor-modal-content {
  transform: scale(1);
}

.mentor-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #333;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mentor-modal-close:hover {
  color: #000;
}

.mentor-modal-close svg {
  width: 100%;
  height: 100%;
}

.mentor-modal-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.mentor-modal-image {
  width: 138px;
  height: 138px;
  flex-shrink: 0;
  background-color: #e4e4e4;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mentor-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-modal-info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mentor-modal-name {
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 600;
  line-height: 34px;
  color: #000000;
  margin: 0;
  white-space: pre-wrap;
}

.mentor-modal-company {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px dashed #9d9d9d;
  height: 90px;
}

.mentor-modal-company img {
  width: 110px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.mentor-modal-company p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #1d1d1d;
  letter-spacing: -0.36px;
  margin: 0;
  white-space: nowrap;
}

.mentor-modal-bio {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #000000;
  margin: 0;
  white-space: pre-wrap;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .mentor-modal-content {
    padding: 24px;
    width: 95%;
    max-height: 85vh;
  }

  .mentor-modal-header {
    flex-direction: column;
    gap: 16px;
  }

  .mentor-modal-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .mentor-modal-name {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }

  .mentor-modal-company {
    flex-direction: column;
    height: auto;
    padding-bottom: 16px;
    text-align: center;
  }

  .mentor-modal-company p {
    white-space: normal;
    font-size: 16px;
  }

  .mentor-modal-bio {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Partners Section */

.partners {
  padding: 80px 20px;
  background: linear-gradient(-45deg, #0a0a0a, #1a1a1a, #0f0f0f, #151515);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.03) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

.partners::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.06), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(255, 255, 255, 0.09), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(255, 255, 255, 0.07), transparent);
  background-size: 200% 200%;
  animation: sparkle 20s ease-in-out infinite;
  pointer-events: none;
}

.partners .container {
  position: relative;
  z-index: 1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0.5;
    background-position: 0% 0%;
  }

  50% {
    opacity: 1;
    background-position: 100% 100%;
  }
}

.partners h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* First row: 4 items, each spanning 3 columns (3×4 = 12) */
.partner-card:nth-child(1),
.partner-card:nth-child(2),
.partner-card:nth-child(3),
.partner-card:nth-child(4) {
  grid-column: span 3;
}

/* Second row: 3 items centered (1.5 gap + 3 items×3 columns + 1.5 gap = 12) */
.partner-card:nth-child(5) {
  grid-column: 2 / span 3;
}

.partner-card:nth-child(6) {
  grid-column: 5 / span 3;
}

.partner-card:nth-child(7) {
  grid-column: 8 / span 3;
}

/* Third row: 3 items centered */
.partner-card:nth-child(8) {
  grid-column: 2 / span 3;
}

.partner-card:nth-child(9) {
  grid-column: 5 / span 3;
}

.partner-card:nth-child(10) {
  grid-column: 8 / span 3;
}

.partner-card {
  background-color: transparent;
  /* Changed from #1a1a1a */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
  /* Mild border for all views */
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--color-primary);
  /* Optional: highlight on hover */
}

.partner-content {
  padding: 0;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  object-fit: contain;
}

.partner-content p {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Removed Colored bottom bars */
.partner-card::after {
  content: none;
}

.partner-support {
  margin-top: 40px;
  font-size: 16px;
  color: #ccc;
  font-style: italic;
}

/* CIC Section */

.cic-section {
  padding: 80px 0;
}

.cic-content {
  display: block;
}

.cic-main {
  max-width: 1086px;
}

.cic-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 32px;
  letter-spacing: -0.48px;
}

.cic-text {
  margin-bottom: 32px;
}

.cic-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cic-list li {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.36px;
  padding-left: 27px;
  position: relative;
}

.cic-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-text);
}

.cic-list li strong {
  font-weight: 600;
}

.cic-text p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin: 0;
}

.cic-value {
  margin-top: 32px;
}

.cic-value-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

/* CIC Global Graduate Programme */

.cic-programme-section {
  padding: 80px 0;
}

.programme-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1080px;
}

.programme-content {
  display: flex;
  gap: 141px;
  align-items: flex-start;
}

.programme-logos {
  display: flex;
  align-items: center;
  gap: 29px;
  flex-shrink: 0;
}

.programme-x {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.48px;
}

.programme-details {
  flex: 1 1 0;
  min-width: 0;
}

.programme-subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 32px;
}

.programme-details p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin-bottom: 24px;
}

.programme-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.programme-list li {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.36px;
  padding-left: 27px;
  position: relative;
}

.programme-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-text);
}

.programme-offers-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 32px 0 24px;
}

.programme-note {
  font-size: 16px;
  letter-spacing: -0.32px;
  margin-top: 24px;
}

/* Founding Partners */

.founding-partners-section {
  padding: 80px 0;
}

.founding-partners-grid {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: 1080px;
}

.founding-partner-item {
  display: grid;
  grid-template-columns: 184px 804px;
  gap: 52px;
  align-items: flex-start;
}

.founding-partner-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.founding-partner-content .founding-partner-badge {
  margin-bottom: 20px;
}

.founding-partner-badge {
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  margin-bottom: 20px;
  letter-spacing: -0.4px;
  display: inline-block;
  width: auto;
}

.founding-badge-1 {
  background-color: var(--color-primary-light);
  color: #ffffff;
}

.founding-badge-2 {
  background-color: var(--color-primary);
}

.founding-badge-3 {
  background-color: #043f84;
}

.founding-badge-4 {
  background-color: #3298cd;
}

.founding-partner-logo {
  width: 184px;
  height: 133px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.founding-partner-item:nth-child(1) .founding-partner-logo {
  background-color: #e8feff;
}

.founding-partner-item:nth-child(2) .founding-partner-logo,
.founding-partner-item:nth-child(3) .founding-partner-logo {
  background-color: #e4fff8;
}

.founding-partner-item:nth-child(4) .founding-partner-logo,
.founding-partner-item:nth-child(5) .founding-partner-logo {
  background-color: #cfeeff;
}

.founding-partner-item p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin: 0;
}

/* Global Experts Section */

.experts-section {
  padding: 80px 0;
}

.expert-track {
  margin-bottom: 75px;
}

.expert-track:last-child {
  margin-bottom: 0;
}

.track-label {
  border: 1px solid #dcdcdc;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
  display: inline-flex;
  margin-bottom: 36px;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
}

.expert-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.expert-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #e8e8e8;
}

.expert-info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.expert-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.expert-location {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
}

.expert-bio {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* FAQ Section */

.faqs {
  padding: 80px 0;
  background-color: white;
}

.faqs h2 {
  font-size: 36px;
  text-align: left;
  margin-bottom: 40px;
  color: #333;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #f5f5f5;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 25px;
  color: #333;
  user-select: none;
}

.faq-question:hover {
  background-color: #ebebeb;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 14px;
  color: #333;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 25px 20px 25px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  padding-bottom: 15px;
}

.footer {
  background-color: #ececec;
  margin-top: 40px;
}

.footer-top {
  padding: 12px 0;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-location,
.footer-date {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
}

.footer-main {
  background-color: #151515;
  color: #ffffff;
  padding: 75px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-col {
  flex: 1 1 0;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-logos {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-note {
  font-size: 12px;
  color: #ffffff;
}

.footer-contacts {
  display: flex;
  gap: 40px;
}

.footer-contact {
  flex: 1 1 0;
}

.contact-name {
  font-size: 14px;
}

.contact-role {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-info svg {
  flex-shrink: 0;
  color: #ffffff;
  opacity: 0.8;
}

.contact-info a {
  font-size: 14px;
  color: #ffffff;
}

.contact-info a:hover {
  color: var(--color-primary-light);
}

/* Responsive */

@media (max-width: 1024px) {
  .container {
    padding-inline: var(--container-padding-tablet);
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .partner-card:nth-child(n+1) {
    grid-column: auto !important;
  }

  .partner-content {
    padding: 0;
    min-height: 150px;
  }

  .partner-content img {
    max-width: 100px;
    max-height: 60px;
  }

  .partner-content p {
    font-size: 13px;
  }

  .tracks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .apply-card {
    max-width: 320px;
    margin-bottom: 32px;
  }

  .programme-content {
    flex-direction: column;
    gap: 32px;
  }

  .founding-partner-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .experts-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: var(--container-padding-tablet);
  }

  .header .container {
    padding-left: 20px;
    padding-right: var(--container-padding-tablet);
  }

  .banner-item {
    font-size: 16px;
    padding: 6px 0;
  }

  .banner-item:first-child {
    padding-left: 10px;
  }

  .banner-item:last-child {
    padding-right: 10px;
  }

  .banner-label {
    display: block;
  }

  .banner-date {
    display: block;
  }

  .banner-duration {
    font-size: 16px;
    gap: 2px;
  }

  .nav {
    justify-content: flex-start;
  }

  .logo {
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
  }

  .nav-right {
    position: fixed;
    inset-inline: 0;
    top: 85px;
    height: calc(100vh - 85px);
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--container-padding-tablet);
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    z-index: 100;
    gap: 24px;
  }

  .nav-right.active {
    transform: translateX(0);
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 0;
  }

  .nav-toggle {
    display: flex;
    right: var(--container-padding-tablet);
  }

  .btn-register {
    width: 100%;
    max-width: 200px;
    display: block;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-date {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-date-text {
    font-size: 20px;
    width: 100%;
    order: 2;
  }

  .square-bracket {
    font-size: 20px;
  }

  .bracket-left {
    order: 1;
  }

  .bracket-right {
    order: 3;
  }

  .about-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about-sidebar {
    width: 100%;
  }

  .apply-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .about-text {
    max-width: 100%;
  }

  .benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefit-develop,
  .benefit-unlock,
  .benefit-connect {
    grid-column: 1;
    width: 100%;
  }

  .event-info-bar .container {
    flex-direction: column;
    gap: 12px;
    padding-inline: var(--container-padding-tablet);
  }

  .info-item {
    width: 100%;
  }

  .tracks-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .partner-card:nth-child(n+1) {
    grid-column: auto !important;
  }

  .partner-content {
    padding: 0;
    min-height: 150px;
  }

  .partner-content img {
    max-width: 100px;
    max-height: 60px;
  }

  .partner-content p {
    font-size: 13px;
  }

  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 24px;
  }

  .expert-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .expert-header {
    flex-direction: column;
    gap: 8px;
  }

  .programme-logos {
    justify-content: center;
  }

  .founding-partner-item {
    text-align: center;
  }

  .founding-partner-logo {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--container-padding-mobile);
  }

  .header .container {
    padding-left: 20px;
    padding-right: var(--container-padding-mobile);
  }

  .nav-toggle {
    right: var(--container-padding-mobile);
  }

  .top-banner {
    padding: 12px 0;
    min-height: auto;
    height: auto;
  }

  /* Make top banner content almost full-width on mobile */
  .top-banner .container {
    padding-inline: 0;
  }

  .banner-content {
    padding: 0 10px;
  }

  .banner-content {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  /* Use a 2‑column grid: dot in col 1, all text in col 2 */
  .banner-left {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    align-items: flex-start;
  }

  .indicator-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(180deg, #F00 0%, #800204 100%);
    margin-top: 4px;
    grid-row: 1 / span 3;
    /* sit beside all three lines */
  }

  .banner-items {
    grid-column: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .banner-item {
    font-size: 16px;
    padding: 0;
    /* ensures all three lines start at the same x-position */
    white-space: normal;
    width: 100%;
    text-align: left;
  }

  /* Remove desktop left/right padding on the first item so all lines align */
  .banner-item:first-child {
    padding-left: 0;
    padding-right: 0;
  }

  .banner-label {
    display: inline;
    width: auto;
  }

  .banner-date {
    display: inline;
  }

  .banner-duration {
    font-size: 16px;
    width: 100%;
    line-height: 1.3;
    text-align: left;
    gap: 2px;
    margin-top: 6px;
    padding-top: 8px;
    padding-left: 20px;
    /* align with text column (dot width + gap) */
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.72px;
  }

  .hero-badge {
    font-size: 16px;
    padding: 10px 12px;
  }

  .hero-date-text {
    font-size: 18px;
  }

  .square-bracket {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .partner-card:nth-child(n+1) {
    grid-column: auto !important;
  }

  .partner-content {
    padding: 16px 10px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .partner-content img {
    width: 100%;
    max-width: 100%;
    /* Ensure full width as requested */
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 24px;
  }

  .partner-content p {
    font-size: 12px;
    line-height: 1.2;
  }

  .timeline-container {
    flex-direction: column;
    align-items: center;
    /* Center items relative to container */
    padding: 40px 0;
    position: relative;
    /* Context for absolute line */
    min-height: auto;
    gap: 0;
    /* Let items handle spacing if needed, or set gap */
  }

  /* Show and position the connecting line */
  .timeline-line {
    display: block;
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    z-index: 0;
  }

  .timeline-item {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content relative to the line */
    gap: 20px;
    z-index: 1;
    margin-bottom: 30px;
    /* Spacing between events */
  }

  /* Specific handling for alternating items */
  /* Items 1, 3, 5, 7 have Label then Date */
  .timeline-item-1,
  .timeline-item-3,
  .timeline-item-5,
  .timeline-item-7 {
    flex-direction: row;
  }

  .timeline-item-1 .timeline-label,
  .timeline-item-3 .timeline-label,
  .timeline-item-5 .timeline-label,
  .timeline-item-7 .timeline-label {
    text-align: right;
    width: 40%;
    /* Defined width to push against center */
  }

  /* Items 2, 4, 6 have Date then Label */
  .timeline-item-2,
  .timeline-item-4,
  .timeline-item-6 {
    flex-direction: row;
  }

  .timeline-item-2 .timeline-label,
  .timeline-item-4 .timeline-label,
  .timeline-item-6 .timeline-label {
    text-align: left;
    width: 40%;
  }

  /* Ensure items are positioned absolutely? No, simpler to just stack them */
  /* Remove any conflicting positioning if present */

  /* Ensure date circles stay circular and don't shrink */
  .timeline-date {
    flex-shrink: 0;
    position: static;
    /* Override absolute positioning from desktop if any */
    transform: none;
    margin: 0;
  }

  /* Adjust labels for mobile readability */
  .timeline-label {
    position: static;
    /* Reset absolute positioning */
    width: 40%;
    font-size: 14px;
    bottom: auto;
    /* Reset */
  }

  /* CIC Section */
  .cic-section,
  .cic-programme-section {
    padding: 40px 0;
  }

  .programme-content {
    flex-direction: column;
    gap: 32px;
  }

  .programme-logos {
    justify-content: center;
    width: 100%;
  }

  .programme-details {
    width: 100%;
  }

  .cic-list li,
  .programme-list li {
    font-size: 16px;
    line-height: 24px;
    padding-left: 20px;
  }

  .programme-subtitle,
  .cic-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .programme-details p,
  .cic-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .track-title {
    font-size: 20px;
  }

  .expert-photo {
    width: 120px;
    height: 120px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 18px 20px;
    font-size: 14px;
  }

  .event-info-bar {
    padding: 12px;
  }

  .event-info-bar .container {
    flex-direction: column;
    gap: 10px;
    padding-inline: var(--container-padding-mobile);
  }

  .info-item {
    padding: 8px 12px;
    width: 100%;
  }

  .info-item span {
    font-size: 14px;
  }

  /* Founding Partners */
  .founding-partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    grid-template-columns: 1fr;
    /* Reset grid */
  }

  .founding-partner-logo {
    margin: 0 auto;
    width: auto;
    height: auto;
  }

  .founding-partner-badge {
    display: inline-block;
    width: 100%;
    text-align: center;
    white-space: normal;
    height: auto;
  }

  /* Global Experts */
  .experts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expert-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .expert-photo {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    /* Rectangle with slight rounding */
    object-fit: cover;
  }

  .expert-info {
    width: 100%;
    align-items: center;
  }

  .expert-header {
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }

  .track-label {
    white-space: normal;
    text-align: center;
    width: 100%;
    display: inline-block;
  }

  /* In Collaboration (Footer) */
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 32px;
  }

  .footer-logos {
    flex-direction: row;
    /* Keep logos side-by-side or adjust if needed, mostly fine */
    justify-content: flex-start;
    align-items: center;
  }

  .contact-info {
    flex-wrap: wrap;
    /* Handle long emails */
  }

  /* Adjust footer padding if needed */
  .footer-main {
    padding: 40px 0;
  }

  /* Hero Content */
  .hero-content {
    padding-top: 100px;
    text-align: center;
  }

  .hero-badge {
    width: 100%;
    border-radius: 50vw;
    /* Pill shape for full width */
    font-size: 14px;
    padding: 16px 12px;
    margin-bottom: 24px;
    white-space: normal;
    text-align: center;
    background-color: var(--color-primary-light);
    /* Teal */
    display: inline-block;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  /* Underline effect for '2026' */
  .hero-title span:last-child {
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
  }

  .hero-title span:last-child::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 10%;
    width: 80%;
    height: 4px;
    background-color: var(--color-primary);
    /* Green brush stroke */
    border-radius: 2px;
    opacity: 0.8;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .btn-hero {
    width: 100%;
    margin-top: 24px;
  }

  /* Hero Footer (Date/Location) */
  .hero-date {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 4px;
  }

  .hero-date-text {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 4px;
    text-align: center;
    order: 1;
  }

  .hero-location-text {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    order: 2;
    margin-bottom: 24px;
  }
}