.mcm-wrap,
.mcm-wrap * {
    box-sizing: border-box;
}
.mcm-wrap {
    background: var(--mcm-bg, #000);
    color: var(--mcm-text, #fff);
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}
.mcm-wrap img,
.mcm-wrap video,
.mcm-wrap iframe {
    max-width: 100%;
}
.mcm-single {
    background: var(--mcm-bg, #000);
}
.mcm-container {
    width: min(1180px, calc(100% - 40px));
    max-width: calc(100vw - 40px);
    margin: 0 auto;
}
.mcm-menu {
    min-height: 70vh;
    padding: 92px 0 110px;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}
.mcm-page-title,
.mcm-single-title,
.mcm-section-title,
.mcm-teaser h2,
.mcm-dates h2 {
    color: var(--mcm-primary, #fff);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: .95;
    margin: 0;
}
.mcm-page-title {
    font-size: clamp(46px, 7vw, 86px);
    margin-bottom: 28px;
}
.mcm-section {
    margin-top: 48px;
}
.mcm-section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 22px;
}
.mcm-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 36px;
}
.mcm-filters button {
    border: 1px solid rgba(255,255,255,.32);
    color: var(--mcm-text, #fff);
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    padding: 9px 15px;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
}
.mcm-filters button:hover,
.mcm-filters button.is-active {
    border-color: var(--mcm-accent, #ef6b4a);
    background: var(--mcm-accent, #ef6b4a);
    color: #fff;
}
.mcm-grid {
    display: grid;
    grid-template-columns: repeat(var(--mcm-cols-desktop, 5), minmax(0, 1fr));
    gap: 18px;
}
.mcm-card {
    position: relative;
    display: block;
    min-height: 0;
    aspect-ratio: 3 / 4.15;
    overflow: hidden;
    text-decoration: none !important;
    color: #fff !important;
    background: #222;
    isolation: isolate;
    transform: translateZ(0);
}
.mcm-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.78) 100%);
    z-index: 1;
}
.mcm-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .35s ease, filter .35s ease;
}
.mcm-card:hover .mcm-card-img {
    transform: scale(1.055);
    filter: contrast(1.08);
}
.mcm-card-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    background: var(--mcm-accent, #ef6b4a);
    color: #fff;
    border-radius: 999px;
    padding: 5px 9px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
}
.mcm-card-title {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(15px, 1.2vw, 22px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.035em;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.mcm-empty {
    color: var(--mcm-muted, #d9d9d9);
}
.mcm-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: calc(140px + var(--mcm-single-top-desktop, 90px)) 0 120px;
    background-size: cover;
    background-position: center;
    scroll-margin-top: 120px;
}
.mcm-hero .mcm-container {
    width: min(1180px, calc(100% - 48px));
}
.mcm-single-title {
    font-size: clamp(44px, 8vw, 96px);
    max-width: 900px;
    overflow-wrap: anywhere;
}
.mcm-subtitle {
    margin: 12px 0 18px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 18px;
    color: var(--mcm-primary, #fff);
}
.mcm-description {
    max-width: 880px;
    color: var(--mcm-text, #fff);
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.55;
}
.mcm-description p {
    margin: 0 0 14px;
}
.mcm-duration {
    max-width: 880px;
    margin: 18px 0 0;
    font-weight: 700;
}
.mcm-gallery-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
    gap: 8px;
    background: #000;
    padding: 8px 0;
}
.mcm-gallery-item {
    display: block;
    height: 145px;
    background: #e5e5e5;
    overflow: hidden;
}
.mcm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}
.mcm-gallery-item:hover img {
    transform: scale(1.04);
}
.mcm-teaser,
.mcm-info-zone {
    background: #000;
    padding: 62px 0;
}
.mcm-teaser h2,
.mcm-dates h2 {
    font-size: clamp(36px, 5vw, 58px);
    margin-bottom: 24px;
}
.mcm-video {
    max-width: 920px;
    aspect-ratio: 16 / 9;
    background: #d9d9d9;
}
.mcm-video iframe,
.mcm-video video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.mcm-info-row {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 42px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
}
.mcm-info-title {
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.05;
    color: var(--mcm-primary, #fff);
}
.mcm-info-content {
    color: var(--mcm-muted, #d9d9d9);
    font-size: 15px;
    line-height: 1.5;
}
.mcm-info-content p:first-child { margin-top: 0; }
.mcm-doc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-top: 34px;
}
.mcm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 44px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    transition: .2s ease;
}
.mcm-btn:hover {
    background: #fff;
    color: #000 !important;
}
.mcm-dates {
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 110px 0;
    background-color: #111;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.mcm-date-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}
.mcm-date-card {
    width: 172px;
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    color: #111 !important;
    text-decoration: none !important;
    border-radius: 4px;
    padding: 13px 10px;
    box-shadow: 0 16px 32px rgba(0,0,0,.28);
    transition: transform .2s ease;
}
.mcm-date-card:hover {
    transform: translateY(-3px);
}
.mcm-date-label {
    display: block;
    text-transform: uppercase;
    font-weight: 950;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 8px;
}
.mcm-date-info,
.mcm-date-location,
.mcm-date-extra {
    display: block;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
}
.mcm-date-location,
.mcm-date-extra {
    margin-top: 3px;
}
@media (max-width: 1024px) {
    .mcm-grid { grid-template-columns: repeat(var(--mcm-cols-tablet, 3), minmax(0, 1fr)); }
    .mcm-info-row { grid-template-columns: 1fr; gap: 12px; }
    .mcm-hero { min-height: 480px; padding: calc(105px + var(--mcm-single-top-tablet, 72px)) 0 90px; background-position: center top; }
    .mcm-gallery-item { height: 130px; }
}
@media (max-width: 640px) {
    .mcm-container { width: min(100% - 24px, 1180px); max-width: calc(100vw - 24px); }
    .mcm-menu { padding: 60px 0 70px; background-attachment: scroll; }
    .mcm-grid { grid-template-columns: repeat(var(--mcm-cols-mobile, 2), minmax(0, 1fr)); gap: 12px; }
    .mcm-section { margin-top: 34px; }
    .mcm-hero { min-height: auto; padding: calc(74px + var(--mcm-single-top-mobile, 54px)) 0 70px; background-position: center top; }
    .mcm-hero .mcm-container { width: min(100% - 24px, 1180px); }
    .mcm-single-title { font-size: clamp(38px, 16vw, 60px); line-height: .92; }
    .mcm-subtitle { font-size: 15px; }
    .mcm-description { font-size: 15px; }
    .mcm-gallery-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mcm-gallery-item { height: 110px; }
    .mcm-teaser,
    .mcm-info-zone { padding: 44px 0; }
    .mcm-doc-buttons { flex-direction: column; align-items: stretch; }
    .mcm-btn { width: 100%; }
    .mcm-date-card { width: min(100%, 210px); }
}

@media (max-width: 420px) {
    .mcm-grid { grid-template-columns: 1fr; }
    .mcm-card { aspect-ratio: 4 / 4.7; }
    .mcm-gallery-strip { grid-template-columns: 1fr; }
    .mcm-gallery-item { height: 180px; }
    .mcm-info-row { padding: 22px 0; }
    .mcm-date-cards { align-items: stretch; }
    .mcm-date-card { width: 100%; }
}
