@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

:root {
    --p: 0.13 0.03 263.18;
    font-family: "Inter Tight", sans-serif;

}

body {
    margin: 0;
    background-color: #F5F5F5;
}

.sponsors-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.speakers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.icon-banner {
    color: oklch(var(--p));
}

.color-latest {
    color: oklch(var(--p));
}

.color-button-latest {
    background-color: oklch(var(--p));
}

.button-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 1rem 2rem;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button-banner.submit {
    background-color: oklch(var(--p));
    color: #BFD3E6;
}

.navigation-menu-mobile {
    background-color: oklch(var(--p));
}

.button-banner.submit:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* hover:shadow-lg */
}

.button-banner.register {
    border: 2px solid oklch(var(--p));
    /* Border dengan warna utama */
    color: oklch(var(--p));
    /* Teks dengan warna utama */
    background-color: transparent;
    /* Latar belakang transparan */
}

.button-banner.register:hover {
    background-color: oklch(var(--p));
    /* Latar belakang hover untuk Register Now */
    color: #fff;
    /* Teks putih saat hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* hover:shadow-lg */
}

/* Contoh penggunaan di footer */
.footer-container {
    background-color: oklch(var(--p));
    color: #e2e8f0;
    padding: 4rem 1rem;
    font-family: "Inter Tight", sans-serif;
}

/* Make top publisher bar transparent */
.navbar-publisher {
    background: transparent !important;
    background-image: none !important;
}

.navbar-text-color {
    color: #BFD3E6; 
}

/* Ensure full transparency for navbar containers */
#navbar,
.sticky-navbar {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Gradient style for non-home pages */
#navbar.navbar-gradient {
    background-image: linear-gradient(135deg, #071a2f 0%, #0b2540 100%) !important;
    background-color: transparent !important;
}

/* Explicit transparent class for home page */
#navbar.navbar-transparent {
    background: transparent !important;
    background-image: none !important;
}

#navbar .navbar-astronomy,
#navbar .navbar-custom-astronomy,
#navbar .navbar-custom-astronomy-title,
#navbar .navbar-top-section,
#navbar .navbar-menu-section {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.navbar-custom-astronomy a {
    position: relative;
    overflow: visible; /* allow underline to render beyond text if needed */
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

/* Underline only matches the text width */
.navbar-custom-astronomy a span {
    position: relative;
    display: inline-block; /* width equals text content */
}

.navbar-custom-astronomy a span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-custom-astronomy a:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-custom-astronomy a:hover {
    transform: translateY(-2px);
}

.font-orbitron {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.menu-underline a {
    position: relative;
    text-decoration: none;
}

.menu-underline a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    height: 2px;
    width: 0;
    background-color: currentColor; 
    transition: width 250ms ease;
}

.menu-underline a:hover::after,
.menu-underline a:focus::after {
    width: 100%;
}

/* Dropdown menu z-index fix */
.navbar-dropdown-content {
    z-index: 9999 !important;
    position: relative !important;
}

/* Navbar auto height and long-title handling */
#navbar .navbar-top-section { 
    height: auto;
    min-height: 4rem; 
    align-items: center; 
}

#navbar .navbar-logo { 
    white-space: normal; 
    line-height: 1.2; 
    word-break: break-word; 
}

#navbar .navbar-logo div.relative {
     height: 3rem; 
}

/* Hide text logo/title on very narrow screens, keep image size reasonable */
@media (max-width: 480px) {
    #navbar .navbar-logo { font-size: 0 !important; }
    #navbar .navbar-logo div.relative { height: 2.25rem; }
}

/* ======= DROPDOWN MENU FIXES ======= */
.navbar-dropdown-content {
    z-index: 999999 !important;
    position: fixed !important;
}

/* Pastikan parent container tidak memotong dropdown */
.navbar-items {
    overflow: visible !important;
}

/* Add subtle animation for menu items */
@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjusted styles for headings and dividers */
#speakers h2,
.sponsors h2,
.partners h2 {
    font-size: 25px;
}

#speakers hr,
.sponsors hr,
.partners hr {
    height: 3px;
}

/* Animation for Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInPartner {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Style */
.footer-container {
    background-color: oklch(var(--p));
    color: #e2e8f0;
    padding: 4rem 1rem;
    font-family: "Inter Tight", sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #4a5568;
    padding-bottom: 0.5rem;
}

.footer-section p,
.footer-section address {
    margin-bottom: 0.75rem;
    font-style: normal;
    line-height: 1.6;
}

.footer-section a {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-section a:hover {
    color: #90cdf4;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #a0aec0;
}

.copyright strong {
    color: #ffffff;
}

.copyright a {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: #90cdf4;
    text-decoration: underline;
}

.copyright img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.5rem;
}

.flag-visitor {
    margin-top: 15px;
}

/* Annnouncement Template */

.section-announcement {
    font-family: "Inter Tight", sans-serif;
    line-height: 1.8;
    color: #333;
}

.section-announcement h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.section-announcement p {
    margin-bottom: 20px;
    font-size: 16px;
}

.section-announcement strong {
    color: #2c3e50;
    font-weight: 600;
}

.section-announcement ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.section-announcement li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.section-announcement li::before {
    content: '→';
    color: oklch(var(--p));
    position: absolute;
    left: 0;
    font-weight: bold;
}

.section-announcement a {
    color: oklch(var(--p));
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.section-announcement a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid oklch(var(--p));
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {

    .section-announcement h1 {
        font-size: 28px;
    }
}

/* Container styles */
.register-status-astronomy {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: "Inter Tight", sans-serif;

    line-height: 1.6;
    color: #333;
}

/* Main title */
.register-status-astronomy>p {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid oklch(var(--p));
}

/* Ordered list styles */
.register-status-astronomy ol {
    counter-reset: section;
    list-style-type: none;
    padding-left: 0;
}

.register-status-astronomy ol>li {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.register-status-astronomy ol>li:hover {
    transform: translateX(5px);
}

/* Section titles */
.register-status-astronomy ol>li>p {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* Unordered list styles */
.register-status-astronomy ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.register-status-astronomy ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
}

.register-status-astronomy ul li::before {
    content: "•";
    color: oklch(var(--p));
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Links */
.register-status-astronomy a {
    color: oklch(var(--p));
    text-decoration: none;
    transition: color 0.2s ease;
}

.register-status-astronomy a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Strong text */
.register-status-astronomy strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .register-status-astronomy {
        padding: 1rem;
    }

    .register-status-astronomy ol>li {
        padding: 1rem;
    }
}

/* End Template */

.navbar-astronomy {
    max-width: 94rem
        /* 1280px */
    ;
}

/* Latest News Card Styles */
.news-card {
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3);
    background-color: #fff;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
    min-height: 480px; /* minimum height, can grow */
    width: 100%;
    position: relative;
    border-radius: 8px;
    margin: 0; /* let the flex gap control spacing */
    display: flex;
    flex-direction: column;
}

.latest-news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* align section paddings with ny2026 rhythm */
.latest-news.section-background {
  padding-top: 3rem !important; /* override py-24 */
  padding-bottom: 3rem !important;
}
@media (min-width: 768px) {
  .latest-news.section-background {
    padding-top: 3.5rem !important; /* ~md:py-14 */
    padding-bottom: 3.5rem !important;
  }
}

/* Latest News layout: center rows, max 3 per line, responsive */
.latest-news .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center when fewer than max columns */
    gap: 1.5rem; /* align with ny2026 gap (24px) for consistency */
    align-items: stretch; /* keep equal heights */
}

/* Large screens: 3 columns like lg:grid-cols-3 with gap-8 */
@media (min-width: 1024px) {
  .latest-news .grid > article {
    /* column width = (container - 2 gaps)/3 */
    flex: 0 0 calc((100% - (2 * 1.5rem)) / 3);
    max-width: calc((100% - (2 * 1.5rem)) / 3);
  }
}

/* Medium screens: 2 columns like md:grid-cols-2 with gap-8 */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .latest-news .grid {
    justify-content: center;
    gap: 1.5rem;
  }
  .latest-news .grid > article {
    /* column width = (container - 1 gap)/2 */
    flex: 0 0 calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
  }
}

/* Mobile: single column and centered */
@media (max-width: 767.98px) {
  .latest-news .grid {
    justify-content: center;
    gap: 1.5rem; /* match ny2026 gap */
  }
  .latest-news .grid > article {
    flex: 0 1 100%;
    max-width: 100%; /* full-width on mobile like ny2026 */
  }
}



.news-card:hover .date-badge {
    background: rgba(255, 255, 255, 0.95);
    color: oklch(var(--p));
}
.card-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    height: 220px;
    width: calc(100% - 40px);
    margin: 20px 20px 0 20px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3);
    background-color: #f0f0f0;
}

.card-title {
    color: oklch(var(--p));
    font-size: 18px;
    font-weight: 700;
    margin: 20px 20px 0 20px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3);
    line-height: 1.4;
    flex-shrink: 0; 
    word-wrap: break-word;
    word-break: break-word; 
    overflow-wrap: break-word;
    hyphens: auto; 
    height: 75px; 
    display: flex;
    align-items: flex-start; 
}

.card-title a {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: block;
}

.card-summary {
    color: rgba(0,0,0,.7);
    font-size: 14px;
    margin: 12px 20px 0 20px; 
    text-align: left;
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3);
    line-height: 1.6;
    flex-grow: 1; 
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.card-cta {
    display: block;
    margin: auto 20px 20px 20px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3);
    padding-top: 16px;
}

.date-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 49;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cta-link {
    border: 2px solid oklch(var(--p));
    border-radius: 4px;
    color: oklch(var(--p));
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 36px;
    line-height: 32px;
    padding: 0 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease-out;
    letter-spacing: 0.5px;
}

.cta-link:hover {
    background-color: oklch(var(--p));
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: #BFD3E6;
}

/* keknya ini dihapus */
@media (max-width: 810px) {
    .cta-link {
        transition: all 0.4s ease-out;
    }
    
    .cta-link:active,
    .cta-link:focus {
        background-color: oklch(var(--p));
        color: #BFD3E6;
        transition: all 0.4s ease-out;
    }
}

/* Title underline and card pointer */
.news-card .card-title:hover { text-decoration: underline; text-underline-offset: 2px; }

/* Responsive adjustments for news cards */
@media (max-width: 768px) {
    .card-image {
        height: 200px; 
        width: calc(100% - 40px);
        margin: 20px 20px 0 20px;
    }
    
    .card-title {
        font-size: 17px; 
        font-weight: 700;
        margin: 16px 20px 0 20px; 
        line-height: 1.4;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        height: 70px; /* slightly smaller for mobile */
        display: flex;
        align-items: flex-start;
    }
    
    .card-summary {
        font-size: 13px; 
        margin: 10px 20px 0 20px; 
        line-height: 1.6;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .card-cta {
        margin: auto 20px 20px 20px;
        padding-top: 14px;
    }
}

@media (max-width: 480px) {
    .card-image {
        height: 180px; 
        width: calc(100% - 30px);
        margin: 15px 15px 0 15px;
    }
    
    .card-title {
        font-size: 16px; 
        font-weight: 700;
        margin: 14px 15px 0 15px; 
        line-height: 1.4;
        word-wrap: break-word;
        height: 65px; /* smaller for very small screens */
        display: flex;
        align-items: flex-start;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .card-summary {
        font-size: 13px;
        margin: 8px 15px 0 15px; 
        line-height: 1.6;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .card-cta {
        margin: auto 15px 15px 15px;
        padding-top: 12px;
    }
}


/* Countdown visibility fix: ensure numbers are readable on white cards */
.countdown-con .text-gradient {
  color: #BFD3E6; 
}

.bg-custom-color {
  background-image: linear-gradient(135deg, #071a2f 0%, #0b2540 100%);
}


.countdown-section {
    padding-left: 16px; 
    padding-right: 16px; 
}
.countdown-section .countdown-con {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
  .countdown-con {
    border-radius: 1rem;
    height: auto;
    padding: 1rem;
  }

  .countdown-con .text-gradient {
    font-size: 1.25rem;
  }

  .countdown-con span {
    font-size: 0.7rem;
  }
}


@media (max-width: 423px) {
  .hero-banner {
    margin-bottom: 460px !important;
  }
  .countdown-con { 
    width: calc(100% - 2rem); 
    margin: 0.75rem auto 0;   
    height: auto !important; 
    padding: 1rem;            
    box-sizing: border-box;
  }

  
  .countdown-section {
    bottom: -23rem !important;
  }

 
  .countdown-container {
    flex-direction: column !important;
    align-items: stretch !important; 
    justify-content: center !important;
    gap: 0;
    padding-left: 0.75rem; 
    padding-right: 0.75rem;
    background: transparent !important; 
  }

  
  .countdown-container > div {
    width: 100%;
    text-align: center;
    padding: 0.6rem 0;
    background: transparent !important;
    border: 0 !important; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .countdown-container > div:nth-child(odd) {
    border-bottom: 1px solid rgba(229, 231, 235, 1) !important; /* border after Days, Hours, Minutes */
  }

  /* Tweak line-heights to avoid clipping of large numbers/labels */
  .countdown-container .text-gradient { line-height: 1.2; }
  .countdown-container .uppercase { line-height: 1.2; }
}


@media (max-width: 767px) {
  .hero-banner {
    margin-bottom: 440px !important;
  }
  
  
  .countdown-con { 
    width: calc(100% - 2rem);
    margin: 0.75rem auto 0;
    height: auto !important;
    padding: 1rem;
    box-sizing: border-box;
  }
  
  .countdown-section {
    bottom: -480px !important;
    }
  
  .countdown-container {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 0;
    padding: 0.75rem;
    background: transparent !important;
  }
  
  .countdown-container > div {
    width: 100%;
    text-align: center;
    padding: 0.6rem 0;
    background: transparent !important;
    border: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
  
  .countdown-container > div:nth-child(odd) {
    border-bottom: 1px solid rgba(229, 231, 235, 1) !important;
  }
  
  .countdown-container .text-gradient { line-height: 1.2; }
  .countdown-container .uppercase { line-height: 1.2; }

  
    #days, #hours, #minutes, #seconds {
        font-size: 2rem !important; 
        font-weight: 800 !important;
    }
    
    
    .countdown-container .uppercase {
        font-size: 1rem !important; 
        font-weight: 600 !important;
    }
}

@media (max-width: 344px) {
  .hero-banner {
    margin-bottom: 550px !important;
  }
}

/* Custom Card Styles */
.speaker-card {
    width: calc(100% + 20px) !important;
    height: calc(100% - 10px) !important;
    margin: 15px !important;
    padding: 15px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px !important;
}

.speaker-card-title {
    font-size: 1.75rem !important;
    margin-bottom: 10px !important;
}



@media (min-width: 1024px) {
  .astronomy-speakers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 75px; 
    justify-content: center;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .astronomy-speaker-card {
    flex: 1 1 calc(25% - 56.25px);
    max-width: calc(25% - 56.25px);
    min-width: 200px;
  }
}


@media (max-width: 1023px) {
  .astronomy-speakers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 75px;
    justify-items: center;
    padding: 0 1rem; 
  }

  .astronomy-speaker-card {
    max-width: 300px; 
    width: 100%;
  }

  @media (min-width: 720px) {
    .astronomy-speakers-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      padding: 0 1.5rem;
      justify-content: center;
    }
    
    .astronomy-speaker-card {
      width: auto;
      max-width: 300px;
    }
  }
}

.astronomy-speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.astronomy-speaker-card .speaker-image-container {
  height: 180px !important;
  width: 180px !important;
}

.astronomy-speaker-info-card {
  width: 115% !important;
  padding: 0.5rem;
  box-sizing: border-box;
  margin-top: -2.5rem !important; 
  min-width: 200px;
  max-width: none; 
}


.astronomy-speaker-name,
.astronomy-speaker-affiliation {
  word-break: normal;
  hyphens: auto;
  line-height: 1.2;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.astronomy-speaker-name {
  font-size: 1.25rem !important;
  margin-bottom: 0.25rem !important;
  margin-top: 0.75rem !important;
  min-width: 0;
  width: 100%;
  display: block;
  text-align: center;
}

.astronomy-speaker-affiliation {
  font-size: 0.9rem !important;
  line-height: 1.3;
  margin-bottom: 0.75rem !important;
  min-width: 0;
  width: 100%;
  display: block;
  text-align: center;
}


@media (max-width: 1023px) {
  .astronomy-speaker-card .speaker-image-container {
    height: 160px !important;
    width: 160px !important;
  }
  
  .astronomy-speaker-info-card {
    width: 120% !important;
    margin-top: -2rem !important;
    padding: 0.375rem;
  }
  
  .astronomy-speaker-name {
    font-size: 1.1rem !important;
  }
  
  .astronomy-speaker-affiliation {
    font-size: 0.85rem !important;
  }
}

.astronomy-speaker-name,
.astronomy-speaker-affiliation {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  direction: ltr !important;
}


.astronomy-speakers-grid .astronomy-speaker-card {
  flex-shrink: 0;
}


.astronomy-speaker-info-card * {
  word-break: normal !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
}

/* NY2026: Welcome 2026 styles */
.ny2026-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ny2026-hero {
  background-image: linear-gradient(135deg, #071a2f 0%, #0b2540 100%);
  color: #BFD3E6;
  padding: 5rem 0;
  position: relative;
}

.ny2026-hero__content { max-width: 900px; }
.ny2026-hero__title {
  font-size: 2.25rem !important;
  line-height: 1.2 !important;
  color: #BFD3E6 !important;
  font-weight: 800 !important;
}
@media (min-width: 1024px) { .ny2026-hero__title { font-size: 3rem; } }

.ny2026-hero__subtitle {
  margin-top: 1rem;
  color: #d6e3f0;
  line-height: 1.7;
}

.ny2026-hero__actions { 
    display: flex; 
    gap: .75rem; 
    margin-top: 1.5rem; 
    flex-wrap: wrap; 
}

.ny2026-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  font-weight: 600;
  border-radius: .75rem;
  transition: all .25s ease;
  text-decoration: none;
}

.ny2026-btn--primary {
  background-color: oklch(var(--p));
  color: #BFD3E6 !important;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}
.ny2026-btn--primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 16px rgba(0,0,0,.25); 
}

.ny2026-btn--outline {
  background: transparent;
  color: #BFD3E6 !important;
  border: 2px solid oklch(var(--p));
}
.ny2026-btn--outline:hover { 
    background: oklch(var(--p)); 
    color: #fff; 
}

.ny2026-btn--ghost {
  background: transparent;
  color: #BFD3E6 !important;
  border: 1px solid rgba(191, 211, 230, .35);
}
.ny2026-btn--ghost:hover { 
    background: rgba(191, 211, 230, .1); 
}

/* Section base */
.ny2026-section__title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #1e293b, #334155);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  letter-spacing: -0.02em;
}
.ny2026-section__title::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  background: oklch(var(--p));
  margin-top: 0rem;
  border-radius: 2px;
}

.ny2026-section__lead { 
    color: #475569; 
    margin-top: .75rem; 
}

/* About */
.ny2026-about { 
    background: #F5F5F5; 
    padding: 4rem 0; 
}

.ny2026-about__grid { 
    display: grid; 
    gap: 2rem; 
    align-items: center; 
}

@media (min-width: 900px) { 
    .ny2026-about__grid { 
        grid-template-columns: 1.1fr 1fr; 
        gap: 3rem; 
    } 
}

.ny2026-about__text p { 
    line-height: 1.8; 
    color: #4b5563; 
}

.ny2026-list { 
    margin: 1rem 0 0; 
    padding: 0; 
    list-style: none; 
}

.ny2026-list--check li { 
    position: relative; 
    padding-left: 28px; 
    margin-bottom: .75rem; 
    color: #475569; 
}

.ny2026-list--check li::before { 
    content: '→'; 
    position: absolute; 
    left: 0; 
    color: oklch(var(--p)); 
    font-weight: 700; 
}

.ny2026-image { 
    max-width: 100%; 
    height: auto; 
    border-radius: 12px; 
    box-shadow: 0 8px 16px rgba(0,0,0,.1); 
}

/* Goals */
.ny2026-goals { 
    padding: 4rem 0; 
}
.ny2026-cards { 
    display: grid; 
    gap: 1rem; 
    grid-template-columns: 1fr; 
}

@media (min-width: 720px) { 
    .ny2026-cards { 
        grid-template-columns: repeat(3, 1fr); 
    } 
}

.ny2026-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ny2026-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 16px rgba(0,0,0,.08); 
}
.ny2026-card__title { 
    font-weight: 600; 
    color: #1f2937; 
    margin-bottom: .25rem; 
}
.ny2026-card__text { 
    color: #4b5563; 
    line-height: 1.7; 
}
.ny2026-card--benefit { 
    border-top: 3px solid oklch(var(--p)); 
}

/* Simple, scalable card grid: works for any number of cards */
@media (min-width: 1024px) {
  .ny2026-cards--grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;       /* left-align cards, including last row */
  }

  .ny2026-cards--grid .ny2026-card {
    flex: 1 1 calc(25% - 1.125rem);    /* 4 columns */
    max-width: calc(25% - 1.125rem);
  }
}

/* Mobile: 1 column, then 2 columns at >=720px */
@media (max-width: 1023px) {
  .ny2026-cards--grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 720px) {
    .ny2026-cards--grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}

/* ========== EVENT SCHEDULE STYLES ========== */
.event-schedule-section {
  background-color: #F5F5F5;
  font-family: 'Poppins', sans-serif;
  padding: 60px 0;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.event-schedule-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  align-items: center;
}

.event-schedule-title {
  font-size: 2rem !important;
  line-height: 1.1 !important;
  letter-spacing: -0.055em;
  color: #000000 !important;
  font-weight: 800 !important;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.event-schedule-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 3.5rem;
  height: 0.2rem;
  background-color: oklch(var(--p));
  border-radius: 9999px;
}

@media (min-width: 1024px) { .event-schedule-title { font-size: 2.5rem; } }

.event-schedule-subtitle {
  color: #8c8c8c;
  font-size: 15px;
  margin-top: 0;
  text-align: center;
}

/* Card Container */
.event-schedule-card {
  width: 95%;
  max-width: 1230px;
  background: #fff;
  margin: 20px auto;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

/* Left Time Box */
.event-schedule-day-box {
  width: 200px;
  color: #fff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.event-schedule-day-box.primary {
  background-color: oklch(var(--p));
  color: #ffffff;
}

.event-schedule-day-box.secondary {
  background-color: #1b2a41;
}

.event-schedule-day-box p {
  font-size: 13px;
  margin: 0;
}

.event-schedule-day-box h4 {
  font-size: 18px;
  margin-top: 8px;
}

/* Middle Content */
.event-schedule-content {
  flex: 1;
  padding: 30px 25px;
}

.event-schedule-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-schedule-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.event-schedule-content a {
  color: oklch(var(--p));
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

/* Right Avatar */
.event-schedule-avatar {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

.event-schedule-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* Button */
.event-schedule-button {
  margin-top: 40px;
}

.event-schedule-button button {
  background-color: #1b2a41;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-schedule-button button:hover {
  background-color: oklch(var(--p));
}

/* Responsive */
@media (max-width: 768px) {
  .event-schedule-card {
    flex-direction: column;
    text-align: center;
  }

  .event-schedule-day-box {
    width: 100%;
    border-radius: 20px 20px 0 0;
  }

  .event-schedule-avatar {
    padding: 20px 0;
  }
}
