/* ---------------------------------------------------
   Module: Logo Carousel
   Append to css/modules.css
--------------------------------------------------- */
.logo-carousel {
	background:black;
	overflow: hidden;
	width: 100%;
	padding: 44px 0;
	margin-bottom:100px;
	padding-top:62px;
	color:white;
}

.logo-carousel__track {
	display: flex;
	width: max-content;
}


.logo-carousel__group {
	display: flex;
	align-items: flex-start; /* was: center */
	flex-shrink: 0;
}

.logo-carousel__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start; /* was: center */
	flex-shrink: 0;
	padding: 0 52px;
	text-align: center;
		min-height: 66px; /* new — reserves caption space so every logo lands on the same line */

}

.logo-carousel__img {
	max-height: 40px;
	width: auto;
	display: block;
	margin: 0 auto;
	transition: transform 0.6s ease;

}
.logo-carousel__link {
	display: block;
}
.logo-carousel__caption {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.3;
	color:white;
}
.logo-carousel__separator {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: #fff;
		margin-top: 12px; /* new — re-centers the arrow on the logo band, not the taller item block */

}

.logo-carousel__chevron {
	width: 100%;
	height: 100%;
}

.logo-carousel__item:hover .logo-carousel__img { transform: scale(1.05); }.

@media (prefers-reduced-motion: reduce) {

	.logo-carousel {
		overflow-x: auto;
	}
	
	
}


/* ============================================================
plain_text_program
============================================================ */

.plain_text_program {margin-bottom:200px;}
.copyblock .uppertext {}
.copyblock h3 {}
.copyblocktext {padding-bottom:50px;}




/* ============================================================
blacktext
============================================================ */
.blacktextcontainer p {font-size:14px;}
.blacktextcontainer p a {color:white;}

/* ============================================================
  passes
============================================================ */


.soldout {
  position: relative;
  display: inline-block;
}

.soldout::after {
  content: '';
  position: absolute;
  top: -8px;
  right: 15px;
  width: 64px;
  height: 44px;
  background: url('https://mitfuturefest.org/wp-content/uploads/2026/06/soldout.png') no-repeat center/contain;
  pointer-events: none;
}





.passes .col-12 {
    display: flex;
    flex-direction: column;
}
.passesbox-glow {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.passesbox {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.passesbox-glow {
    flex: 1;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(0 0 17px var(--glow-colour));
    transition: filter 0.3s ease;
}

.passesbox-glow:hover {
    filter: drop-shadow(0 0 27px var(--glow-colour));
}

.passesbox_button {
    margin-top: auto;
}
.passesbox { margin-bottom: 40px; padding: 20px; }
.passes { margin-bottom: 40px; }

.passesbox_title {
    font-size: clamp(32px, 3vw, 48px);
    line-height: 83%;
    font-weight: 700;
    font-family: "neue-haas-grotesk-display", sans-serif;
    min-height: 130px;
    text-transform: uppercase;
}
.passesbox_upper { min-height: 140px; }

.badge-sale {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 16px 6px 28px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 14px 50%);
}

.passesbox_date {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 700;
    font-family: "neue-haas-grotesk-display", sans-serif;
    text-transform: uppercase;
}
.passesbox_date_date {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    font-family: "neue-haas-grotesk-display", sans-serif;
    text-transform: uppercase;
}
.passesbox_title sup { top: -18px; font-size: clamp(16px, 1.5vw, 23px); }

.passesbox_text {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    font-family: "neue-haas-grotesk-display", sans-serif;
    min-height: 140px;
}
.passesbox_textpercent {
    font-weight: 700;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 83%;
}

.passesbox_button { width: 100%; margin-top: 30px; margin-bottom: 30px; }

/*a.passesbutton {
    background-color: black;
    color: white;
    font-family: "neue-haas-grotesk-display";
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
}*/

a.passesbutton {
    position: relative;
    color: white;
    font-family: "neue-haas-grotesk-display";
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
    overflow: visible;
}

/* black background layer */
a.passesbutton::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: black;
    z-index: 0;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.25s ease;
}

/* text layer */
a.passesbutton span {
    position: relative;
    z-index: 1;
}

/* scale only the background */
a.passesbutton:hover::before {
    transform: scale(1.01);
}

.passesbutton2 {
    background-color: #B2B2B2;
    color: white;
    font-family: "neue-haas-grotesk-display";
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
}

.passesbox_table table { width: 100%; }
.passesbox_table .tablename {
    text-align: left;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 700;
    font-family: "neue-haas-grotesk-display", sans-serif;
}
.passesbox_table .tableprice {
    text-align: center;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    font-family: "neue-haas-grotesk-display", sans-serif;
}
.passesbox_table .tableorig {
    text-align: right;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    font-family: "neue-haas-grotesk-display", sans-serif;
    color: #A7A7A7;
}
.passesbox_table .tableprice.tableprice--alone { text-align: right; }

.passesbox_notes {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 400;
    font-family: "neue-haas-grotesk-display", sans-serif;
    padding-top: 40px;
    padding-bottom: 20px;
}


@media (max-width: 768px) {
    .passesbox_upper { min-height: 90px; }
    .passesbox_title { min-height: 0; }
    .passesbox_text { min-height: 0; }
}
/* ============================================================
  speakers
============================================================ */
.teambox {margin-bottom:20px;}
.modal-readmore {    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 700;}
#speakerModal #modalBiog {
    overflow-y: scroll;
    flex: 1 1 auto;
    min-height: 0;
	padding-top:20px;
}
#modalURL {
    margin-top: 16px;
}
#speakerModal .modal-dialog {
    max-width: 1000px;
}
#speakerModal #modalBiog::-webkit-scrollbar {
    width: 6px;
}

#speakerModal #modalBiog::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#speakerModal #modalBiog::-webkit-scrollbar-thumb {
    background: #000;
}
.speakers {color:black; padding-bottom:100px;}




/* ── Speaker Grid ───────────────────────────────────────── */

.speaker-card {
    transition: opacity 0.2s ease;

}

.speaker-card:hover {
    opacity: 0.85;
}

.speaker-card img {
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.speaker-card__meta {
    background: #fff;
		padding-bottom:40px !important;
}
.speaker-card .badge, .modalebadge {       clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 12px 50%);
	padding:6px; padding-left:40px; padding-right:20px; text-transform:uppercase; border-radius:0px; margin-bottom:20px;

}
.speaker-card .metaname {padding-bottom:20px;}

.speaker-card .metatitle {padding-bottom:20px;}
.modalname {font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; font-family: "neue-haas-grotesk-display", sans-serif; padding-bottom:20px;}
.modaltitle {padding-bottom:20px;}
.modalebadge  {margin-top:10px;}

/* ── Speaker Modal ───────────────────────────────────────── */

#speakerModal .modal-content {
    border: none;
    border-radius: 0;
    overflow: hidden; 
	color:black;
}

#speakerModal .modal-body {
    position: relative;
}

#speakerModal #modalImage {
    display: block;
    width: 417px;
    height: 417px;
    object-fit: cover;
}

#speakerModal #modalTextCol {
    height: 417px;
    min-height: 417px;
    overflow: hidden;
}

#speakerModal #modalBiog {
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0; /* required for flex overflow to work */
}

#speakerModal .btn-close {
    z-index: 10;
    background-color: #fff;
    border-radius: 0;
    opacity: 1;
    padding: 0.5rem;
}

/* ============================================================
  alternating_boxes
============================================================ */


.team-list__heading {margin-top:30px;}



.alternating_boxes {padding: 100px 0;}

@media (max-width: 991.98px) {
    .alternating-boxes {
        display: flex;
        flex-direction: column;
    }
    .alternating-box {
        order: var(--mobile-order, 0);
    }
}

/* ── Alternating Boxes ───────────────────────────────────── */

.alternating-box {
    min-height: 500px;
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    position: relative;
margin:-1px;
	overflow:hidden;

}





.alternating-box--image {border:none; }
.your-section-class {
    margin-bottom: -1px; /* collapse the gap */
}
.alternating-box--image {
    padding: 0;
    background: transparent;
}

.alternating-box--image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.alternating-box--image {
    font-size: 0; /* nuclear option for inline gap */
    line-height: 0;
}

.alternating-box--image img {
    display: block;
}
/* ── Inner text wrapper ──────────────────────────────────── */

.alternating-box__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}


/* ── text_with_link ─────────────────────────────────────── */

.alternating-box--text_with_link .alternating-box__inner {
    padding: 100px 50px;

}

.alternating-box__link-wrap {
    width: 100%;
    text-align: right;
    margin-top: auto;
    padding-top: 20px;
}

.alternating-box__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

.alternating-box__link:hover {
    text-decoration: underline;
}

.alternating-box__arrow {
    display: inline-block;
    height: 1em;
    width: auto;
    vertical-align: middle;
}


/* ── text_with_footer ───────────────────────────────────── */

.alternating-box--text_with_footer .alternating-box__inner {
    padding: 90px 50px 60px;
}

.alternating-box__footer {
    position: absolute;
    bottom: 60px;
    left: -20px;
}

.alternating-box__parabreak {
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
}


/* ── text_no_title ──────────────────────────────────────── */

.alternating-box--text_no_title .alternating-box__inner {
    padding: 50px;
	   justify-content: center;
}

/* ── speaker_links ──────────────────────────────────────── */

.alternating-box--speaker_links .alternating-box__inner {
    padding: 50px;
	   justify-content: center;
}
.list-unstyled {padding-left 0px !important}

.speaker-list__name {font-weight: 600; text-decoration:underline;}

/* ============================================================
  graphic
============================================================ */

.graphic {}
.graphic img {width:100%; height:auto;}


/* ============================================================
  home_hero
============================================================ */

.home_hero {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.home_hero video {
    max-height: calc(100vh - 116px);
    width: auto;
}

/* ============================================================
  home_intro
============================================================ */

.home_intro {padding: 100px 0;}



/* ============================================================
  intro
============================================================ */

.intro { padding-top:100px; padding-bottom:50px;}
.intro h1 {margin-bottom:100px;}


/* ============================================================
  logos
============================================================ */

.logos {padding: 100px 0;}



/* ============================================================
  newsletter
============================================================ */

.newsletter  {padding: 100px 0;}

.newsletter h3 { font-size: clamp(32px, 5vw, 64px); font-weight: 700; }
.newsletter p { font-size: clamp(18px, 2vw, 20px);   }

.mc4wp-response p {font-size:14px;}
.mc4wp-response {margin-top:40px;}


/* ── Mailchimp Form ──────────────────────────────────────── */


.mc4wp-form {margin-top:80px;}
.mc4wp-form .mc4wp-form-fields {
    display: flex;
    align-items: stretch;
	 justify-content: center;
    gap: 12px;
}

.mc4wp-form input[type="email"] {
    flex: 0 1 340px;
    background: #000;
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 20px;
    font-size: 16px;
    outline: none;
    border-radius: 0;
    min-width: 0;
}

.mc4wp-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.mc4wp-form input[type="email"]:focus {
    border-color: #fff;
    outline: none;
}

.mc4wp-form input[type="submit"] {
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.mc4wp-form input[type="submit"]:hover {
    background: #e0e0e0;
}

/* ============================================================
  plain_text
============================================================ */
.plaintext-title {padding-top:40px}
.plain_text {padding-bottom:100px;}
.plaintext_container {padding: 40px; padding-top:40px; background-color:white; color:black; }
img.plaintextfooter {width:80%; max-width:480px; height:auto; margin-left:-40px; margin-top:30px; margin-bottom:20px;}
.plaintext-text {min-height:30px; padding: 30px;}



/* ============================================================
   MODULE: Accordion
============================================================ */
.accordion_title {padding: 100px 0}


.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius:  0px;
    border-bottom-left-radius:  0px;
}
*:focus {
    outline: none;
    box-shadow: none;
}
.accordion-button:focus {
    outline: none;
    box-shadow: none;
}
.accordion-header button {font-size: clamp(20px, 2.5vw, 24px); font-weight: 700; font-family: "neue-haas-grotesk-display", sans-serif; 	border-radius:0px;}

/* Question button */
.accordion-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px 30px 16px 52px;
    box-shadow: none;
    border-radius: 0px;
    position: relative;
}

/* Kill Bootstrap's default caret */
.accordion-button::after {
    display: none;
}

/* Unopened icon */
.accordion-button::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('https://mitfuturefest.org/wp-content/uploads/2026/04/unopened.svg');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Opened icon */
.accordion-button:not(.collapsed)::before {
    opacity: 0;
}

.accordion-button:not(.collapsed)::after {
    display: block;
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('https://mitfuturefest.org/wp-content/uploads/2026/04/opened.svg');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Open state */
.accordion-button:not(.collapsed) {
    background-color: #000;
    color: #fff;
    box-shadow: none;
}

/* Answer panel */
.accordion-body {
    background-color: #fff;
    color: #000;
    border: none;
}

/* Remove borders from items, add 6px gap */
.accordion-item {
    border: none;
    margin-bottom: 6px;
    background: transparent;
}

/* Remove the collapse border too */
.accordion-collapse {
    border: none;
}
