.events button{
    color: #8896AB !important;
    background: #FFFFFF !important;
}   
.events button[aria-selected=true]{
    background: #3B82F6 !important;
    color: #FFFFFF !important;
}

.carousel-indicators button{
    background: #FFFFFF !important;
}   
.carousel-indicators button[aria-current=true]{
    background: #723AC6 !important;
}
.navbar-nav > .active > a {
    color: #723AC6;
  }
 .qtybtn {
    border: 1px solid #ddd !important;
    /* padding: 5px 15px; */
    font-size: 20px;
    border-radius: 2px;
    cursor: pointer;
}
.lds-ripple {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    /* position: relative; */
    width: 80px;
    height: 80px;
}
#app{
    opacity: 0;
}
.lds-ripple div {

    position: absolute;
    border: 6px solid var(--primary_color);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
.select2-container--default .select2-selection--single {
    border: none !important;
}
@media (min-width: 600px) {
    .customheight{
        height: 80vh !important;
    }
}

/* Ironhand public event discovery */
:root {
    --ih-ink: #172033;
    --ih-body: #3f4a5c;
    --ih-muted: #687386;
    --ih-line: #dfe3e8;
    --ih-soft: #f5f7f8;
    --ih-teal: #0f766e;
    --ih-teal-soft: #e7f4f1;
    --ih-gold: #b86d08;
    --ih-cyan: #67e8f9;
    --ih-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ih-ink);
    background: var(--ih-white);
}

.ih-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ih-site-header,
.ih-mobile-header {
    position: sticky !important;
    top: 0;
    z-index: 80 !important;
}

.ih-site-header > div {
    box-shadow: 0 1px 0 rgba(23, 32, 51, 0.1);
}

.ih-site-header .container {
    max-width: 1240px;
}

.ih-site-header input[type="search"] {
    border-color: #ccd2da;
}

.ih-site-header .nav-link,
.ih-mobile-header .nav-link {
    color: var(--ih-body);
}

.ih-site-header .nav-link:hover,
.ih-mobile-header .nav-link:hover {
    color: var(--primary_color);
}

.ih-site-footer {
    background: var(--ih-ink) !important;
}

.ih-site-footer .bg-primary-dark {
    background: rgba(255, 255, 255, 0.12) !important;
}

.ih-home,
.ih-catalog-page,
.ih-categories-page {
    font-family: Poppins, sans-serif;
}

.ih-home a,
.ih-catalog-page a,
.ih-categories-page a {
    text-decoration: none;
}

.ih-hero {
    height: 620px;
    position: relative;
    isolation: isolate;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--ih-white);
}

.ih-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(15, 20, 28, 0.54);
}

.ih-hero__inner {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 124px;
}

.ih-hero__copy {
    max-width: 720px;
}

.ih-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
}

.ih-kicker--dark {
    color: var(--ih-teal);
}

.ih-hero h1 {
    max-width: 700px;
    margin: 0;
    color: var(--ih-white);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.ih-hero__copy > p:not(.ih-kicker) {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.65;
}

.ih-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ih-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ih-button:hover {
    transform: translateY(-1px);
}

.ih-button--primary {
    color: var(--ih-white) !important;
    background: var(--primary_color);
    border-color: var(--primary_color);
}

.ih-button--primary:hover {
    background: #92261f;
    border-color: #92261f;
}

.ih-button--ghost {
    color: var(--ih-white) !important;
    background: rgba(15, 20, 28, 0.32);
    border-color: rgba(255, 255, 255, 0.56);
}

.ih-button--ghost:hover {
    background: rgba(15, 20, 28, 0.58);
    border-color: var(--ih-white);
}

.ih-button--outline {
    color: var(--ih-ink) !important;
    background: var(--ih-white);
    border-color: #bec5ce;
}

.ih-button--outline:hover {
    color: var(--primary_color) !important;
    border-color: var(--primary_color);
}

.ih-button--light {
    color: var(--ih-ink) !important;
    background: var(--ih-white);
    border-color: var(--ih-white);
}

.ih-hero-search {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 132px;
    align-items: end;
    gap: 0;
    min-height: 98px;
    padding: 18px;
    color: var(--ih-ink);
    background: var(--ih-white);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(7, 14, 24, 0.24);
}

.ih-hero-search label {
    min-width: 0;
    padding: 0 18px;
    border-right: 1px solid var(--ih-line);
}

.ih-hero-search label:first-child {
    padding-left: 4px;
}

.ih-hero-search label > span:first-child,
.ih-catalog-filters label > span:first-child {
    display: block;
    margin-bottom: 7px;
    color: var(--ih-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.ih-select-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ih-select-wrap i {
    width: 18px;
    color: var(--primary_color);
    text-align: center;
}

.ih-hero-search select {
    width: 100%;
    min-width: 0;
    padding: 3px 26px 3px 0;
    color: var(--ih-ink);
    background: var(--ih-white);
    border: 0;
    font-size: 14px;
    font-weight: 500;
    outline: none;
}

.ih-search-submit {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-left: 16px;
    padding: 0 18px;
    color: var(--ih-white);
    background: var(--primary_color);
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.ih-search-submit:hover {
    background: #92261f;
}

.ih-interest-bar {
    background: var(--ih-white);
    border-bottom: 1px solid var(--ih-line);
}

.ih-interest-bar__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.ih-interest-bar__inner > strong {
    flex: 0 0 auto;
    color: var(--ih-ink);
    font-size: 13px;
}

.ih-interest-list {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.ih-interest-list::-webkit-scrollbar {
    display: none;
}

.ih-interest-list a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: var(--ih-body);
    background: var(--ih-soft);
    border: 1px solid #e5e8ec;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.ih-interest-list a:nth-child(3n + 1) i {
    color: var(--primary_color);
}

.ih-interest-list a:nth-child(3n + 2) i {
    color: var(--ih-teal);
}

.ih-interest-list a:nth-child(3n) i {
    color: var(--ih-gold);
}

.ih-interest-list a:hover {
    color: var(--ih-ink);
    background: var(--ih-white);
    border-color: #aeb6c1;
}

.ih-section {
    padding: 78px 0;
}

.ih-section--soft {
    background: var(--ih-soft);
}

.ih-section--ink {
    color: var(--ih-white);
    background: #1d252a;
}

.ih-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.ih-section-heading h2,
.ih-lineup-band h2,
.ih-host-band h2 {
    margin: 2px 0 0;
    color: var(--ih-ink);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.ih-section-heading > div > p:last-child {
    margin: 9px 0 0;
    color: var(--ih-muted);
    font-size: 15px;
    line-height: 1.6;
}

.ih-section-label {
    margin: 0;
    color: var(--primary_color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.ih-section-label--teal {
    color: var(--ih-teal);
}

.ih-section-label--gold {
    color: var(--ih-gold);
}

.ih-section-label--light,
.ih-section-label--cyan {
    color: rgba(255, 255, 255, 0.8);
}

.ih-section-label--cyan {
    color: var(--ih-cyan);
}

.ih-section-heading--light h2,
.ih-section-heading--light > div > p:last-child {
    color: var(--ih-white);
}

.ih-event-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.ih-event-card {
    min-width: 0;
    overflow: hidden;
    background: var(--ih-white);
    border: 1px solid var(--ih-line);
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(23, 32, 51, 0.06);
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.ih-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(23, 32, 51, 0.12);
}

.ih-event-card__media {
    aspect-ratio: 16 / 9;
    position: relative;
    display: block;
    overflow: hidden;
    background: #e8ebef;
}

.ih-event-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.ih-event-card:hover .ih-event-card__media img {
    transform: scale(1.035);
}

.ih-event-card__type {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    color: var(--ih-white);
    background: rgba(23, 32, 51, 0.84);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.ih-event-card__type--online {
    background: rgba(15, 118, 110, 0.92);
}

.ih-event-card__body {
    padding: 18px;
}

.ih-event-card__eyebrow {
    min-height: 18px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 9px;
    color: var(--primary_color);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.ih-event-card__eyebrow time {
    flex: 0 0 auto;
    color: var(--ih-muted);
}

.ih-event-card__title {
    min-height: 52px;
    display: block;
    color: var(--ih-ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.ih-event-card__title:hover {
    color: var(--primary_color);
}

.ih-event-card__meta {
    min-height: 50px;
    display: grid;
    gap: 7px;
    margin: 12px 0 16px;
    color: var(--ih-muted);
    font-size: 11px;
}

.ih-event-card__meta span {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ih-event-card__meta i {
    width: 14px;
    flex: 0 0 14px;
    color: var(--ih-teal);
    text-align: center;
}

.ih-event-card__footer {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #e8ebee;
}

.ih-event-card__price {
    color: var(--ih-ink);
    font-size: 13px;
    font-weight: 700;
}

.ih-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary_color);
    font-size: 12px;
    font-weight: 700;
}

.ih-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.ih-category-tile {
    aspect-ratio: 4 / 3;
    position: relative;
    display: block;
    overflow: hidden;
    color: var(--ih-white) !important;
    background: #1d252a;
    border-radius: 6px;
}

.ih-category-tile img,
.ih-category-tile__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ih-category-tile img {
    object-fit: cover;
    transition: transform 280ms ease;
}

.ih-category-tile__shade {
    background: rgba(14, 20, 26, 0.48);
}

.ih-category-tile:hover img {
    transform: scale(1.045);
}

.ih-category-tile__content {
    position: absolute;
    right: 18px;
    bottom: 17px;
    left: 18px;
    z-index: 1;
    display: grid;
    gap: 5px;
}

.ih-category-tile__content i {
    margin-bottom: 4px;
    color: #f7c66a;
    font-size: 20px;
}

.ih-category-tile__content strong {
    font-size: 17px;
    line-height: 1.25;
}

.ih-category-tile__content small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
}

.ih-lineup-band,
.ih-host-band {
    color: var(--ih-white);
    background: var(--primary_color);
}

.ih-lineup-band__inner,
.ih-host-band__inner {
    min-height: 220px;
    display: grid;
    grid-template-columns: minmax(260px, 1.15fr) minmax(420px, 1fr) auto;
    align-items: center;
    gap: 42px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.ih-lineup-band h2,
.ih-host-band h2 {
    color: var(--ih-white);
    font-size: 30px;
}

.ih-stat-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ih-stat-list div {
    display: grid;
    gap: 5px;
}

.ih-stat-list strong {
    color: var(--ih-white);
    font-size: 30px;
    line-height: 1;
}

.ih-stat-list span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
}

.ih-online-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.ih-online-event {
    min-width: 0;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    overflow: hidden;
    color: var(--ih-white) !important;
    background: #293338;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.ih-online-event img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.ih-online-event > span {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px;
}

.ih-online-event small {
    color: var(--ih-cyan);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.ih-online-event strong {
    color: var(--ih-white);
    font-size: 16px;
    line-height: 1.45;
}

.ih-online-event em {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-style: normal;
}

.ih-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.ih-guide-card {
    min-width: 0;
    overflow: hidden;
    background: var(--ih-white);
    border: 1px solid var(--ih-line);
    border-radius: 6px;
}

.ih-guide-card > a {
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
}

.ih-guide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ih-guide-card > div {
    padding: 18px;
}

.ih-guide-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--ih-teal);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.ih-guide-card div > a {
    min-height: 70px;
    display: block;
    color: var(--ih-ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.ih-guide-card p {
    margin: 10px 0 0;
    color: var(--ih-muted);
    font-size: 11px;
    line-height: 1.65;
}

.ih-host-band {
    background: var(--ih-teal);
}

.ih-host-band__inner {
    grid-template-columns: minmax(0, 1fr) auto;
}

.ih-host-band p:last-child {
    max-width: 720px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.65;
}

/* Event catalog and categories */
.ih-catalog-hero {
    background: #eef7f4;
    border-bottom: 1px solid #d8e7e3;
}

.ih-catalog-hero--categories {
    background: #f8f2ea;
    border-bottom-color: #eadfce;
}

.ih-catalog-hero__inner {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 44px;
    padding-bottom: 44px;
}

.ih-catalog-hero h1 {
    margin: 0;
    color: var(--ih-ink);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}

.ih-catalog-hero__inner > div > p:last-child {
    max-width: 700px;
    margin: 14px 0 0;
    color: var(--ih-body);
    font-size: 15px;
    line-height: 1.7;
}

.ih-catalog-count {
    flex: 0 0 auto;
    display: grid;
    gap: 6px;
    padding-left: 32px;
    border-left: 2px solid var(--ih-teal);
}

.ih-catalog-count strong {
    color: var(--ih-ink);
    font-size: 42px;
    line-height: 1;
}

.ih-catalog-count span {
    color: var(--ih-muted);
    font-size: 11px;
}

.ih-catalog-content {
    padding-top: 42px;
    padding-bottom: 80px;
}

.ih-catalog-filters {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(140px, 0.8fr)) auto;
    align-items: end;
    gap: 14px;
    padding: 20px;
    background: var(--ih-white);
    border: 1px solid var(--ih-line);
    border-radius: 8px;
    box-shadow: 0 5px 16px rgba(23, 32, 51, 0.05);
}

.ih-catalog-filters label {
    min-width: 0;
}

.ih-catalog-filters select,
.ih-filter-search > span:last-child {
    width: 100%;
    min-height: 44px;
    color: var(--ih-ink);
    background: var(--ih-white);
    border: 1px solid #cbd1d9;
    border-radius: 5px;
    font-size: 12px;
    outline: none;
}

.ih-catalog-filters select {
    padding: 0 32px 0 12px;
}

.ih-filter-search > span:last-child {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
}

.ih-filter-search i {
    color: var(--ih-muted);
}

.ih-filter-search input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    font-size: 12px;
    outline: none;
}

.ih-catalog-toolbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ih-segmented {
    display: inline-flex;
    padding: 3px;
    background: #e9ecef;
    border-radius: 6px;
}

.ih-segmented a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    color: var(--ih-body);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.ih-segmented a.is-active {
    color: var(--ih-ink);
    background: var(--ih-white);
    box-shadow: 0 1px 4px rgba(23, 32, 51, 0.12);
}

.ih-clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ih-muted);
    font-size: 11px;
    font-weight: 600;
}

.ih-event-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ih-category-grid--full {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ih-category-grid--full .ih-category-tile {
    aspect-ratio: 16 / 10;
}

.ih-empty-state {
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
}

.ih-empty-state > i {
    margin-bottom: 20px;
    color: var(--ih-teal);
    font-size: 38px;
}

.ih-empty-state h2 {
    margin: 0;
    color: var(--ih-ink);
    font-size: 26px;
    font-weight: 700;
}

.ih-empty-state p {
    max-width: 520px;
    margin: 12px 0 24px;
    color: var(--ih-muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .ih-event-grid,
    .ih-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ih-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ih-lineup-band__inner {
        grid-template-columns: 1fr auto;
    }

    .ih-stat-list {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .ih-catalog-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ih-catalog-filters .ih-button {
        width: 100%;
    }

    .ih-event-grid--catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .scroll-up-button,
    .back-to-top {
        display: none !important;
    }

    .ih-mobile-header > div {
        min-height: 64px;
        position: relative;
        display: block !important;
        padding-top: 12px !important;
        padding-right: 132px !important;
        padding-bottom: 12px !important;
    }

    .ih-mobile-header > div > div:first-child {
        min-height: 40px;
    }

    .ih-mobile-header > div > div:last-child {
        position: absolute;
        top: 10px;
        right: 52px;
    }

    .ih-mobile-header > div > div:last-child form {
        display: none;
    }

    .ih-mobile-header > div > div:last-child > div {
        align-items: center;
    }

    .ih-mobile-header > div > div:last-child .sm\:px-4 {
        margin: 0;
        padding: 0;
    }

    .ih-mobile-header > div > div:last-child .sm\:px-4 a {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        padding: 7px 13px;
        font-size: 12px;
    }

    .ih-shell {
        width: min(100% - 28px, 1180px);
    }

    .ih-hero {
        height: auto;
        min-height: 640px;
        background-position: 58% center;
    }

    .ih-hero__shade {
        background: rgba(15, 20, 28, 0.66);
    }

    .ih-hero__inner {
        display: block;
        padding-top: 54px;
        padding-bottom: 30px;
    }

    .ih-hero h1 {
        font-size: 38px;
        line-height: 1.12;
    }

    .ih-hero__copy > p:not(.ih-kicker) {
        margin-top: 16px;
        font-size: 15px;
    }

    .ih-hero__actions {
        margin-top: 22px;
    }

    .ih-hero-search {
        position: static;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 28px;
        padding: 15px;
    }

    .ih-hero-search label,
    .ih-hero-search label:first-child {
        padding: 0 0 10px;
        border-right: 0;
        border-bottom: 1px solid var(--ih-line);
    }

    .ih-search-submit {
        min-height: 48px;
        margin: 0;
    }

    .ih-interest-bar__inner {
        display: block;
        padding-top: 17px;
        padding-bottom: 17px;
    }

    .ih-interest-bar__inner > strong {
        display: block;
        margin-bottom: 10px;
    }

    .ih-section {
        padding: 54px 0;
    }

    .ih-section-heading,
    .ih-catalog-hero__inner,
    .ih-catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .ih-section-heading {
        gap: 18px;
        margin-bottom: 24px;
    }

    .ih-section-heading h2,
    .ih-lineup-band h2,
    .ih-host-band h2 {
        font-size: 28px;
    }

    .ih-section-heading .ih-button,
    .ih-catalog-hero__inner > .ih-button {
        width: 100%;
    }

    .ih-event-grid,
    .ih-event-grid--catalog,
    .ih-guide-grid,
    .ih-online-grid,
    .ih-category-grid,
    .ih-category-grid--full {
        grid-template-columns: 1fr;
    }

    .ih-category-tile,
    .ih-category-grid--full .ih-category-tile {
        aspect-ratio: 16 / 9;
    }

    .ih-lineup-band__inner,
    .ih-host-band__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .ih-stat-list {
        grid-column: auto;
        grid-row: auto;
        gap: 14px;
    }

    .ih-stat-list strong {
        font-size: 26px;
    }

    .ih-online-event {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .ih-online-event img {
        height: 144px;
    }

    .ih-guide-card div > a {
        min-height: auto;
    }

    .ih-catalog-hero__inner {
        min-height: 280px;
        justify-content: center;
        gap: 26px;
    }

    .ih-catalog-hero h1 {
        font-size: 34px;
    }

    .ih-catalog-count {
        padding-left: 0;
        border-top: 2px solid var(--ih-teal);
        border-left: 0;
        padding-top: 16px;
    }

    .ih-catalog-content {
        padding-top: 24px;
        padding-bottom: 54px;
    }

    .ih-catalog-filters {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .ih-catalog-toolbar {
        min-height: 112px;
        justify-content: center;
        padding: 18px 0;
    }

    .ih-segmented {
        width: 100%;
        overflow-x: auto;
    }

    .ih-segmented a {
        flex: 1 0 auto;
        justify-content: center;
    }
}
