/* =================================================================
   Nach Siyum 2026 Stylesheet
   Consolidated styles for all sections
   ================================================================= */
.nyTemplate26 {
    font-family: "Kumbh Sans", sans-serif;
  }
  .nyTemplate26 h1 {
    letter-spacing: 1px;
  }

/* =================================================================
   MENU SECTION
   ================================================================= */
.ny26-menu {
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.ny26-logo {
  width: 151px;
}

.ny26-menu .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  position: relative;
}

.ny26-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.ny26-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #4C93A4;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.ny26-hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.ny26-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.ny26-hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

.ny26-tab-bar {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ny26-tab-bar > a,
.ny26-tab-bar > div {
  position: relative;
  padding: 10px 20px;
  text-decoration: none;
  color: #4C93A4;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
  border-radius: 8px;
}

.ny26-tab-bar > a:hover {
  background: #dddede;
  color: #68d0d9;
}

.ny26-tab-bar > div:hover {
  background: #4C93A4;
  color: white;
}

.ny26-tab-bar > div svg {
  transition: transform 0.3s;
}

.ny26-tab-bar > div:hover svg path {
  fill: white;
}

.ny26-tab-bar > div:hover svg {
  transform: rotate(180deg);
}

.ny26-tab-bar .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  border-radius: 8px;
  min-width: 220px;
  padding: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0;
  overflow: hidden;
}

.ny26-tab-bar > div:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  max-height: 500px;
  padding: 8px 0;
}

.ny26-tab-bar .dropdown a {
  display: block;
  padding: 12px 20px;
  color: #333 !important;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  font-weight: 500;
  font-size: 14px;
  background: transparent !important;
  border-radius: 0 !important;
}

.ny26-tab-bar .dropdown a:hover {
  background: #dddede54 !important;
}

.btn--inverted {
  border: 1px solid #4C93A4;
  background: transparent;
}

.btn--inverted:hover {
  background: #dddede;
  color: #68d0d9;
}

@media (max-width: 768px) {
  .ny26-menu .container {
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .ny26-hamburger {
    display: flex;
  }

  .ny26-tab-bar {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    order: 3;
  }

  .ny26-tab-bar.is-open {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
  }

  .ny26-tab-bar > a,
  .ny26-tab-bar > div {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ny26-tab-bar > div {
    flex-direction: column;
  }

  .ny26-tab-bar .dropdown {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .ny26-tab-bar > div:hover .dropdown {
    transform: translateY(0);
    margin-top: 8px;
  }
}

/* =================================================================
   INTRO SECTION
   ================================================================= */
.ny26-intro {
  background: #5AB6BE;
  padding: 80px 0 220px;
  z-index: 1;
  position: relative;
}

.ny26-intro-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.ny26-content-left {
  flex: 1;
  max-width: 633px;
}

.ny26-title-container h2 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16px;
  line-height: 24px;
  color: #322A4C;
  margin-bottom: 16px;
}

.ny26-title-container h1 {
  font-size: 56px;
  font-style: normal;
  line-height: 1.2 !important;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 30px;
  letter-spacing: 0;
  color: black;
}

.ny26-description-container {
  color: #333;
  line-height: 1.6;
}

.ny26-description-container p {
  margin-bottom: 1rem;
  font-size: 20px;
  line-height: 1.4;
}

.ny26-video-container {
  flex: 1;
  position: relative;
  max-width: 647px;
}

.ny26-video {
  width: 100%;
  height: 350px;
  background: #463B6C;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 8px solid #463B6C;
  box-shadow: 0 22px 43px -12px rgba(8, 51, 61, 0.20);
}

.ny26-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

@media (max-width: 1200px) {
  .ny26-intro-container {
    padding: 0 60px;
    gap: 3rem;
  }

  .buttons {
    width: calc(100% - 120px);
    padding: 32px 40px;
  }

  .buttons a {
    font-size: 20px;
    padding: 28px 20px;
  }

  .buttons small {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .ny26-intro-container {
    flex-direction: column;
    padding: 0 40px;
    gap: 2.5rem;
  }

  .ny26-content-left,
  .ny26-video-container {
    max-width: 100%;
    width: 100%;
  }

  .ny26-title-container h1 {
    font-size: 44px;
    line-height: 50px;
  }

  .ny26-description-container p {
    font-size: 18px;
  }

  .buttons {
    width: calc(100% - 80px);
    padding: 28px 32px;
    gap: 20px;
    border-radius: 40px;
  }

  .buttons a {
    font-size: 18px;
    padding: 24px 16px;
  }
}

@media (max-width: 768px) {
  .ny26-intro {
    padding: 60px 0 120px;
  }

  .ny26-intro-container {
    padding: 0 20px;
    gap: 2rem;
  }

  .ny26-title-container h2 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }

  .ny26-title-container h1 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
  }

  .ny26-description-container p {
    font-size: 16px;
    line-height: 1.5;
  }

  .ny26-video {
    height: 250px;
  }

  .buttons {
    flex-direction: column;
    width: calc(100% - 40px);
    padding: 24px;
    gap: 16px;
    border-radius: 30px;
    bottom: -40px;
  }

  .buttons a {
    font-size: 18px;
    padding: 24px 20px;
  }

  .buttons small {
    font-size: 14px;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .ny26-intro {
    padding: 40px 0 120px;
  }

  .ny26-title-container h1 {
    font-size: 28px;
    line-height: 34px;
  }

  .ny26-description-container p {
    font-size: 15px;
  }

  .ny26-video {
    height: 200px;
  }

  .buttons {
    width: calc(100% - 24px);
    padding: 20px 16px;
    gap: 12px;
    border-radius: 24px;
  }

  .buttons a {
    font-size: 16px;
    padding: 20px 16px;
  }

  .buttons small {
    font-size: 13px;
  }
}

/* =================================================================
   BE PART SECTION
   ================================================================= */
.ny26-bepart {
  background: #463B6C;
  padding: 0px 80px 80px;
  margin-top: -70px;
  border-radius: 80px;
  position: relative;
  z-index: 1;
}

.ny26-bepart-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.ny26-bepart-title {
  text-align: center;
  margin-bottom: 69px;
}

.ny26-bepart-title h2 {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.ny26-bepart-description {
  font-size: 18px;
  color: #fff;
  max-width: 1280px;
  margin: 0 auto 80px;
}

.ny26-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.ny26-link-card {
  background: #BFE1E6;
  border: 1px solid #F2DBC4;
  border-radius: 20px;
  padding: 0 28px 18px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  color: #25404B;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.ny26-link-card.nach {
  border-color: #D2CFE7;
  background: #D2CFE7;
}

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

.ny26-link-card .badge {
  top: -16px;
  margin: 0 auto;
  background: #BFE1E6;
  position: relative;
  padding: 8px 12px;
  border-radius: 100px;
  font-size: 12px;
  color: #25404B;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #5AB6BE;
  display: inline-block;
}

.ny26-link-card img {
  width: 105px;
  opacity: .5;
  margin: 10px auto 30px;
}

.ny26-link-card.nach img {
  width: 70px;
  opacity: 0.8;
  margin-top: -5px;
  margin-bottom: 14px;
}

.ny26-link-card.nach .badge {
  background: #D2CFE7;
  border-color: #A998E4;
}

.ny26-link-card h3 {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
  color: #000;
  margin-bottom: .8rem;
  text-align: left;
}

.ny26-link-card p {
  font-size: 16px;
  color: #25404B;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 10px;
}

.ny26-link-card .btn {
  background: #463B6C;
  border-radius: 8px;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  text-transform: capitalize;
  display: block;
  margin-top: auto;
}

.ny26-link-card .btn:hover {
  background: #392d61;
}

.ny26-local-siyumim img {
  margin-left: -32px;
  font-size: 0;
  margin-bottom: -39px;
  margin-top: -59px;
  max-width: 550px;
  margin-right: 40px;
}

.ny26-local-siyumim {
  border-radius: 20px;
  margin-top: 100px;
  padding: 32px;
  border: 1px solid #D2CFE7;
  display: flex;
}

.ny26-local-siyumim h3 {
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 1.5rem;
}

.ny26-local-siyumim p {
  font-size: 16px;
  color: #FFF;
  margin-bottom: 2rem;
}

.ny26-buttons-container {
  display: flex;
  gap: 1rem;
}

.ny26-buttons-container a.btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
  color: #463B6C;
  text-transform: capitalize;
}

.ny26-buttons-container a.btn:hover {
  background: #ffffffd1;
}

.ny26-buttons-container a.btn.btn--inverted {
  border-color: white;
  background: transparent;
  color: white;
}

.ny26-buttons-container a.btn.btn--inverted:hover {
  background: #ffffff33;
}

.ny26-more {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 16px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  color: white;
  font-size: 14px;
}

.ny26-ping {
  width: 24px;
  height: 24px;
  background-image: url('https://res.cloudinary.com/orthodox-union/image/upload/v1767524039/ou-woman/syium2026/mark.png');
  background-size: 24px 24px;
  background-repeat: no-repeat;
}

.ny26-location-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ny26-location-buttons a {
  padding: 8px 32px;
  background: transparent;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 14px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.3s;
}

.ny26-location-buttons a:hover {
  background: #ffffff33;
}

.ny26-view-all {
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.buttons {
  background: white;
  max-width: 1100px;
  width: calc(100% - 160px);
  margin: 0 auto;
  padding: 20px 28px;
  border-radius: 60px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  top: -60px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.buttons a {
  padding: 12px 14px;
  color: #463B6C;
  border-radius: 20px;
  border: 1px solid #463B6C;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  display: block;
  flex: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.buttons a:first-child {
  background: #463B6C;
  color: white;
}

.buttons a:hover {
  background: #D2CFE7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(70, 59, 108, 0.2);
}

.buttons a:first-child:hover {
  background: #675998;
}

.buttons small {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  display: block;
  margin-top: 8px;
}

@media (max-width: 1200px) {
  .ny26-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ny26-local-siyumim {
    flex-direction: column;
  }

  .ny26-local-siyumim .left {
    display: none;
  }

  .ny26-bepart {
    padding: 80px 0;
  }

  .buttons {
    width: calc(100% - 40px);
  }

  .ny26-bepart-container {
    padding: 0 20px;
  }

  .ny26-cards-container {
    grid-template-columns: 1fr;
  }

  .ny26-bepart-title h2 {
    font-size: 32px;
  }

  .ny26-buttons-container {
    flex-direction: column;
  }

  .ny26-more {
    flex-direction: column;
    align-items: flex-start;
  }

  .ny26-location-buttons {
    width: 100%;
  }
}

/* =================================================================
   WHAT IS SECTION
   ================================================================= */
.ny26-whatis {
  background: #5AB6BE;
  padding: 150px 0 80px;
  margin-top: -70px;
  z-index: 0;
  position: relative;
}

.ny26-whatis-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.ny26-whatis-container h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 48px;
}

.ny26-whatis-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 80px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
}

.ny26-whatis-image {
  width: 262px;
  height: 300px;
  border-radius: 20px;
  flex-shrink: 0;
}

.ny26-whatis-image.right {
  width: 340px;
  height: 300px;
  font-size: 0;
  border-radius: 20px;
}

.ny26-whatis-text {
  flex: 1;
  max-width: 566px;
  margin: 24px auto;
  font-size: 16px;
  color: #000;
}

.ny26-whatis-text p:first-child {
  margin-bottom: 1rem;
}

.ny26-testimonials-container {
  margin-top: 80px;
}

.ny26-testimonials-container h3,
.more-title {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 0px;
  text-transform: initial;
}

.ny26-testimonials-list {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  padding: 0px 0 20px;
  font-size: 16px;
}

.ny26-testimonials-list .swiper {
  overflow: visible;
  padding: 10px 0 40px;
}

.ny26-testimonials-list .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.ny26-testimonials-list .swiper-slide {
  opacity: 0.5;
  filter: blur(3px);
}

.ny26-testimonials-list .swiper-slide-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1.4);
  font-size: 12px;
  width: 700px;
  box-shadow: 0 -2px 20px -2px rgba(30, 80, 180, 0.10), 0 2px 8px -2px rgba(30, 80, 180, 0.20);
}

.ny26-testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 60px 48px 48px;
  height: auto;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.ny26-testimonial::before {
  content: '';
  background-image: url('https://res.cloudinary.com/orthodox-union/image/upload/v1767524040/ou-woman/syium2026/quotes.png');
  position: absolute;
  top: 40px;
  width: 28px;
  height: 19px;
  left: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateX(-50%);
}

.ny26-testimonial::after {
  content: '';
  position: absolute;
  background-image: url(https://res.cloudinary.com/orthodox-union/image/upload/v1767523984/ou-woman/syium2026/book_light.png);
  bottom: 10px;
  left: 50%;
  width: 160px;
  height: 54px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: -80px;
}

.more-title {
  margin-top: 40px;
  font-size: 22px;
}

.ny26-testimonial p {
  color: #25404B;
  line-height: 1.4;
  margin-top: 20px;
  font-weight: 400;
  text-align: center;
  font-style: italic;
}

.ny26-testimonials-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: -40px;
  z-index: 10;
  position: relative;
  max-width: 620px;
  margin: 0px auto;
  bottom: -155px;
}

.ny26-testimonials-navigation button {
  width: 52px;
  height: 52px;
  background: #5AB6BE;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 20px;
  color: white;
  padding: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  padding-bottom: 4px;
  font-size: 22px !important;
}

.ny26-testimonials-navigation button:hover {
  background: #3f9ca4;
}

.ny26-testimonials-navigation button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.swiper-pagination {
  display: none;
}

.swiper-pagination-bullet {
  display: none;
}

.swiper-pagination-bullet-active {
  display: none;
}

.ny26-more-testimonials-section {
  max-width: 722px;
  margin: 60px auto 0;
}

.ny26-divider {
  height: 1px;
  background: #E5E5E5;
  margin-bottom: 32px;
}

.ny26-more-testimonials-list {
  text-align: center;
}

.ny26-more--white {
  background: #fff;
  max-width: 800px;
  margin: auto;
}

.ny26-more--white .ny26-location-buttons a {
  background: #463B6C;
}

.ny26-more--white .ny26-view-all {
  color: #463B6C;
}

@media (max-width: 1024px) {
  .ny26-whatis-content {
    flex-direction: column;
  }

  .ny26-testimonial {
    padding: 40px;
  }

  .ny26-testimonial::before {
    font-size: 60px;
    top: 20px;
  }

  .ny26-testimonial p {
    font-size: 16px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .ny26-testimonials-list .swiper-slide-active {
    transform: scale(1);
    width: 100%;
  }

  .ny26-testimonials-navigation {
    bottom: -225px;
  }

  .ny26-whatis-image {
    display: none;
  }

  .ny26-whatis {
    padding: 60px 0;
  }

  .ny26-whatis-container {
    padding: 40px 20px;
  }

  .ny26-whatis-content {
    background: none;
  }

  .ny26-whatis-title h2 {
    font-size: 32px;
  }

  .ny26-whatis-image,
  .ny26-whatis-image-right {
    width: 100%;
    max-width: 340px;
  }
}

/* =================================================================
   EDUCATORS SECTION
   ================================================================= */
.ny26-educators {
  background: #D2CFE7;
  padding: 88px 0 20px;
  overflow: hidden;
}

.ny26-educators-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0A131C;
  text-align: center;
  margin-bottom: 40px;
}

.ny26-educators-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ny26-curve-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.ny26-curve-overlay.top {
  top: -1px;
}

.ny26-curve-overlay.bottom {
  bottom: -1px;
}

.ny26-educators-slider .swiper {
  width: 100%;
}

.ny26-educators-slider .swiper-wrapper {
  display: flex;
}

.ny26-educators-slider .swiper-slide {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.educator-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 0px;
  position: relative;
  cursor: pointer;
  background: #000;
}

.educator-slide img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.educator-slide:hover img {
  opacity: 0.6;
}

.educator-slide span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px;
}

.educator-slide:hover span {
  opacity: 1;
}

@media (max-width: 768px) {
  .educator-slide img {
    width: 150px;
    height: 150px;
  }

  .educator-slide span {
    font-size: 16px;
  }
}

/* =================================================================
   SPONSORS SECTION
   ================================================================= */
.ny26-sponsors {
  background: #D2CFE7;
  padding: 42px 0 72px;
}

.ny26-sponsors-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.ny26-sponsors-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0A131C;
  text-align: center;
  margin-bottom: 20px;
}

.ny26-sponsors-grid {
  display: flex;
  margin-bottom: 28px;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ny26-sponsor-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 18px 16px;
  border-radius: 12px;
  border: 1px solid #C0B3ED;
  background: rgba(169, 152, 228, 0.32);
  color: #1F262E;
  font-size: 14px;
  font-weight: 700;
}

.ny26-sponsor-book {
  width: 45px;
  height: 16px;
  background-image: url('https://res.cloudinary.com/orthodox-union/image/upload/v1767523984/ou-woman/syium2026/book_purple.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ny26-sponsor-cta {
  text-align: center;
  margin-top: 2rem;
}

.ny26-sponsor-cta a {
  padding: 16px 48px;
  background: #463B6C;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.3s;
  line-height: 1;
}

.ny26-sponsor-cta a:hover {
  background: #3c2e6c;
}

@media (max-width: 1200px) {
  .ny26-sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ny26-sponsors {
    padding: 60px 0;
  }

  .ny26-sponsors-container {
    padding: 0 20px;
  }

  .ny26-sponsors-title h2 {
    font-size: 28px;
  }

  .ny26-sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ny26-sponsor-item {
    padding: 20px 12px;
  }
}

@media (max-width: 480px) {
  .ny26-sponsors-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   JOURNAL SECTION
   ================================================================= */
.ny26-journal {
  background: #D2CFE7;
  padding: 0px 0 56px;
}

.ny26-journal-content {
  gap: 4rem;
  padding: 56px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  color: white;
  font-size: 36px;
  font-weight: 700;
  border-radius: 20px;
  background: #635398;
  max-width: 1200px;
  margin: auto;
}

.ny26-journal-text {
  flex: 1;
  text-align: center;
}

.ny26-journal-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .4;
  gap: 20px;
}

.ny26-journal-image img {
  width: 150px;
}


@media (max-width: 768px) {
  .ny26-journal {
    padding: 40px 0;
  }

  .ny26-journal-container {
    padding: 0 20px;
  }
}

/* =================================================================
   COUNTDOWN SECTION
   ================================================================= */
.ny26-countdown {
  background: #D2CFE7;
  padding: 0 80px;
}

.ny26-countdown-section {
  background: #463B6C;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: auto;
}

.ny26-countdown-content {
  flex: 1;
  padding: 56px 30px 56px 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ny26-countdown-title h2 {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: #FFFFFF;
  text-align: left;
  margin: 0;
}

.ny26-countdown-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ny26-countdown-timer {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ny26-countdown-unit {
  background: #FFFFFF;
  border: 1px solid #D2CFE7;
  border-radius: 20px;
  width: 125px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 22px 22px;
}

.ny26-countdown-value {
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: #B553D6;
  background-image: linear-gradient(180deg, #B553D6 0%, #572B66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.ny26-countdown-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 22.531px;
  color: #1F262E;
  text-transform: uppercase;
}

.ny26-countdown-divider {
  width: 8px;
  height: 60px;
  flex-shrink: 0;
}

.ny26-countdown-divider img {
  width: 100%;
  height: 100%;
  display: block;
}

.ny26-countdown-description {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 20px;
  line-height: 1.4;
  color: #FFFFFF;
}

.ny26-countdown-description p {
  margin: 0;
}

.ny26-countdown-cta {
  display: inline-flex;
  align-self: flex-start;
}

.ny26-countdown-cta button {
  background: #FFFFFF;
  color: #463B6C;
  padding: 12px 20px;
  height: 48px;
  border: none;
  border-radius: 8px;
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s;
}

.ny26-countdown-cta button:hover {
  background: #E5E5E5;
}

.ny26-countdown-image {
  position: relative;
  align-self: stretch;
  aspect-ratio: 442/516;
}

.ny26-countdown-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1024px) {
  .ny26-countdown {
    padding: 0 40px;
  }

  .ny26-countdown-section {
    flex-direction: column;
  }

  .ny26-countdown-content {
    padding: 40px;
  }

  .ny26-countdown-image {
    height: 300px;
    aspect-ratio: auto;
  }
}

@media (max-width: 768px) {
  .ny26-countdown {
    padding: 0 20px;
  }

  .ny26-countdown-content {
    padding: 32px 24px;
    gap: 32px;
  }

  .ny26-countdown-title h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .ny26-countdown-timer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .ny26-countdown-unit {
    width: 100px;
    height: 100px;
    padding: 24px 16px 16px;
  }

  .ny26-countdown-value {
    font-size: 40px;
  }

  .ny26-countdown-label {
    font-size: 14px;
  }

  .ny26-countdown-divider {
    display: none;
  }

  .ny26-countdown-description {
    font-size: 14px;
    line-height: 22px;
  }

  .ny26-countdown-cta button {
    width: 100%;
  }

  .ny26-countdown-image {
    display: none;
  }
}

/* =================================================================
   CELEBRATE SECTION
   ================================================================= */
.ny26-celebrate {
  background: #D2CFE7;
  padding: 72px 0 140px;
}

.ny26-celebrate-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.ny26-celebrate-image {
  flex: 0 0 430px;
  height: 315px;
  background: #D2CFE7;
  border-radius: 12px;
}

.ny26-celebrate-content {
  flex: 1;
  max-width: 810px;
}

.ny26-celebrate-container h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0A131C;
}

.ny26-celebrate-description {
  margin-bottom: 40px;
}

.ny26-celebrate-description p {
  font-size: 18px;
  color: #333;
  line-height: 1.4;
}

.ny26-celebrate-cta {
  display: flex;
  gap: 20px;
}

.ny26-celebrate-cta button {
  padding: 12px 46px;
  background: #463B6C;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
}

.ny26-celebrate-cta small {
  display: block;
  font-weight: 400;
}

.ny26-celebrate-cta button:hover {
  background: #3a2d69;
  color: white;
}

.ny26-celebrate-cta button.inverted {
  background: transparent;
  border: 1px solid #463B6C;
  color: #463B6C;
}

@media (max-width: 1024px) {
  .ny26-celebrate-container {
    flex-direction: column;
  }

  .ny26-celebrate-image {
    flex: none;
    width: 100%;
    max-width: 430px;
  }
}

@media (max-width: 768px) {
  .ny26-celebrate {
    padding: 60px 0;
  }

  .ny26-celebrate-container {
    padding: 0 20px 40px;
  }

  .ny26-celebrate-title h2 {
    font-size: 32px;
  }

  .ny26-celebrate-image {
    display: none;
  }
}

/* =================================================================
   SCROLL SECTION
   ================================================================= */
.ny26-scroll {
  background: #463B6C;
  padding: 72px 0 72px;
  border-radius: 80px 80px 0 0;
  margin-top: -80px;
}

.ny26-scroll-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.ny26-scroll-header {
  margin-bottom: 68px;
}

.ny26-scroll-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.ny26-scroll-header p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.ny26-scroll-cta {
  text-align: center;
}

.ny26-scroll-cta button {
  padding: 16px 48px;
  background: #fff;
  color: #463B6C;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: capitalize;
}

.ny26-scroll-cta button:hover {
  background: #E5E5E5;
}

.ny26-scroll-wrapper {
  position: relative;
  background: #BFE1E6;
  border-radius: 12px;
  padding: 32px;
  height: 300px;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.name {
  text-align: center;
  color: #0A131C;
  font-size: 14px;
  flex: 1;
  white-space: nowrap;
  min-width: 10%;
}

.name span {
  display: block;
}

@media (max-width: 1200px) {
  .ny26-names-row {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .ny26-scroll {
    padding: 60px 0;
  }

  .ny26-scroll-container {
    padding: 0 20px;
  }

  .ny26-scroll-wrapper {
    height: 300px;
  }
}
