@font-face {
    font-family: "ManropeLocal";
    src: url("/fonts/manrope/manrope-regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ManropeLocal";
    src: url("/fonts/manrope/manrope-medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ManropeLocal";
    src: url("/fonts/manrope/manrope-semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ManropeLocal";
    src: url("/fonts/manrope/manrope-bold.ttf") format("truetype");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SpaceGroteskLocal";
    src: url("/fonts/space-grotesk/SpaceGrotesk-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SpaceGroteskLocal";
    src: url("/fonts/space-grotesk/SpaceGrotesk-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SpaceGroteskLocal";
    src: url("/fonts/space-grotesk/SpaceGrotesk-Bold.ttf") format("truetype");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --cc-bg: #0e0e0e;
    --cc-paper: #f4f1ea;
    --cc-paper-soft: #ebe6dc;
    --cc-ink: #111111;
    --cc-white: #ffffff;
    --cc-muted: #726e64;
    --cc-line: rgba(17,17,17,.16);
    --cc-line-light: rgba(255,255,255,.18);
    --cc-accent: #f0b400;
    --cc-danger: #b91c1c;
    --cc-success: #22c55e;

    --cc-font-ui: "ManropeLocal", Arial, Helvetica, sans-serif;
    --cc-font-display: "SpaceGroteskLocal", "ManropeLocal", Arial, Helvetica, sans-serif;
    --cc-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--cc-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

body {
    margin: 0;
    font-family: var(--cc-font-ui);
    background: var(--cc-paper);
    color: var(--cc-ink);
}

a {
    color: inherit;
}

.cc-wrap {
    width: min(var(--cc-max), calc(100% - 40px));
    margin: 0 auto;
}

.cc-topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(14,14,14,.78);
    backdrop-filter: blur(18px);
    color: #fff;
}

.cc-nav {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cc-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.cc-brand-mark {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #111;
    display: grid;
    place-items: center;
    overflow: hidden;
    font-family: var(--cc-font-display);
    font-weight: 900;
    letter-spacing: -.08em;
}

.cc-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-brand-text {
    display: grid;
    gap: 1px;
}

.cc-brand-name {
    font-family: var(--cc-font-display);
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.055em;
}

.cc-brand-sub {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.56);
}

.cc-nav-right {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cc-status {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.cc-status::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--cc-success);
}

.cc-status.is-closed::before {
    background: var(--cc-danger);
}

.cc-back {
    color: rgba(255,255,255,.74);
    text-decoration: none;
}

.cc-back:hover {
    color: #fff;
}

.cc-event-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 20%, rgba(240,180,0,.22), transparent 32%),
        linear-gradient(135deg, #111 0%, #1c1c1c 45%, #050505 100%);
    color: #fff;
}

.cc-event-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .52;
    filter: grayscale(.1) contrast(1.08);
}

.cc-event-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.54) 46%, rgba(0,0,0,.16) 100%),
        linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.10) 48%);
}

.cc-event-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 44px;
    align-items: end;
    padding: 140px 0 70px;
}

.cc-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--cc-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.cc-title {
    margin: 0;
    max-width: 940px;
    font-family: var(--cc-font-display);
    font-size: clamp(56px, 8vw, 118px);
    line-height: .82;
    letter-spacing: -.095em;
    font-weight: 700;
    text-transform: uppercase;
}

.cc-lead {
    margin: 26px 0 0;
    max-width: 760px;
    color: rgba(255,255,255,.74);
    font-size: 19px;
    line-height: 1.7;
    font-weight: 500;
}

.cc-info-panel {
    border: 1px solid var(--cc-line-light);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
}

.cc-panel-title {
    padding: 16px 18px;
    border-bottom: 1px solid var(--cc-line-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.62);
}

.cc-facts {
    display: grid;
}

.cc-fact {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--cc-line-light);
}

.cc-fact:last-child {
    border-bottom: 0;
}

.cc-fact span {
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 800;
}

.cc-fact strong {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.cc-main {
    background: var(--cc-paper);
    padding: 76px 0 90px;
}

.cc-section {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 36px;
    padding: 38px 0;
    border-top: 1px solid var(--cc-line);
}

.cc-section:last-child {
    border-bottom: 1px solid var(--cc-line);
}

.cc-section-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2em;
    color: var(--cc-muted);
    text-transform: uppercase;
    padding-top: 10px;
}

.cc-section-content h2,
.cc-block-title {
    margin: 0;
    font-family: var(--cc-font-display);
    font-size: clamp(30px, 4vw, 52px);
    line-height: .94;
    letter-spacing: -.075em;
    font-weight: 700;
    text-transform: uppercase;
}

.cc-section-head {
    margin-bottom: 28px;
}

.cc-section-head p,
.cc-content {
    color: var(--cc-muted);
    font-size: 16px;
    line-height: 1.74;
    font-weight: 500;
    max-width: 760px;
}

.cc-crew-list {
    display: grid;
    border-top: 1px solid var(--cc-line);
}

.cc-crew-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 140px;
    gap: 24px;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid var(--cc-line);
    text-decoration: none;
}

.cc-crew-row:hover .cc-crew-main h3 {
    color: #000;
    transform: translateX(8px);
}

.cc-crew-index {
    font-family: var(--cc-font-display);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -.08em;
    color: rgba(17,17,17,.22);
}

.cc-crew-main span {
    display: block;
    margin-bottom: 8px;
    color: var(--cc-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cc-crew-main h3 {
    margin: 0;
    font-family: var(--cc-font-display);
    font-size: clamp(30px, 4vw, 52px);
    line-height: .92;
    letter-spacing: -.08em;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform .16s ease;
}

.cc-crew-main p {
    margin: 12px 0 0;
    color: var(--cc-muted);
    font-size: 15px;
    max-width: 640px;
}

.cc-crew-action {
    justify-self: end;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cc-empty {
    padding: 24px;
    border: 1px dashed var(--cc-line);
    color: var(--cc-muted);
}

.cc-footer {
    background: var(--cc-bg);
    color: rgba(255,255,255,.54);
    padding: 28px 0;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cc-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 24px;
    align-items: start;
}

.cc-stack {
    display: grid;
    gap: 18px;
}

.cc-block {
    background: rgba(255,255,255,.74);
    border: 1px solid var(--cc-line);
}

.cc-block-head {
    padding: 20px 22px;
    border-bottom: 1px solid var(--cc-line);
}

.cc-block-body {
    padding: 22px;
}

.cc-form {
    display: grid;
    gap: 14px;
}

.cc-field {
    display: grid;
    gap: 7px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cc-input,
.cc-select,
.cc-textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(17,17,17,.28);
    background: #fff;
    color: var(--cc-ink);
    padding: 11px 12px;
    font: inherit;
    font-size: 14px;
    border-radius: 0;
}

.cc-textarea {
    min-height: 92px;
    resize: vertical;
}

.cc-input:focus,
.cc-select:focus,
.cc-textarea:focus {
    outline: 2px solid var(--cc-accent);
    border-color: #111;
}

.cc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cc-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--cc-muted);
    font-size: 13px;
    font-weight: 600;
}

.cc-check input {
    margin-top: 4px;
}

.cc-shifts {
    display: grid;
    border: 1px solid var(--cc-line);
}

.cc-shift {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 13px;
    border-bottom: 1px solid var(--cc-line);
    background: rgba(255,255,255,.74);
}

.cc-shift:last-child {
    border-bottom: 0;
}

.cc-shift:hover {
    background: var(--cc-paper-soft);
}

.cc-shift input {
    margin-top: 4px;
}

.cc-shift strong {
    display: block;
    font-size: 14px;
    font-weight: 900;
}

.cc-shift span span {
    display: block;
    color: var(--cc-muted);
    font-size: 12px;
    margin-top: 2px;
    font-weight: 600;
}

.cc-card-label {
    display: block;
    margin-bottom: 9px;
    color: var(--cc-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cc-button {
    min-height: 48px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    padding: 12px 14px;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
}

.cc-button:hover {
    background: #000;
}

.cc-alert {
    padding: 13px 14px;
    border: 1px solid var(--cc-line);
    font-weight: 800;
    margin-bottom: 14px;
}

.cc-alert.success {
    color: var(--cc-success);
    background: #eef7f1;
}

.cc-alert.error {
    color: var(--cc-danger);
    background: #fff0f0;
}

@media (max-width: 980px) {
    .cc-event-hero-inner,
    .cc-two-col,
    .cc-section {
        grid-template-columns: 1fr;
    }

    .cc-event-hero {
        min-height: 680px;
    }

    .cc-info-panel {
        max-width: 420px;
    }
}

@media (max-width: 680px) {
    .cc-wrap {
        width: min(100% - 24px, var(--cc-max));
    }

    .cc-nav {
        height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .cc-event-hero {
        min-height: 640px;
    }

    .cc-event-hero-inner {
        padding: 118px 0 44px;
    }

    .cc-title {
        font-size: clamp(48px, 16vw, 72px);
    }

    .cc-crew-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cc-crew-index {
        font-size: 22px;
    }

    .cc-crew-action {
        justify-self: start;
    }

    .cc-form-grid,
    .cc-fact {
        grid-template-columns: 1fr;
    }
}

/* Detailseite – Festival/Premium Refinement */
.cc-topbar {
    transition: background .18s ease, border-color .18s ease;
}

.cc-topbar.is-scrolled {
    background: rgba(14,14,14,.94);
    border-color: rgba(255,255,255,.18);
}

.cc-detail-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(240,180,0,.20), transparent 30%),
        linear-gradient(135deg, #171717 0%, #080808 100%);
    color: #fff;
}

.cc-detail-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .38;
    filter: grayscale(.08) contrast(1.1);
}

.cc-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.58) 48%, rgba(0,0,0,.22) 100%),
        linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.08) 58%);
}

.cc-detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 48px;
    align-items: end;
    padding: 150px 0 58px;
}

.cc-detail-title {
    margin: 0;
    max-width: 900px;
    font-family: var(--cc-font-display);
    font-size: clamp(54px, 8vw, 106px);
    line-height: .86;
    letter-spacing: -.09em;
    font-weight: 700;
    text-transform: uppercase;
}

.cc-detail-lead {
    margin: 24px 0 0;
    max-width: 720px;
    color: rgba(255,255,255,.76);
    font-size: 18px;
    line-height: 1.68;
    font-weight: 500;
}

.cc-detail-meta {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}

.cc-detail-meta div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    padding: 15px 17px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.cc-detail-meta div:last-child {
    border-bottom: 0;
}

.cc-detail-meta span {
    color: rgba(255,255,255,.56);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cc-detail-meta strong {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.cc-detail-main {
    background: var(--cc-paper);
    padding: 70px 0 90px;
}

.cc-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 42px;
    align-items: start;
}

.cc-detail-content {
    display: grid;
    gap: 56px;
}

.cc-editorial-block {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 34px;
    padding-top: 34px;
    border-top: 1px solid var(--cc-line);
}

.cc-editorial-block h2 {
    margin: 0 0 18px;
    font-family: var(--cc-font-display);
    font-size: clamp(30px, 4vw, 52px);
    line-height: .94;
    letter-spacing: -.075em;
    font-weight: 700;
    text-transform: uppercase;
}

.cc-apply-panel {
    position: sticky;
    top: 104px;
    background: #fff;
    border: 1px solid rgba(17,17,17,.18);
    padding: 0;
}

.cc-apply-head {
    padding: 22px;
    border-bottom: 1px solid rgba(17,17,17,.16);
    background: #111;
    color: #fff;
}

.cc-apply-head span {
    display: block;
    margin-bottom: 8px;
    color: var(--cc-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cc-apply-head h2 {
    margin: 0;
    font-family: var(--cc-font-display);
    font-size: 32px;
    line-height: .96;
    letter-spacing: -.065em;
    text-transform: uppercase;
}

.cc-apply-panel .cc-form,
.cc-apply-panel .cc-alert,
.cc-apply-panel .cc-empty {
    margin: 22px;
}

.cc-public-shift-list {
    border-top: 1px solid var(--cc-line);
}

.cc-public-shift-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--cc-line);
}

.cc-public-shift-row strong {
    display: block;
    font-weight: 900;
}

.cc-public-shift-row span {
    display: block;
    margin-top: 4px;
    color: var(--cc-muted);
    font-size: 13px;
    font-weight: 600;
}

.cc-public-shift-row em {
    font-style: normal;
    color: var(--cc-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cc-mini-label {
    margin-bottom: 9px;
    color: var(--cc-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cc-input,
.cc-select,
.cc-textarea {
    background: #fafafa;
}

@media (max-width: 980px) {
    .cc-detail-hero-inner,
    .cc-detail-layout,
    .cc-editorial-block {
        grid-template-columns: 1fr;
    }

    .cc-detail-hero {
        min-height: 620px;
    }

    .cc-apply-panel {
        position: static;
    }
}

@media (max-width: 680px) {
    .cc-detail-hero {
        min-height: 560px;
    }

    .cc-detail-hero-inner {
        padding: 122px 0 42px;
    }

    .cc-detail-title {
        font-size: clamp(44px, 15vw, 68px);
    }

    .cc-detail-meta div,
    .cc-public-shift-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

/* NCore Festival Detail v2 */
.cc-brand-symbol {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    color: var(--cc-accent);
    font-family: var(--cc-font-display);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -.06em;
}

.cc-role-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(240,180,0,.18), transparent 34%),
        linear-gradient(120deg, #050505 0%, #111 56%, #1e1600 100%);
    color: #fff;
}

.cc-role-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .48;
    filter: grayscale(.08) contrast(1.12);
}

.cc-role-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.64) 50%, rgba(0,0,0,.20) 100%),
        linear-gradient(0deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.10) 55%);
}

.cc-role-hero-inner {
    position: relative;
    z-index: 2;
    padding: 150px 0 72px;
}

.cc-role-copy {
    max-width: 980px;
}

.cc-role-title {
    margin: 0;
    font-family: var(--cc-font-display);
    font-size: clamp(52px, 8vw, 104px);
    line-height: .86;
    letter-spacing: -.095em;
    font-weight: 700;
    text-transform: uppercase;
}

.cc-role-lead {
    max-width: 720px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 19px;
    line-height: 1.7;
    font-weight: 500;
}

.cc-role-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.cc-role-facts span {
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.07);
    padding: 10px 12px;
    color: rgba(255,255,255,.80);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cc-hero-cta {
    display: inline-flex;
    margin-top: 34px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    background: var(--cc-accent);
    color: #111;
    padding: 0 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.cc-hero-cta:hover {
    background: #fff;
}

.cc-role-main {
    background: var(--cc-paper);
}

.cc-role-section {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 44px;
    padding: 64px 0;
    border-top: 1px solid rgba(17,17,17,.16);
}

.cc-role-section:first-child {
    border-top: 0;
}

.cc-role-label {
    color: var(--cc-muted);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding-top: 12px;
}

.cc-role-content h2,
.cc-apply-intro h2 {
    margin: 0 0 20px;
    font-family: var(--cc-font-display);
    font-size: clamp(34px, 5vw, 64px);
    line-height: .90;
    letter-spacing: -.085em;
    text-transform: uppercase;
}

.cc-content {
    max-width: 780px;
    color: #4f4a42;
    font-size: 17px;
    line-height: 1.75;
}

.cc-timetable {
    border-top: 1px solid rgba(17,17,17,.16);
}

.cc-timetable-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(17,17,17,.16);
}

.cc-timetable-row strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
}

.cc-timetable-row span {
    display: block;
    margin-top: 5px;
    color: var(--cc-muted);
    font-size: 13px;
    font-weight: 650;
}

.cc-timetable-row em {
    font-style: normal;
    color: var(--cc-muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.cc-apply-area {
    background: #0b0b0b;
    color: #fff;
    padding: 82px 0;
}

.cc-apply-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 56px;
    align-items: start;
}

.cc-apply-intro {
    position: sticky;
    top: 120px;
}

.cc-apply-intro p {
    max-width: 520px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.72;
}

.cc-apply-card {
    background: #f7f4ed;
    color: #111;
    padding: 28px;
}

.cc-apply-card .cc-shifts {
    border-color: rgba(17,17,17,.18);
}

.cc-apply-card .cc-shift {
    background: #fff;
    border-color: rgba(17,17,17,.14);
}

.cc-mini-label {
    margin-bottom: 10px;
    color: #6e675b;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cc-topbar {
    background: rgba(5,5,5,.58);
    border-bottom-color: rgba(255,255,255,.10);
}

.cc-topbar.is-scrolled {
    background: rgba(5,5,5,.92);
}

.cc-back::before {
    content: "← ";
}

@media (max-width: 980px) {
    .cc-role-section,
    .cc-apply-grid {
        grid-template-columns: 1fr;
    }

    .cc-apply-intro {
        position: static;
    }
}

@media (max-width: 680px) {
    .cc-role-hero {
        min-height: 620px;
    }

    .cc-role-hero-inner {
        padding: 128px 0 50px;
    }

    .cc-role-title {
        font-size: clamp(44px, 15vw, 70px);
    }

    .cc-timetable-row {
        flex-direction: column;
        gap: 8px;
    }

    .cc-apply-card {
        padding: 20px;
    }
}

/* Eventübersicht – heller Festival/NCore Look */
.cc-page-overview {
    background: #f4f1ea;
}

.cc-page-overview .cc-topbar {
    background: rgba(244, 241, 234, .86);
    color: #111;
    border-bottom: 1px solid rgba(17,17,17,.12);
}

.cc-page-overview .cc-topbar.is-scrolled {
    background: rgba(244, 241, 234, .96);
    border-bottom-color: rgba(17,17,17,.18);
}

.cc-page-overview .cc-brand-symbol {
    border-color: rgba(17,17,17,.22);
    color: #111;
}

.cc-page-overview .cc-brand-sub,
.cc-page-overview .cc-back {
    color: rgba(17,17,17,.54);
}

.cc-page-overview .cc-status {
    color: #111;
}

.cc-overview-hero {
    min-height: 760px;
    padding: 150px 0 90px;
    background:
        radial-gradient(circle at 74% 26%, rgba(240,180,0,.25), transparent 28%),
        linear-gradient(135deg, #f6f2e8 0%, #e7dfd0 58%, #d8cbb4 100%);
    overflow: hidden;
}

.cc-overview-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 58px;
    align-items: end;
}

.cc-overview-copy {
    position: relative;
    z-index: 2;
}

.cc-overview-title {
    margin: 0;
    max-width: 900px;
    font-family: var(--cc-font-display);
    font-size: clamp(58px, 9vw, 124px);
    line-height: .82;
    letter-spacing: -.10em;
    font-weight: 700;
    text-transform: uppercase;
}

.cc-overview-lead {
    max-width: 720px;
    margin: 28px 0 0;
    color: #514b41;
    font-size: 20px;
    line-height: 1.68;
    font-weight: 550;
}

.cc-overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 36px;
}

.cc-page-overview .cc-hero-cta {
    background: #111;
    color: #fff;
}

.cc-page-overview .cc-hero-cta:hover {
    background: var(--cc-accent);
    color: #111;
}

.cc-secondary-link {
    color: #111;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid #111;
    padding-bottom: 5px;
}

.cc-overview-visual {
    position: relative;
    min-height: 540px;
    border: 1px solid rgba(17,17,17,.18);
    background: #111;
    overflow: hidden;
}

.cc-overview-visual img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    display: block;
    opacity: .88;
    filter: contrast(1.05) saturate(.92);
}

.cc-overview-placeholder {
    min-height: 540px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 70% 20%, rgba(240,180,0,.36), transparent 35%),
        #111;
    color: #fff;
}

.cc-overview-placeholder span {
    font-family: var(--cc-font-display);
    font-size: 180px;
    font-weight: 700;
    letter-spacing: -.12em;
}

.cc-overview-data {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    background: rgba(244,241,234,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(17,17,17,.18);
}

.cc-overview-data div {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 14px;
    padding: 13px 15px;
    border-bottom: 1px solid rgba(17,17,17,.14);
}

.cc-overview-data div:last-child {
    border-bottom: 0;
}

.cc-overview-data span {
    color: #6f675a;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cc-overview-data strong {
    color: #111;
    font-size: 13px;
    font-weight: 950;
}

.cc-overview-main {
    background: #f4f1ea;
    padding: 0 0 90px;
}

.cc-overview-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(17,17,17,.16);
    border-bottom: 1px solid rgba(17,17,17,.16);
}

.cc-overview-strip div {
    padding: 26px 24px;
    border-right: 1px solid rgba(17,17,17,.16);
}

.cc-overview-strip div:last-child {
    border-right: 0;
}

.cc-overview-strip span {
    display: block;
    margin-bottom: 18px;
    color: rgba(17,17,17,.34);
    font-family: var(--cc-font-display);
    font-size: 34px;
    line-height: .9;
    font-weight: 700;
    letter-spacing: -.08em;
}

.cc-overview-strip strong {
    display: block;
    font-size: 15px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cc-overview-strip p {
    margin: 8px 0 0;
    color: #6f675a;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 550;
}

.cc-overview-section {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 44px;
    padding: 72px 0;
    border-bottom: 1px solid rgba(17,17,17,.16);
}

.cc-overview-section-label {
    color: #746c5f;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding-top: 13px;
}

.cc-overview-section-content h2,
.cc-overview-head h2,
.cc-overview-note h2 {
    margin: 0;
    font-family: var(--cc-font-display);
    font-size: clamp(38px, 5vw, 72px);
    line-height: .88;
    letter-spacing: -.09em;
    text-transform: uppercase;
}

.cc-overview-head {
    margin-bottom: 34px;
}

.cc-overview-head p {
    max-width: 720px;
    margin: 18px 0 0;
    color: #5e574c;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 550;
}

.cc-overview-crew-list {
    border-top: 1px solid rgba(17,17,17,.18);
}

.cc-overview-crew-row {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 180px 120px;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(17,17,17,.18);
    text-decoration: none;
}

.cc-overview-crew-row:hover .cc-overview-crew-text h3 {
    transform: translateX(8px);
}

.cc-overview-crew-number {
    color: rgba(17,17,17,.28);
    font-family: var(--cc-font-display);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -.08em;
}

.cc-overview-crew-text span {
    display: block;
    margin-bottom: 8px;
    color: #746c5f;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cc-overview-crew-text h3 {
    margin: 0;
    font-family: var(--cc-font-display);
    font-size: clamp(30px, 4vw, 56px);
    line-height: .88;
    letter-spacing: -.085em;
    text-transform: uppercase;
    transition: transform .16s ease;
}

.cc-overview-crew-text p {
    max-width: 660px;
    margin: 13px 0 0;
    color: #5e574c;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 550;
}

.cc-overview-crew-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cc-overview-crew-meta span {
    border: 1px solid rgba(17,17,17,.18);
    padding: 8px 9px;
    color: #524b41;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cc-overview-crew-action {
    justify-self: end;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.cc-overview-note {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 44px;
    padding: 72px 0 0;
}

.cc-overview-note p {
    margin: 0;
    color: #5e574c;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 550;
}

@media (max-width: 980px) {
    .cc-overview-hero-grid,
    .cc-overview-section,
    .cc-overview-note {
        grid-template-columns: 1fr;
    }

    .cc-overview-strip {
        grid-template-columns: 1fr;
    }

    .cc-overview-strip div {
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,17,.16);
    }

    .cc-overview-strip div:last-child {
        border-bottom: 0;
    }

    .cc-overview-crew-row {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .cc-overview-crew-meta,
    .cc-overview-crew-action {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .cc-overview-hero {
        min-height: auto;
        padding: 128px 0 56px;
    }

    .cc-overview-title {
        font-size: clamp(50px, 16vw, 76px);
    }

    .cc-overview-visual {
        min-height: 420px;
    }

    .cc-overview-visual img,
    .cc-overview-placeholder {
        min-height: 420px;
    }

    .cc-overview-data div,
    .cc-overview-crew-row {
        grid-template-columns: 1fr;
    }

    .cc-overview-crew-meta,
    .cc-overview-crew-action {
        grid-column: auto;
    }
}

/* Eventübersicht v3 – helles Festival-Crewportal */
.cc-page-overview {
    background: #f2ecdf;
}

.cc-page-overview .cc-topbar {
    background: rgba(242, 236, 223, .88);
    color: #101010;
    border-bottom: 1px solid rgba(16,16,16,.12);
}

.cc-page-overview .cc-topbar.is-scrolled {
    background: rgba(242, 236, 223, .97);
}

.cc-page-overview .cc-brand-symbol {
    color: #101010;
    border-color: rgba(16,16,16,.22);
}

.cc-page-overview .cc-brand-sub {
    color: rgba(16,16,16,.48);
}

.cc-page-overview .cc-status {
    color: #101010;
}

.cc-home-hero {
    position: relative;
    min-height: 780px;
    padding: 148px 0 0;
    background:
        radial-gradient(circle at 72% 14%, rgba(240, 180, 0, .28), transparent 28%),
        linear-gradient(135deg, #f6f0e4 0%, #ece0ca 54%, #d8c59f 100%);
    overflow: hidden;
}

.cc-home-noise {
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image:
        linear-gradient(rgba(16,16,16,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,16,16,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.cc-home-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 72px;
    align-items: center;
}

.cc-home-title {
    margin: 0;
    max-width: 900px;
    font-family: var(--cc-font-display);
    font-size: clamp(58px, 8.8vw, 122px);
    line-height: .82;
    letter-spacing: -.105em;
    text-transform: uppercase;
    font-weight: 700;
}

.cc-home-lead {
    max-width: 690px;
    margin: 30px 0 0;
    color: #4e4638;
    font-size: 21px;
    line-height: 1.62;
    font-weight: 600;
}

.cc-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.cc-home-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #101010;
    color: #fff;
    padding: 0 22px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cc-home-button:hover {
    background: var(--cc-accent);
    color: #101010;
}

.cc-home-link {
    color: #101010;
    text-decoration: none;
    border-bottom: 2px solid #101010;
    padding-bottom: 6px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cc-home-poster {
    position: relative;
    height: 560px;
    background: #101010;
    border: 1px solid rgba(16,16,16,.22);
    overflow: hidden;
    box-shadow: 24px 24px 0 rgba(16,16,16,.08);
}

.cc-home-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(.95);
}

.cc-home-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0,0,0,.38), transparent 55%),
        linear-gradient(90deg, rgba(0,0,0,.15), transparent);
    pointer-events: none;
}

.cc-home-poster-fallback {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 18%, rgba(240,180,0,.32), transparent 30%),
        linear-gradient(135deg, #101010, #221b08);
}

.cc-home-poster-fallback span {
    color: var(--cc-accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .22em;
}

.cc-home-poster-fallback strong {
    font-family: var(--cc-font-display);
    font-size: 54px;
    line-height: .88;
    letter-spacing: -.085em;
    text-transform: uppercase;
}

.cc-home-facts {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 82px;
    border-top: 1px solid rgba(16,16,16,.18);
    border-bottom: 1px solid rgba(16,16,16,.18);
    background: rgba(242,236,223,.58);
    backdrop-filter: blur(10px);
}

.cc-home-facts div {
    padding: 20px 22px;
    border-right: 1px solid rgba(16,16,16,.18);
}

.cc-home-facts div:last-child {
    border-right: 0;
}

.cc-home-facts span {
    display: block;
    margin-bottom: 8px;
    color: #7a705f;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cc-home-facts strong {
    display: block;
    color: #101010;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.cc-home-main {
    background: #f2ecdf;
    padding: 0 0 96px;
}

.cc-home-process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid rgba(16,16,16,.16);
}

.cc-home-process article {
    padding: 34px 28px;
    border-right: 1px solid rgba(16,16,16,.16);
}

.cc-home-process article:last-child {
    border-right: 0;
}

.cc-home-process span {
    display: block;
    margin-bottom: 22px;
    color: rgba(16,16,16,.28);
    font-family: var(--cc-font-display);
    font-size: 40px;
    line-height: .8;
    letter-spacing: -.08em;
    font-weight: 700;
}

.cc-home-process h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cc-home-process p {
    margin: 10px 0 0;
    color: #625847;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 560;
}

.cc-home-section {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 56px;
    padding: 84px 0;
    border-bottom: 1px solid rgba(16,16,16,.16);
}

.cc-home-section-label {
    padding-top: 12px;
    color: #7a705f;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.cc-home-section-content h2,
.cc-home-section-head h2,
.cc-home-note h2 {
    margin: 0;
    font-family: var(--cc-font-display);
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: .88;
    letter-spacing: -.09em;
    text-transform: uppercase;
    font-weight: 700;
}

.cc-home-section-head {
    margin-bottom: 38px;
}

.cc-home-section-head p,
.cc-home-note p,
.cc-home-section .cc-content {
    max-width: 780px;
    margin-top: 20px;
    color: #5d5343;
    font-size: 17px;
    line-height: 1.72;
    font-weight: 560;
}

.cc-home-roles {
    border-top: 1px solid rgba(16,16,16,.18);
}

.cc-home-role {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 180px 120px;
    gap: 28px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(16,16,16,.18);
    text-decoration: none;
}

.cc-home-role:hover .cc-home-role-copy h3 {
    transform: translateX(10px);
}

.cc-home-role-number {
    color: rgba(16,16,16,.25);
    font-family: var(--cc-font-display);
    font-size: 38px;
    line-height: .9;
    font-weight: 700;
    letter-spacing: -.085em;
}

.cc-home-role-copy span {
    display: block;
    margin-bottom: 8px;
    color: #7a705f;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cc-home-role-copy h3 {
    margin: 0;
    font-family: var(--cc-font-display);
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: .86;
    letter-spacing: -.09em;
    text-transform: uppercase;
    font-weight: 700;
    transition: transform .16s ease;
}

.cc-home-role-copy p {
    max-width: 650px;
    margin: 14px 0 0;
    color: #5d5343;
    font-size: 15px;
    line-height: 1.58;
    font-weight: 560;
}

.cc-home-role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cc-home-role-tags span {
    padding: 8px 9px;
    border: 1px solid rgba(16,16,16,.18);
    color: #5d5343;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cc-home-role-action {
    justify-self: end;
    color: #101010;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cc-home-note {
    padding: 84px 0 0;
}

.cc-home-note p {
    max-width: 820px;
}

@media (max-width: 980px) {
    .cc-home-grid,
    .cc-home-section {
        grid-template-columns: 1fr;
    }

    .cc-home-poster {
        max-width: 520px;
        height: 500px;
    }

    .cc-home-facts,
    .cc-home-process {
        grid-template-columns: 1fr;
    }

    .cc-home-facts div,
    .cc-home-process article {
        border-right: 0;
        border-bottom: 1px solid rgba(16,16,16,.16);
    }

    .cc-home-facts div:last-child,
    .cc-home-process article:last-child {
        border-bottom: 0;
    }

    .cc-home-role {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .cc-home-role-tags,
    .cc-home-role-action {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .cc-home-hero {
        min-height: auto;
        padding: 124px 0 0;
    }

    .cc-home-title {
        font-size: clamp(52px, 16vw, 76px);
    }

    .cc-home-lead {
        font-size: 18px;
    }

    .cc-home-poster {
        height: 420px;
        box-shadow: 14px 14px 0 rgba(16,16,16,.08);
    }

    .cc-home-role {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cc-home-role-tags,
    .cc-home-role-action {
        grid-column: auto;
    }
}

/* FINAL FIX: Detailseite Helferposten – Titel und Hero sauberer */
.cc-role-hero {
    min-height: 520px !important;
}

.cc-role-hero-inner {
    padding: 135px 0 58px !important;
}

.cc-role-title {
    max-width: 980px !important;
    font-size: clamp(46px, 6.4vw, 86px) !important;
    line-height: .88 !important;
    letter-spacing: -.085em !important;
}

.cc-role-lead {
    max-width: 680px !important;
    font-size: 18px !important;
    margin-top: 22px !important;
}

@media (max-width: 900px) {
    .cc-role-hero {
        min-height: 560px !important;
    }

    .cc-role-title {
        font-size: clamp(42px, 12vw, 68px) !important;
    }
}

@media (max-width: 560px) {
    .cc-role-hero-inner {
        padding: 118px 0 44px !important;
    }

    .cc-role-title {
        font-size: clamp(38px, 13vw, 58px) !important;
        letter-spacing: -.075em !important;
    }
}

/* MOBILE FINAL: Helferbereich-Titel darf nicht überlaufen */
@media (max-width: 680px) {
    .cc-role-hero {
        min-height: 570px !important;
    }

    .cc-role-hero-inner {
        padding: 128px 0 48px !important;
    }

    .cc-role-title {
        max-width: calc(100vw - 44px) !important;
        font-size: clamp(34px, 10.5vw, 44px) !important;
        line-height: .92 !important;
        letter-spacing: -.065em !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    .cc-role-lead {
        max-width: calc(100vw - 44px) !important;
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    .cc-role-facts {
        gap: 8px !important;
        margin-top: 26px !important;
    }

    .cc-role-facts span {
        padding: 9px 10px !important;
        font-size: 11px !important;
    }

    .cc-hero-cta {
        width: 100% !important;
        max-width: 330px !important;
        margin-top: 28px !important;
    }

    .cc-nav {
        gap: 18px !important;
    }

    .cc-brand-symbol {
        width: 40px !important;
        height: 40px !important;
    }

    .cc-brand-name {
        font-size: 20px !important;
    }
}

/* FINAL POLISH: Event-Logo und Poster hochwertig/p passend */
.cc-brand {
    gap: 14px !important;
    text-decoration: none !important;
}

.cc-brand-symbol {
    width: 52px !important;
    height: 52px !important;
    border: 1px solid rgba(16,16,16,.16) !important;
    background: rgba(255,255,255,.54) !important;
    box-shadow: 0 12px 36px rgba(16,16,16,.05) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    backdrop-filter: blur(12px);
}

.cc-brand-logo {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    padding: 5px !important;
}

.cc-brand-fallback {
    font-family: var(--cc-font-display);
    font-weight: 800;
    font-size: 17px;
    line-height: 1;
    letter-spacing: -.04em;
    color: #101010;
}

.cc-brand-name {
    font-size: 18px !important;
    letter-spacing: -.035em !important;
}

.cc-brand-sub {
    color: rgba(16,16,16,.48) !important;
    letter-spacing: .2em !important;
}

.cc-page-overview .cc-brand-symbol {
    background: rgba(255,255,255,.48) !important;
}

.cc-home-poster {
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    background: transparent !important;
    overflow: visible !important;
    box-shadow: none !important;
}

.cc-home-poster::after {
    display: none !important;
}

.cc-home-poster-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    background: #0b0b0b;
    overflow: hidden;
    border: 1px solid rgba(16,16,16,.12);
    box-shadow: 22px 22px 0 rgba(16,16,16,.07);
    isolation: isolate;
}

.cc-home-poster-backdrop {
    position: absolute;
    inset: 0;
    background-image: var(--poster-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.16);
    filter: blur(22px);
    opacity: .32;
    z-index: 1;
}

.cc-home-poster-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.42)),
        radial-gradient(circle at 80% 20%, rgba(255,190,0,.18), transparent 34%);
}

.cc-home-poster-image {
    position: relative !important;
    z-index: 2;
    width: 100% !important;
    height: 100% !important;
    min-height: 520px;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    padding: 0 !important;
    background: transparent !important;
}

.cc-home-poster-fallback {
    min-height: 520px;
}

@media (max-width: 980px) {
    .cc-home-poster {
        max-width: 520px !important;
        width: 100% !important;
        aspect-ratio: 3 / 4 !important;
    }

    .cc-home-poster-media,
    .cc-home-poster-image,
    .cc-home-poster-fallback {
        min-height: 500px !important;
    }
}

@media (max-width: 680px) {
    .cc-brand-symbol {
        width: 44px !important;
        height: 44px !important;
    }

    .cc-brand-name {
        font-size: 17px !important;
    }

    .cc-brand-sub {
        font-size: 10px !important;
    }

    .cc-home-poster {
        height: auto !important;
        max-width: 100% !important;
        aspect-ratio: 3 / 4 !important;
        box-shadow: none !important;
    }

    .cc-home-poster-media,
    .cc-home-poster-image,
    .cc-home-poster-fallback {
        min-height: 430px !important;
    }

    .cc-home-poster-media {
        box-shadow: 14px 14px 0 rgba(16,16,16,.08);
    }
}
