
/* ============================================================================
   Sponsor wall styles
   Updated for tiered rows with scale variables. Each sponsorship level row
   uses a --scale variable to determine logo sizing. Rows contain headings
   and groups of logos centered horizontally.
============================================================================ */
/* Base container for the sponsor wall. Rows will be appended inside this container. */
#sponsor-wall {
    margin-top: 1rem;
}

/* Sponsor tier row. A custom --scale variable is set inline via JS to control logo size. */
.sponsor-tier {
    margin-bottom: 2.5rem;
}

/* Heading for each sponsor tier */
.sponsor-tier-heading {
    margin: 0.5rem 0 1rem;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    color: #3b4e9d;
}

/* Container for the logos within a tier. Flex layout centers items and allows wrapping. */
.sponsor-tier-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Wrapper for each sponsor. Logos and fallback text are centered vertically and horizontally. */
.sponsor-tier-logos a,
.sponsor-tier-logos div {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.5rem;
}

/* Base style for sponsor logos. Uses the --scale CSS variable to compute max-height. */
.sponsor-logo {
    display: block;
    width: auto;
    height: auto;
    /* max-height: calc(140px * var(--scale)); */
    max-height: calc(240px * var(--scale));
    object-fit: contain;
    border: 3px solid #fff;
    box-shadow: 
        0 2px 2px 0 rgba(0,0,0,.14),
        0 3px 1px -2px rgba(0,0,0,.12),
        0 1px 5px 0 rgba(0,0,0,.2);
    border-radius: 4px;
}


/* Fallback text shown when a logo fails to load */
.sponsor-text-fallback {
    font-size: 0.9rem;
    color: #3b4e9d;
    text-align: center;
    max-width: 200px;
    padding: 0.25rem 0.5rem;
}

/* At smaller widths, adjust typography and spacing */
@media (max-width: 768px) {
    .sponsor-tier-heading {
        font-size: 1.4rem;
    }
    .sponsor-tier-logos {
        gap: 1rem;
    }
}
body { text-align: center; margin: 0; background: #e6d6b8; color: black; font-family: 'Arial', sans-serif; line-height: 1.6; }
a, a:link, a:visited {
    color: #0090ab;
}
a:active {
    color:#000;
}
        .header-container { background: #3b4e9d; padding: 0; color: white; box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* subtle drop shadow */ }

        .header-container > .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        



/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0; /* slightly reduced vertical padding for tighter band */
    background: #3b4e9d;
    margin: 0;
}

/* LOGO */
.nav-logo img {
    height: 100px; /* full size on desktop */
    padding: 0;
    transition: height 0.3s ease; /* smooth transition */
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 1.5rem;
}




/* NAV LINK STYLING */
.nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

/* MOBILE RESPONSIVE TWEAKS */
/* @media (max-width: 768px) {
    .nav-logo img {
        height: 60px;
    }
    .nav-links {
        gap: 1rem;
    }
} */

@media (max-width: 768px) {
    .nav {
        align-items: center;
    }
    .menu-toggle {
        align-self: center; /* make sure button stays vertically centered */
    }
    .nav-logo img {
        height: 60px;
    }

    
    


}

        



        /* Responsive Navigation */
        /* .nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem; background: #3b4e9d; margin: 0; } */
        .nav-logo { display: flex; align-items: center; }
        /* .nav-logo img { height: 100px; padding: 5px; } */
        /* .nav-links { display: flex; gap: 1rem; } */
        /* .nav a { color: white; text-decoration: none; font-weight: bold; font-size: 1.1rem; } */
        .menu-toggle { display: none; font-size: 1.5rem; background: none; border: none; color: white; cursor: pointer; }
        
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: #3b4e9d; padding: 1rem; }
            .nav-links a { display: block; padding: 0.5rem 0; }
            .menu-toggle { align-self: center; display: block; margin-left: 0.5rem; }
            .nav {
                align-items: center;
            }
            .nav-logo img {
                height: 60px;
            }
        }
        
        /* Hero Section */
        .hero { padding: 6rem 1rem; background: #3b4e9d; color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        .hero h1 { margin-bottom: 1.5rem; font-size: 2.5rem; font-weight: bold; }
        .hero p { max-width: 600px; margin-bottom: 2rem; font-size: 1.2rem; }
        .cta { margin-top: 1rem; background: #c03431; color: white; border: none; padding: 12px 24px; font-size: 1.2rem; text-decoration: none; display: inline-block; border-radius: 10px; }
        .cta:hover { opacity: 0.9; }
        a.cta, a:link.cta, a:visited.cta { color: #fff; }
        a:active.cta { color: #000; }
        
        /* General Sections */
        .section { padding: 4rem 1.5rem; background: #e6d6b8; color: black; }
        .section h2 { color: black; font-size: 2rem; font-weight: bold; margin-bottom: 1rem; } 
        .section p, .section div { color: black; font-size: 1.1rem; }
        
        /* Three Column Grid */
        .grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: nowrap; max-width: 1200px; margin: auto; }
        .grid div { flex: 1; min-width: 320px; max-width: 500px; padding: 2rem; text-align: center; }
        .grid p { max-width: 100%; margin: auto; }
        .grid p { max-width: 90%; margin: auto; }
        
        @media (max-width: 768px) { .grid { flex-wrap: wrap; justify-content: center; } .grid div { max-width: 90%; } }
        
        /* Button Styling */
        .button { margin-top: 2rem; border-radius: 10px; }
        
        /* Sponsors Section */
        .sponsors img { max-width: 100%; height: auto; max-height: 50px; margin: 0.5rem; }
        
        footer { padding: 1rem; background: #3b4e9d; color: white; text-align: center; }



        main {
            margin:0px 20px 50px 20px;
        }






/* Scope styles specifically to the association page */
main {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: left;
}

/* Styling for each section container */
main .container {
    padding: 20px;
    margin-bottom: 40px;
}

/* Headings inside the Association page */
main .container h1, 
main .container h2 {
    text-align: left;
    color: #3b4e9d;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Paragraph styling */
main .container p {
    font-size: 1.1rem;
    line-height: 1.6;
}




















/* Tables styling specific to association page */
#association-page table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#association-page th, 
#association-page td {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px;
    text-align: left;
}

#association-page th {
    background-color: #3b4e9d;
    color: white;
    font-weight: bold;
}

#association-page tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.03);
}

#association-page tr:nth-child(odd) {
    background: rgba(255, 255, 255, .1);
}

/* Responsive Design */
@media (max-width: 768px) {
    #association-page {
        width: 95%;
        padding: 10px;
    }
    
    #association-page th, 
    #association-page td {
        padding: 8px;
        font-size: 14px;
    }
}








        


/* footer {
    background: #3b4e9d;
    color: white;
    padding: 40px 20px;
    text-align: left;
    border-top: 20px solid #c03431;
} */

/* Newsletter Section */
section.signup-section {
    margin:0;
}
.signup-section {
    background-color: #c03431;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}
.signup-container {
    max-width: 600px;
    margin: 0 auto;
}
.signup-container h2 {
    color: #fff;
    margin-bottom: 20px;
}
.signup-container p {
    color: #fff;
    margin-bottom: 30px;
}
.signup-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.signup-container input[type="email"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    background-color: white;
}
.signup-container button[type="submit"] {
    background-color: #0090ab;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}



/* membership table */
.membership-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.membership-table th, .membership-table td {
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Matching border to the header */
    text-align: left;
}

.membership-table th {
    background-color: #3b4e9d;
    color: white;
}

.membership-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.03); /* Light but distinct alternate row color */
}

.membership-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, .1); /* Site background color for odd rows */
}

/* === Custom styles for 2026 event hero and sponsors band === */
.hero.event-hero {
    padding: 5rem 1rem 4rem;
    background: #3b4e9d;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.hero.event-hero .hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.hero.event-hero .hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.hero.event-hero .hero-content .tagline {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e6d6b8;
}
.hero.event-hero .hero-content .sub-info {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #f5efe5;
}
.hero.event-hero .register-cta {
    background: #c03431;
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1rem;
}
.hero.event-hero .register-cta:hover {
    opacity: 0.9;
}
.hero.event-hero .info-group {
    max-width: 1000px;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.hero.event-hero .info-box {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    text-align: center;
}
.hero.event-hero .info-box h3 {
    margin-top: 0;
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
    color: #e6d6b8;
}
.hero.event-hero .info-box p {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
}
.hero.event-hero .info-note {
    margin-top: 1.5rem;
    color: #f5efe5;
    font-size: 0.9rem;
}

/* Sponsors band styles */
.sponsors-band {
    background: #ede2d0;
    padding: 2.5rem 1rem;
    text-align: center;
}
.sponsors-band h2 {
    color: #3b4e9d;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}
.sponsor-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.sponsor-strip img {
    max-height: 50px;
    width: auto;
}

/* Additional event extras styles */
.hero.event-hero .event-extras {
    max-width: 1000px;
    margin: 2rem auto 0;
    color: #f5efe5;
    font-size: 1rem;
}
.hero.event-hero .event-alert {
    font-size: 1.4rem;
    font-weight: bold;
    background: #c03431;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1rem;
    color: #ffffff;
}
.hero.event-hero .membership-note {
    margin-bottom: 1rem;
    color: #f5efe5;
}
.hero.event-hero .schedule,
.hero.event-hero .awards,
.hero.event-hero .hotel-info {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}
.hero.event-hero .schedule h3,
.hero.event-hero .awards h3,
.hero.event-hero .hotel-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    color: #e6d6b8;
}
.hero.event-hero .schedule h4 {
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    color: #e6d6b8;
}
.hero.event-hero .schedule ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0 0 1rem;
}
.hero.event-hero .schedule ul li {
    margin-bottom: 0.4rem;
    color: #ffffff;
}
.hero.event-hero .awards p,
.hero.event-hero .hotel-info p {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

/* Center hero-content children horizontally without altering the max-width */
.hero.event-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
}
.hero.event-hero .hero-content .tagline,
.hero.event-hero .hero-content .sub-info {
    display: block;
    margin: 0;
}


/* ============================================================
   EVENT DETAILS SECTION (Schedule / Awards / Hotel)
   Pulled out of hero into its own tan band
   ============================================================ */

.event-details {
    background: #e6d6b8;        /* same tan as .section */
    padding: 3rem 1.5rem;
}

.event-details-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}

/* Membership note stays full width */
.event-details .membership-note {
    flex: 1 0 100%;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #3b4e9d;
}

/* Card styling */
.event-details .schedule,
.event-details .awards,
.event-details .hotel-info {
    flex: 1 1 300px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* Headings in cards */
.event-details .schedule h3,
.event-details .awards h3,
.event-details .hotel-info h3 {
    color: #3b4e9d;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.event-details .schedule h4 {
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
    color: #3b4e9d;
}

.event-details .schedule ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.event-details .schedule ul li {
    margin-bottom: 0.35rem;
}

.event-details .awards p,
.event-details .hotel-info p {
    margin-bottom: 0.6rem;
}

/* Responsive layout */
@media (max-width: 768px) {
    .event-details-inner {
        flex-direction: column;
    }
}




/* === Variant A: original blue look, centered column === */

.event-details {
    background: #e6d6b8; /* tan bar */
    padding: 3rem 1.5rem;
}

.event-details.layout-a .event-details-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Keep note subtle & centered */
.event-details.layout-a .membership-note {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #3b4e9d;
    text-align: center;
}

/* Cards – mimic hero.event-hero look but adjust text colors for tan */
.event-details.layout-a .schedule,
.event-details.layout-a .awards,
.event-details.layout-a .hotel-info {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    color: #222;
}

.event-details.layout-a .schedule h3,
.event-details.layout-a .awards h3,
.event-details.layout-a .hotel-info h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    color: #3b4e9d;
}

.event-details.layout-a .schedule h4 {
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
    color: #3b4e9d;
}

.event-details.layout-a .schedule ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0 0 0.75rem;
}

.event-details.layout-a .schedule ul li {
    margin-bottom: 0.25rem;
}



/* === Variant B: schedule wide, side column for awards/hotel === */

.event-details.layout-b {
    background: #e6d6b8;
    padding: 3rem 1.5rem;
}

.event-details.layout-b .event-details-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    grid-column-gap: 2rem;
    grid-row-gap: 1.75rem;
}

/* Note spans full width at top */
.event-details.layout-b .membership-note {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #3b4e9d;
    text-align: center;
}

/* Cards */
.event-details.layout-b .schedule,
.event-details.layout-b .awards,
.event-details.layout-b .hotel-info {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    text-align: left;
    color: #222;
}

.event-details.layout-b .schedule {
    grid-column: 1 / 2;
    grid-row: 2 / 4; /* tall column */
}

.event-details.layout-b .awards {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.event-details.layout-b .hotel-info {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.event-details.layout-b .schedule h3,
.event-details.layout-b .awards h3,
.event-details.layout-b .hotel-info h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    color: #3b4e9d;
}

.event-details.layout-b .schedule h4 {
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    color: #3b4e9d;
}

.event-details.layout-b .schedule ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0 0 0.75rem;
}

.event-details.layout-b .schedule ul li {
    margin-bottom: 0.25rem;
}

/* Mobile: revert to simple column */
@media (max-width: 900px) {
    .event-details.layout-b .event-details-inner {
        display: block;
    }
}




/* === Variant C: three equal cards in a row === */

.event-details.layout-c {
    background: #e6d6b8;
    padding: 3rem 1.5rem;
}

.event-details.layout-c .event-details-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.event-details.layout-c .membership-note {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #3b4e9d;
    text-align: center;
}

/* Card row */
.event-details.layout-c .schedule,
.event-details.layout-c .awards,
.event-details.layout-c .hotel-info {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    color: #222;
    display: inline-block;
    vertical-align: top;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 1.5rem;
}

.event-details.layout-c .hotel-info {
    margin-right: 0;
}

.event-details.layout-c .schedule h3,
.event-details.layout-c .awards h3,
.event-details.layout-c .hotel-info h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #3b4e9d;
}

.event-details.layout-c .schedule h4 {
    margin-top: 0.75rem;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    color: #3b4e9d;
}

.event-details.layout-c .schedule ul {
    list-style: disc;
    padding-left: 1.3rem;
    margin: 0 0 0.75rem;
}

.event-details.layout-c .schedule ul li {
    margin-bottom: 0.25rem;
}

/* Mobile: full-width stacked cards */
@media (max-width: 900px) {
    .event-details.layout-c .schedule,
    .event-details.layout-c .awards,
    .event-details.layout-c .hotel-info {
        width: 100%;
        margin-right: 0;
    }
}


.event-details > h2.event-details-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #3b4e9d;
    margin: 0 0 1.5rem;
}




/* --- ACCORDION WRAPPER (Matches Variant B) ---------------------------- */
#sponsor-accordion-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- ACCORDION CARD GROUP -------------------------------------------- */
.accordion-list {
  background: #f7efe1;
  border: 1px solid rgba(120,90,50,0.45);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Each item divider */
.accordion-item + .accordion-item {
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* --- HEADER ROW ------------------------------------------------------- */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background: #f7efe1;
}

.acc-name {
  color: #5a4426;
  font-size: 1.05rem;
  font-weight: 600;
}

.acc-price {
  color: #b44732;
  font-weight: 700;
  margin-left: 0.75rem;
}

.acc-limit {
  color: #654932;
  font-size: 0.85rem;
}

.acc-toggle {
  color: #654932;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.acc-toggle-icon {
  transition: transform 0.2s ease;
}

.accordion-item.open .acc-toggle-icon {
  transform: rotate(90deg);
}

/* --- BODY ------------------------------------------------------------- */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  background: #f7efe1;
  transition: max-height 0.25s ease;
}

.accordion-item.open .accordion-body {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

/* --- BULLET LIST ------------------------------------------------------ */
.benefits {
  margin: 0.25rem 0 0;
  padding-left: 1.25rem;     /* restores proper bullet alignment */
  font-size: 0.9rem;
}

.benefits li {
  margin-bottom: 0.3rem;
  line-height: 1.35;
}




/* ===============================
   TXOLAN Sponsor Accordion – Variant B
   =============================== */

/* Tan band behind the whole section */
.sponsor-accordion-section {
  background: #decdac;              /* warm tan */
  padding: 2.5rem 1.5rem 3rem;
}

/* Heading + intro */
.sponsor-accordion-section .sponsor-title {
  text-align: center;
  font-size: 2.1rem;
  margin: 0 0 0.4rem;
}

.sponsor-accordion-section .sponsor-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  color: #444;
}

/* Cream accordion block (the card) */
.sponsor-accordion {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(140, 107, 65, 0.45);
  background: #f7efe1;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

/* Each row */
.sponsor-accordion .accordion-item + .accordion-item {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sponsor-accordion .accordion-header {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.7rem;
  cursor: pointer;
  background: transparent;
}

/* Left side of header (name + price + limit) */
.sponsor-accordion .accordion-main {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}

.sponsor-accordion .acc-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #5b4022;
}

.sponsor-accordion .acc-price {
  font-weight: 700;
  font-size: 1rem;
  color: #c33a21;
}

.sponsor-accordion .acc-limit {
  font-size: 0.85rem;
  color: #7d6851;
}

/* “Details ▸” toggle on the right */
.sponsor-accordion .acc-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a5931;
}

.sponsor-accordion .acc-toggle-icon {
  transition: transform 0.2s ease;
}

/* Rotate arrow when open */
.sponsor-accordion .accordion-item.open .acc-toggle-icon {
  transform: rotate(90deg);
}

/* Body: bullet list */
.sponsor-accordion .accordion-body {
  display: none;                      /* closed by default */
  padding: 0 2.1rem 1.4rem 2.3rem;
  background: rgba(255, 255, 255, 0.7);
}

.sponsor-accordion .accordion-item.open .accordion-body {
  display: block;
}

.sponsor-accordion .accordion-body,
.sponsor-accordion .accordion-body ul,
.sponsor-accordion .accordion-body li {
  text-align: left;
}

.sponsor-accordion .accordion-body .benefits {
  margin: 0;
  padding-left: 1.1rem;
  list-style-position: outside;
}

.sponsor-accordion .accordion-body .benefits li {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

/* Variant B — correct expanded accordion background */
.sponsor-accordion .accordion-body {
    background: #faf4e6;       /* warm cream (matches Variant B) */
    border-top: 1px solid #e5dcc7;
    padding: 1.5rem 2rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}