/* ============================================================================
   FILMCASTING — Components stylesheet

   Conventions
   -----------
   - BEM-flavored class names (.fc-component, .fc-component__element, …)
   - Design tokens live in :root (variables.css)
   - Media queries are colocated with their owning component
   - Section banners separate logical domains; subheaders split larger sections

   Reading order
   -------------
    1. Typography presets
    2. Navigation
    3. Hero (landing page)
    4. Marketing content (landing page)
    5. Auth & onboarding container
    6. Forms — buttons, inputs, helpers, TomSelect
    7. Profile views — overview, upload, gallery, subprofiles
    8. Dashboard
    9. Talent — search & profile
   10. Casting — index, form, role builder
   11. Panel utility
   12. Footer
   ============================================================================ */


/* ============================================================================ */
/*  1. TYPOGRAPHY PRESETS                                                       */
/* ============================================================================ */


.title-small,
.fc-dashboard-intro-panel__eyebrow,
.fc-dashboard-panel-card__kicker,
.fc-profile-overview__eyebrow,
.fc-profile-overview__meta-label,
.fc-panel-utility-label {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-label);
    line-height: var(--fc-lh-tight);
    letter-spacing: var(--fc-ls-label);
    text-transform: uppercase;
}

.fc-container-intro,
.fc-dashboard-intro-panel__lead {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: var(--fc-fs-body-lg);
    line-height: var(--fc-lh-body-loose);
    letter-spacing: var(--fc-ls-body);
}

.fc-dashboard-intro-panel__meta,
.fc-form-panel-intro,
.fc-upload-box-title,
.fc-upload-box-text,
.fc-pill-check-label,
.ts-wrapper,
.ts-control input,
.ts-wrapper.single .ts-control > .item,
.ts-dropdown,
.ts-dropdown .option,
.ts-dropdown .create,
.fc-profile-gallery-placeholder {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-body);
    line-height: var(--fc-lh-body);
    letter-spacing: var(--fc-ls-body);
}

.fc-dashboard-panel-card__text,
.fc-container-support,
.fc-alert,
.fc-upload-file-item,
.default-user-info,
.fc-profile-badge,
.fc-image-tool,
.fc-input-unit-label {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    line-height: 1.6;
    letter-spacing: var(--fc-ls-body);
}

.title-small {
    margin: 0 0 26px;
}

.hero-nav a,
.hero-mobile-menu a,
.default-nav a,
.default-mobile-menu a {
    font-family: "Inter", sans-serif;
    font-size: var(--default-nav-font-size);
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.casting-label {
    font-family: "Boldonse", sans-serif;
    font-weight: 400;
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: 0.23em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.casting-title {
    font-family: "Boldonse", sans-serif;
    font-weight: 200;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    word-break: break-word;
    margin-bottom: 14px;
    /* Titel auf max. 2 Zeilen begrenzen, damit der Strich nicht verschoben wird */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.casting-text {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: var(--fc-fs-body);
    line-height: 1.4;
    letter-spacing: 0.10em;
    /* Text sauber auf max. 5 Zeilen kürzen statt die Karte zu sprengen */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fc-footer-list li {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.fc-search-results__count {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: var(--fc-fs-body);
    line-height: var(--fc-lh-body);
    letter-spacing: var(--fc-ls-body);
    color: var(--fc-text-dark);
}

.fc-talent-card__kicker {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-label);
    line-height: var(--fc-lh-tight);
    letter-spacing: var(--fc-ls-label);
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.46;
}

.fc-talent-profile__topbar-eyebrow {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.46;
}


/* ============================================================================ */
/*  2. NAVIGATION                                                               */
/* ============================================================================ */


.hero-nav-container,
.default-nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.hero-nav-links,
.default-nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-left: 48px;
}

.hero-nav-right,
.default-nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.hero-nav a,
.hero-mobile-menu a {
    color: var(--fc-text-bright);
}

.default-nav a,
.default-mobile-menu a {
    color: var(--fc-text-dark);
}

.hero-nav a:hover,
.hero-mobile-menu a:hover,
.default-nav a:hover,
.default-mobile-menu a:hover {
    opacity: 1;
}

.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 11px 36px;
}

.hero-login {
    margin-left: auto;
    text-decoration: none;
}

.hero-lang-form {
    margin-left: auto;
    margin-right: 24px;
}

.hero-lang-link {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: var(--default-nav-font-size);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-bright);
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.hero-lang-link:hover {
    opacity: 1;
}

.hero-logo {
    position: relative;
    display: inline-block;
}

.hero-logo .logo-default {
    display: block;
}

.hero-logo .logo-open {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.hero-logo img {
    display: block;
    width: auto;
    height: 72px;
}

.hero-nav.is-open {
    background: var(--fc-bg);
}

.hero-nav.is-open .logo-default {
    opacity: 0;
}

.hero-nav.is-open .logo-open {
    opacity: 1;
}

.hero-nav.is-open .hero-nav-toggle span {
    background: var(--fc-text-dark);
}

.default-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    padding: 11px 36px;
    background: var(--fc-bg);
}

.default-lang-form {
    margin-left: auto;
    margin-right: 24px;
}

.default-lang-link {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: var(--default-nav-font-size);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.default-lang-link:hover {
    opacity: 1;
}

.default-login {
    margin-left: auto;
}

.default-logo img {
    display: block;
    width: auto;
    height: 72px;
}

.default-user-menu {
    position: relative;
    margin-left: auto;
}

.default-user-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: var(--default-nav-font-size);
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.hero-nav-right .default-user-toggle {
    color: var(--fc-text-bright);
}

.default-user-toggle:hover,
.default-user-menu.is-open .default-user-toggle {
    opacity: 1;
}

.default-user-menu.is-open .default-user-toggle {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.default-user-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 100;
    display: none;
    min-width: 240px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(42, 40, 37, 0.18);
    background: var(--fc-bg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.default-user-menu.is-open .default-user-dropdown {
    display: block;
}

.default-user-info {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(42, 40, 37, 0.12);
    color: var(--fc-text-dark);
}

.default-user-info small {
    display: block;
    margin-bottom: 4px;
    font-size: var(--fc-fs-label);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    opacity: 0.65;
}

.default-user-info strong {
    font-weight: 700;
    font-size: var(--fc-fs-13);
}

.default-user-dropdown a,
.default-user-logout {
    display: block;
    width: 100%;
    padding: 8px 0;
    border: none;
    background: none;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-meta);
    line-height: 1.2;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.85;
}

.default-user-dropdown a:hover,
.default-user-logout:hover {
    opacity: 1;
}

.default-user-logout-form {
    margin: 0;
}

.hero-nav-toggle,
.default-nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hero-nav-toggle span,
.default-nav-toggle span {
    display: block;
    width: 39px;
    height: 5px;
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hero-nav-toggle span {
    background: var(--fc-text-bright);
}

.default-nav-toggle span {
    background: var(--fc-text-dark);
}

.hero-mobile-menu,
.default-mobile-menu {
    display: none;
    margin-top: 0;
    padding: 14px 36px 6px;
}

.default-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
    background: var(--fc-bg);
}

.hero-mobile-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-nav.is-open .hero-mobile-menu,
.default-nav.is-open .default-mobile-menu {
    display: block;
}

.hero-nav.is-open .hero-nav-toggle span:nth-child(1),
.default-nav.is-open .default-nav-toggle span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hero-nav.is-open .hero-nav-toggle span:nth-child(2),
.default-nav.is-open .default-nav-toggle span:nth-child(2) {
    opacity: 0;
}

.hero-nav.is-open .hero-nav-toggle span:nth-child(3),
.default-nav.is-open .default-nav-toggle span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.hero-mobile-title {
    margin: 10px 0 18px;
    text-align: center;
    font-family: "Boldonse", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.23em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
}

.hero-mobile-menu a,
.hero-mobile-menu button,
.default-mobile-menu a,
.default-mobile-menu button {
    display: block;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
}

.hero-mobile-menu a:last-child {
    border-bottom: 0;
}

@media (max-width: 768px) {
    .hero-nav,
    .default-nav {
        padding: 11px 20px;
    }

    .hero-nav-right,
    .default-nav-right,
    .hero-nav-links,
    .default-nav-links,
    .hero-login,
    .default-login {
        display: none;
    }

    .hero-nav-toggle,
    .default-nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .hero-mobile-menu,
    .default-mobile-menu {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-mobile-divider {
        margin: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-lang-form-mobile {
        margin: 0;
    }

    .hero-lang-link-mobile {
        display: block;
        width: 100%;
        padding: 12px 0;
        border: 0;
        background: transparent;
        text-align: left;
    }
}


/* ============================================================================ */
/*  3. HERO (LANDING PAGE)                                                      */
/* ============================================================================ */


.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 640px;
    height: 76vh;
    background: url('../img/hero.png') center / cover no-repeat;
    color: var(--fc-text-bright);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: var(--hero-width);
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.fc-brand {
    margin: 0;
    min-width: 0;
    max-width: 100%;
    font-family: "Boldonse", sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 7vw, 52px);
    letter-spacing: 0.23em;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
}

.hero-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: var(--hero-width);
    margin: 40px auto 0;
}

.hero-btn {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 274px;
    min-height: 45px;
    border: 1.2px solid currentColor;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-btn-green {
    background: var(--fc-olive-green);
    color: var(--fc-text-bright);
    border-color: var(--fc-olive-green);
}

.hero-btn-transparent {
    border-width: 2px;
    background: transparent;
    color: var(--fc-text-bright);
    border-color: var(--fc-text-bright);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}


/* ============================================================================ */
/*  4. MARKETING CONTENT (LANDING PAGE)                                         */
/* ============================================================================ */


.fc-content-box {
    display: flex;
    flex-direction: column;
    gap: 43px;
    width: 100%;
    max-width: 1384px;
    margin: 0 auto;
    padding-left: 4px;
    padding-right: 4px;
}

.fc-content-box:first-of-type {
    margin-top: 80px;
}

.fc-content-box + .fc-content-box {
    margin-top: 80px;
}

.fc-section-title {
    margin: 0;
    min-width: 0;
    max-width: 100%;
    text-align: center;
    font-family: "Boldonse", sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 5vw, 50px);
    line-height: 1;
    letter-spacing: 0.23em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    white-space: nowrap;
    overflow-wrap: anywhere;
}

.casting-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    row-gap: 16px;
    column-gap: 8px;
    width: 100%;
}

.casting-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 410px;
    height: 351px;
    margin: 0;
    padding: 30px 25px;
    opacity: 1;
    color: inherit;
    text-decoration: none;
}

.casting-divider {
    width: 100%;
    height: 0;
    opacity: 1;
    /* Strich (und Info darunter) an den unteren Kartenrand fixieren,
       damit er unabhängig von der Textmenge immer am gleichen Ort sitzt */
    margin-top: auto;
    margin-bottom: 16px;
}

.boxtyp-1 .casting-divider,
.boxtyp-4 .casting-divider,
.boxtyp-5 .casting-divider {
    border: 1px solid var(--fc-text-bright);
}

.boxtyp-2 .casting-divider,
.boxtyp-3 .casting-divider,
.boxtyp-6 .casting-divider {
    border: 1px solid var(--fc-text-dark);
}

.casting-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: var(--fc-fs-body);
    line-height: 1.3;
    letter-spacing: 0.10em;
    /* Feste Höhe (Platz für 2 Zeilen), damit der Strich darüber nicht wandert */
    height: 44px;
    overflow: hidden;
}

.boxtyp-1 {
    color: var(--fc-text-bright);
    background-color: #4A533C;
}

.boxtyp-2 {
    color: var(--fc-text-dark);
    background-color: #8C937A;
}

.boxtyp-3 {
    color: var(--fc-text-dark);
    background-color: #BFC4B2;
}

.boxtyp-4 {
    color: var(--fc-text-bright);
    background-color: #2A2F22;
}

.boxtyp-5 {
    color: var(--fc-text-bright);
    background-color: #5E6650;
}

.boxtyp-6 {
    color: var(--fc-text-dark);
    background-color: #A3A992;
}

.kurz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 34px auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: var(--fc-fs-body);
    line-height: 1;
    letter-spacing: 0.10em;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #8DA283;
    font-family: "Boldonse", sans-serif;
    color: #fff;
}

.fc-faq {
    width: 100%;
    max-width: 1000px;
    margin: 34px auto;
}

.fc-faq-tabs {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.fc-faq-tabs .nav-item:last-child {
    margin-left: auto;
}

.fc-faq-tabs .nav-link {
    padding: 0;
    border: none;
    background: transparent;
    font-family: "Boldonse", sans-serif;
    font-weight: 400;
    font-size: clamp(22px, 3vw, 33px);
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.25);
}

.fc-faq-tabs .nav-link.active {
    color: var(--fc-text-dark);
}

.fc-faq-content {
    margin-top: 12px;
}

.fc-accordion .accordion-item {
    margin-bottom: 14px;
    border: 3px solid #8AAE85 !important;
    border-radius: 0 !important;
    background: transparent;
}

.fc-accordion .accordion-item + .accordion-item {
    border-top: 3px solid #8AAE85 !important;
}

.fc-accordion .accordion-button,
.fc-accordion .accordion-body,
.fc-accordion .accordion-collapse,
.fc-accordion-item:first-of-type,
.fc-accordion-item:last-of-type {
    border-radius: 0 !important;
}

.fc-accordion .accordion-button:focus {
    box-shadow: none;
}

.fc-accordion-item .accordion-button {
    padding: 18px 22px;
    border: none;
    background: transparent;
    box-shadow: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-body);
    line-height: 1;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
}

.fc-accordion-item .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--fc-text-dark);
}

.fc-accordion-item .accordion-button::after {
    width: auto;
    height: auto;
    background-image: none;
    content: "+";
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    transform: none;
    color: var(--fc-text-dark);
}

.fc-accordion-item .accordion-button:not(.collapsed)::after {
    content: "×";
}

.fc-accordion-item .accordion-body {
    padding: 0 22px 18px;
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-13);
    line-height: 1.45;
    letter-spacing: 0.04em;
    color: var(--fc-text-dark);
}

@media (max-width: 768px) {
    .fc-content-box {
        min-height: auto;
        gap: 28px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .kurz-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fc-faq-tabs {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 20px;
    }

    .fc-faq-tabs .nav-link {
        font-size: 15px;
        letter-spacing: 0.12em;
    }

    .fc-accordion-item .accordion-button {
        padding: 16px 16px;
        font-size: var(--fc-fs-meta);
    }

    .fc-accordion-item .accordion-body {
        padding: 0 16px 16px;
        font-size: var(--fc-fs-meta);
    }

    /* Kleinere Schrift, damit Rollentitel/-text auf schmalen Screens nicht
       vorzeitig mit "…" abgeschnitten werden (gleiche Zeilenzahl-Begrenzung,
       aber mehr Zeichen pro Zeile). */
    .casting-title {
        font-size: 18px;
        letter-spacing: 0.10em;
    }

    .casting-text {
        font-size: 13px;
    }
}

/* ============================= */
/* MY CASTING APPLICATIONS       */
/* ============================= */

/* Page Intro */
.fc-page-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(42, 40, 37, 0.10);
    margin-bottom: 24px;
}

.fc-page-intro__title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 34px);
    line-height: var(--fc-lh-tight);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    margin: 0 0 8px;
}

.fc-page-intro__subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: var(--fc-fs-body);
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--fc-text-dark);
    opacity: 0.75;
    margin: 0;
}

.fc-meta-row {
    display: flex;
    gap: 28px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(42, 40, 37, 0.10);
    flex-wrap: wrap;
}

.fc-meta-item {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    letter-spacing: var(--fc-ls-label);
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.7;
}

.fc-meta-item strong {
    font-weight: 700;
    opacity: 1;
    color: var(--fc-text-dark);
    margin-right: 4px;
}

/* Filter Bar */
.fc-filter-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(42, 40, 37, 0.10);
}

.fc-filter-bar__label {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    letter-spacing: var(--fc-ls-label);
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.7;
}

.fc-pill-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: var(--fc-fs-meta);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(42, 40, 37, 0.25);
    border-radius: 0;
    background: transparent;
    color: var(--fc-text-dark);
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.fc-pill:hover {
    border-color: var(--fc-text-dark);
}

.fc-pill--active {
    background: var(--fc-text-dark) !important;
    color: var(--fc-text-bright) !important;;
    border-color: var(--fc-text-dark) !important;;
}

.fc-pill__count {
    font-size: 10px;
    opacity: 0.7;
    padding-left: 6px;
    border-left: 1px solid currentColor;
}

/* Casting Cards */
.fc-card-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fc-application-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(42, 40, 37, 0.10);
    transition: border-color 0.2s ease;
}

.fc-application-card:hover {
    border-color: rgba(42, 40, 37, 0.25);
}

.fc-application-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 8px;
}

.fc-application-card__title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-body-lg);
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    margin: 0;
}

.fc-application-card__role {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-13);
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: var(--fc-text-dark);
    opacity: 0.75;
    margin: 0 0 14px;
}

.fc-application-card__meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.65;
}

.fc-application-card__meta-label {
    font-weight: 600;
    margin-right: 6px;
    opacity: 0.7;
}

.fc-application-card__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Profile Badges */
.fc-profile-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid;
    border-radius: 0;
}

.fc-profile-badge--main {
    border-color: rgba(42, 40, 37, 0.25);
    color: var(--fc-text-dark);
    background: transparent;
}

.fc-profile-badge--sub {
    border-color: rgba(138, 174, 133, 0.65);
    color: #4a6648;
    background: rgba(138, 174, 133, 0.12);
}

/* Status Pills */
.fc-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-meta);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid;
    border-radius: 0;
}

.fc-status-pill--applied {
    border-color: rgba(42, 40, 37, 0.30);
    color: var(--fc-text-dark);
    background: transparent;
}

.fc-status-pill--booked {
    border-color: rgba(138, 174, 133, 0.65);
    color: #3d5a3a;
    background: rgba(138, 174, 133, 0.12);
}

.fc-status-pill--rejected {
    border-color: rgba(180, 35, 24, 0.35);
    color: #8f1f1f;
    background: rgba(180, 35, 24, 0.08);
}

.fc-status-pill--withdrawn {
    border-color: rgba(42, 40, 37, 0.20);
    color: var(--fc-text-dark);
    opacity: 0.55;
    background: transparent;
}

/* Profile Status Badge (Talent Dashboard) */
.fc-profile-status {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 8px;
    cursor: default;
}

.fc-profile-status__dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.fc-profile-status__label {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Tooltip */
.fc-profile-status::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    max-width: 260px;
    padding: 8px 11px;
    background: var(--fc-bg-dark);
    color: var(--fc-text-bright);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.55;
    text-transform: none;
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 10;
    white-space: normal;
}

.fc-profile-status:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Status colour variants */
.fc-profile-status--active {
    color: #3d5a3a;
}
.fc-profile-status--active .fc-profile-status__dot {
    background: #6a9e65;
    box-shadow: 0 0 0 2px rgba(106, 158, 101, 0.20);
}

.fc-profile-status--pending {
    color: #7a6220;
}
.fc-profile-status--pending .fc-profile-status__dot {
    background: #c9a03a;
    box-shadow: 0 0 0 2px rgba(201, 160, 58, 0.20);
}

.fc-profile-status--inactive,
.fc-profile-status--hidden,
.fc-profile-status--archived {
    color: rgba(42, 40, 37, 0.45);
}
.fc-profile-status--inactive .fc-profile-status__dot,
.fc-profile-status--hidden .fc-profile-status__dot,
.fc-profile-status--archived .fc-profile-status__dot {
    background: rgba(42, 40, 37, 0.30);
}

.fc-profile-status--blocked {
    color: #8f1f1f;
}
.fc-profile-status--blocked .fc-profile-status__dot {
    background: #b42318;
    box-shadow: 0 0 0 2px rgba(180, 35, 24, 0.18);
}

/* Small Buttons (in Cards und Modal) */
.fc-btn-group {
    display: flex;
    gap: 8px;
}

button.fc-btn-sm,
a.fc-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border: 1.5px solid var(--fc-text-dark);
    border-radius: 0;
    background: transparent;
    color: var(--fc-text-dark);
    cursor: pointer;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-meta);
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

button.fc-btn-sm:hover,
a.fc-btn-sm:hover {
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
}

button.fc-btn-sm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: transparent;
    color: var(--fc-text-dark);
}

button.fc-btn-sm--danger {
    border-color: rgba(180, 35, 24, 0.55);
    color: #8f1f1f;
}

button.fc-btn-sm--danger:hover {
    background: #8f1f1f;
    color: var(--fc-text-bright);
    border-color: #8f1f1f;
}

/* Empty State */
.fc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 24px;
    border: 1px dashed rgba(42, 40, 37, 0.20);
    background: transparent;
    color: var(--fc-text-dark);
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.65;
    text-align: center;
}

/* Modal */
.fc-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(42, 40, 37, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1000;
}

.fc-modal-backdrop[hidden] {
    display: none;
}

.fc-modal {
    background: var(--fc-bg);
    padding: 32px 36px;
    max-width: 480px;
    width: 100%;
    border: 1px solid var(--fc-text-dark);
    border-radius: 0;
}

.fc-modal__title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-title-sm);
    line-height: var(--fc-lh-tight);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    margin: 0 0 14px;
}

.fc-modal__text {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-body);
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: var(--fc-text-dark);
    margin: 0 0 24px;
    opacity: 0.85;
}

.fc-modal__text strong {
    font-weight: 700;
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fc-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .fc-page-intro {
        padding: 20px 18px;
    }

    .fc-application-card {
        grid-template-columns: 1fr;
        padding: 20px 18px;
        gap: 16px;
    }

    .fc-application-card__actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .fc-meta-row {
        gap: 16px;
    }

    .fc-modal {
        padding: 24px 20px;
    }
}


/* ============================================================================ */
/*  5. AUTH & ONBOARDING                                                        */
/* ============================================================================ */


.fc-container {
    padding: 36px 20px 48px;
}

.fc-container-inner {
    max-width: 460px;
    margin: 0 auto;
}

.fc-register-inner {
    max-width: 560px;
}

.fc-profile-inner {
    max-width: 1020px;
}

.fc-dashboard-inner {
    max-width: 1384px;
}

.fc-container-title {
    margin-bottom: 10px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.2;
    letter-spacing: 0.14em;
    color: var(--fc-text-dark);
}

.fc-container-intro {
    margin-bottom: 24px;
    text-align: center;
    color: var(--fc-text-dark);
    opacity: 0.72;
}

.fc-container-support {
    margin: 26px 0 0;
    text-align: center;
    color: var(--fc-text-dark);
    opacity: 0.78;
}

@media (max-width: 768px) {
    .fc-container {
        padding: 24px 20px 32px;
    }

    .fc-container-intro {
        margin-bottom: 10px;
        font-size: var(--fc-fs-body);
        line-height: 1.7;
    }

    .fc-register-inner {
        max-width: 100%;
    }
}

.fc-legal-inner {
    max-width: 820px;
}

.fc-legal-content {
    text-align: left;
    color: var(--fc-text-dark);
}

.fc-legal-content h2 {
    margin: 40px 0 12px;
    font-family: "Inter", sans-serif;
    font-size: clamp(17px, 2.2vw, 20px);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--fc-text-dark);
}

.fc-legal-content h2:first-child {
    margin-top: 0;
}

.fc-legal-content p {
    margin: 0 0 16px;
    line-height: 1.7;
    opacity: 0.86;
}

.fc-legal-content ul {
    margin: 0 0 16px;
    padding-left: 22px;
    line-height: 1.7;
    opacity: 0.86;
}

.fc-legal-content li {
    margin-bottom: 6px;
}

.fc-legal-content a {
    color: var(--fc-text-dark);
    text-decoration: underline;
}

.fc-legal-content strong {
    font-weight: 600;
}

.fc-hilfe-back {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--fc-text-dark);
    opacity: 0.72;
    text-decoration: none;
}

.fc-hilfe-back:hover {
    opacity: 1;
    text-decoration: underline;
}

.fc-hilfe-role-switch {
    display: inline-flex;
    gap: 2px;
    background: rgba(42, 40, 37, 0.06);
    border-radius: 8px;
    padding: 3px;
    margin: 0 0 32px;
}

.fc-hilfe-role-switch__item {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 6px;
    color: var(--fc-text-dark);
    opacity: 0.6;
    text-decoration: none;
    transition: background .15s, opacity .15s;
    cursor: pointer;
}

.fc-hilfe-role-switch__item:hover {
    opacity: 1;
}

.fc-hilfe-role-switch__item--active {
    background: var(--fc-bg);
    opacity: 1;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(42, 40, 37, 0.12);
}

.fc-hilfe-toc {
    background: rgba(42, 40, 37, 0.04);
    border: 1px solid rgba(42, 40, 37, 0.10);
    border-radius: 10px;
    padding: 20px 28px;
    margin-bottom: 40px;
    color: var(--fc-text-dark);
}

.fc-hilfe-toc strong {
    font-weight: 600;
}

.fc-hilfe-toc ol {
    margin: 8px 0 0 18px;
    padding: 0;
    line-height: 1.7;
    opacity: 0.86;
}

.fc-hilfe-toc li {
    margin-bottom: 4px;
}

.fc-hilfe-toc a {
    color: inherit;
    text-decoration: underline;
}

.fc-hilfe-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-hilfe-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.fc-hilfe-section__image {
    margin-bottom: 20px;
}

.fc-hilfe-section__image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 320px;
}

@media (max-width: 680px) {
    .fc-hilfe-section__image img {
        max-height: 220px;
    }
}


/* ============================================================================ */
/*  6. FORMS — BUTTONS, INPUTS, HELPERS, TOMSELECT                              */
/* ============================================================================ */


.fc-form-divider {
    height: 1px;
    margin: 6px 0 2px;
    background: rgba(42, 40, 37, 0.14);
}

.fc-form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-top: 4px;
}

.fc-form-actions .fc-btn {
    width: auto;
    min-width: 300px;
    padding: 0 24px;
}

.fc-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--fc-text-dark);
    text-decoration: none;
}

.fc-btn-secondary:hover {
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
}

.fc-btn-danger {
    border-color: #b42318;
    color: #b42318;
}

.fc-btn-danger:hover {
    background: #b42318;
    color: #fff;
}

.fc-form-grid-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.fc-form-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fc-form-grid-street {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 16px;
}

.fc-form-grid-plz {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 18px;
}

.fc-form-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 22px;
    border: 1px solid rgba(42, 40, 37, 0.10);
    background: rgba(255, 255, 255, 0.72);
}

.fc-form-panel-full {
    grid-column: 1 / -1;
}

.fc-form-panel-title {
    margin-bottom: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(42, 40, 37, 0.10);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
}

.fc-form-panel-intro {
    margin: 4px 0 0;
    color: rgba(0, 0, 0, 0.66);
}

.fc-alert {
    max-width: 900px;
    margin: 24px auto 0;
    padding: 14px 18px;
    border: 1px solid;
}

.fc-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fc-pill-check {
    position: relative;
    display: inline-flex;
}

.fc-pill-check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fc-pill-check-label {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #fff;
    font-weight: 500;
    color: var(--fc-text-dark);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    cursor: pointer;
}

.fc-pill-check-label:hover {
    border-color: rgba(0, 0, 0, 0.32);
}

.fc-pill-check-input:checked ~ .fc-pill-check-label {
    background: var(--fc-text-dark);
    border-color: var(--fc-text-dark);
    color: #fff;
}

.fc-textarea {
    min-height: 120px;
    resize: vertical;
    padding: 12px 12px;
}

.fc-textarea-lg {
    min-height: 160px;
    padding: 12px 12px !important;
}

.fc-input-unit {
    position: relative;
    width: 100%;
}

.fc-input-unit .fc-input {
    padding-right: 46px;
}

.fc-input-unit-label {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    opacity: 0.6;
    pointer-events: none;
}

.fc-input-select {
    padding: 0 !important;
}

.ts-wrapper {
    width: 100%;
}

.ts-wrapper.single .ts-control,
.ts-wrapper.multi .ts-control {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.ts-wrapper.single .ts-control {
    padding-right: 40px;
}

.ts-control {
    box-shadow: none !important;
    background-image: none !important;
}

.ts-control input {
    min-width: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ts-wrapper.single .ts-control > .item {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    font-weight: 500;
    color: var(--fc-text-dark);
}

.ts-wrapper.focus .ts-control {
    outline: none;
    box-shadow: none;
}

.ts-wrapper.single .ts-control::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    border-left: 1.5px solid var(--fc-text-dark);
    border-bottom: 1.5px solid var(--fc-text-dark);
    transform: rotate(-45deg);
    pointer-events: none;
}

.ts-wrapper.single.dropdown-active .ts-control::after {
    margin-top: -1px;
    transform: rotate(135deg);
}

.ts-wrapper.single .ts-control input {
    width: 1px !important;
    opacity: 0;
    caret-color: transparent;
}

.ts-wrapper.single.fc-searchable .ts-control input {
    width: auto !important;
    min-width: 80px !important;
    opacity: 1 !important;
    caret-color: var(--fc-text-dark);
    color: var(--fc-text-dark);
}

.ts-dropdown {
    z-index: 30;
    margin-top: 0;
    overflow: hidden;
    border: 1.5px solid var(--fc-text-dark);
    border-top: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.ts-dropdown .option,
.ts-dropdown .create {
    padding: 14px;
    color: var(--fc-text-dark);
    background: #fff;
}

.ts-dropdown .option + .option {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ts-dropdown .active {
    background: rgba(0, 0, 0, 0.04);
    color: var(--fc-text-dark);
}

.ts-dropdown .selected {
    font-weight: 600;
}

.ts-dropdown .highlight {
    background: transparent;
    font-weight: 700;
}

.ts-wrapper.disabled .ts-control {
    background: #f3f3f3;
    color: rgba(0, 0, 0, 0.45);
    cursor: not-allowed;
}

.ts-wrapper.plugin-remove_button .item .remove {
    margin-left: 8px;
    padding-left: 0;
    border-left: 0;
}

.ts-control .placeholder {
    color: rgba(0, 0, 0, 0.45);
    opacity: 1;
}

.input-validation-error + .ts-wrapper .ts-control,
.ts-wrapper.fc-input-validation-error .ts-control {
    border-color: #b42318;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.fc-error--group {
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
}

.fc-form-group:has(.fc-error--group.field-validation-error) .fc-pill-group {
    border: 1px solid #dc2626;
    border-radius: 8px;
    padding: 0.5rem;
    background-color: rgba(220, 38, 38, 0.04);
}

.fc-btn-download {
    width: 100%;
    justify-content: center;
    gap: 8px;
    border-style: dashed;
}

.fc-btn-download:hover {
    border-style: solid;
}

.fc-btn-download__icon {
    font-size: 14px;
    line-height: 1;
}

.fc-input--readonly {
    background: rgba(42, 40, 37, 0.04);
    color: rgba(42, 40, 37, 0.6);
    border-color: rgba(42, 40, 37, 0.12);
    cursor: not-allowed;
}

.fc-input--readonly:focus {
    border-color: rgba(42, 40, 37, 0.12);
    border-width: 1px;
}

.fc-hint {
    display: block;
    margin-top: 6px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: rgba(42, 40, 37, 0.55);
    font-style: italic;
}

@media (max-width: 768px) {
    .fc-form-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .fc-form-grid-sections {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .fc-form-grid-compact {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .fc-form-panel {
        padding: 20px 18px;
    }

    .fc-form-actions {
        align-items: stretch;
    }

    .fc-form-actions .fc-btn {
        width: 100%;
        min-width: 0;
    }

    .fc-form-panel-title,
    .fc-dashboard-panel-card__title {
        font-size: 18px;
    }
}


/* ============================================================================ */
/*  7. PROFILE VIEWS — OVERVIEW, UPLOAD, GALLERY, SUBPROFILES                   */
/* ============================================================================ */


.fc-profile-overview {
    padding: 0;
}

.fc-profile-overview__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr auto;
    gap: 28px;
    align-items: end;
    padding: 24px 28px;
}

.fc-profile-overview__eyebrow {
    margin-bottom: 8px;
    color: var(--fc-text-dark);
    opacity: 0.7;
}

.fc-profile-overview__title {
    margin-bottom: 10px;
}

.fc-profile-overview__intro {
    max-width: 680px;
    margin: 0;
}

.fc-profile-overview__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-self: center;
}

.fc-profile-overview__meta-item {
    min-width: 140px;
}

.fc-profile-overview__meta-label {
    display: block;
    margin-bottom: 6px;
    color: var(--fc-text-dark);
    opacity: 0.65;
}

.fc-profile-overview__meta-value {
    display: block;
    font-size: var(--fc-fs-body);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
}

.fc-profile-overview__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.fc-profile-overview__action-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #fff;
    font-size: var(--fc-fs-label);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--fc-text-dark);
    transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.fc-profile-overview__action-link:hover {
    border-color: rgba(0, 0, 0, 0.35);
    text-decoration: none;
}

.fc-profile-overview__action-link.is-active {
    border-color: #000;
}

.fc-profile-overview__download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding-inline: 18px;
}

.fc-profile-overview__download-icon {
    font-size: var(--fc-fs-body);
    line-height: 1;
}

.fc-profile-upload {
    margin-bottom: 24px;
}

.fc-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.fc-upload-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-height: 124px;
    padding: 24px;
    border: 1.5px dashed rgba(0, 0, 0, 0.22);
    background: rgba(0, 0, 0, 0.015);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.fc-upload-box:hover {
    border-color: rgba(0, 0, 0, 0.45);
    background: rgba(0, 0, 0, 0.03);
}

.fc-upload-box-title {
    font-weight: 700;
    color: var(--fc-text-dark);
}

.fc-upload-box-text {
    color: rgba(0, 0, 0, 0.64);
}

.fc-upload-file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.fc-upload-file-item {
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.03);
    color: rgba(0, 0, 0, 0.72);
}

.fc-profile-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.fc-profile-gallery-item {
    margin: 0;
}

.fc-profile-gallery-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
}

.fc-profile-gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-profile-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.02));
    opacity: 0;
    transition: opacity 0.18s ease;
}

.fc-profile-gallery-media:hover .fc-profile-gallery-overlay {
    opacity: 1;
}

.fc-profile-gallery-status {
    display: flex;
    justify-content: flex-start;
}

.fc-profile-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--fc-text-dark);
    font-weight: 600;
    text-transform: uppercase;
}

.fc-profile-gallery-tools {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.fc-inline-form {
    margin: 0;
}

.fc-image-tool {
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.9);
    color: var(--fc-text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.fc-image-tool:hover {
    background: #fff;
    border-color: #fff;
}

.fc-image-tool-danger {
    color: #8f1d1d;
}

.fc-profile-gallery-empty {
    grid-template-columns: 1fr;
}

.fc-profile-gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
    text-align: center;
    color: rgba(0, 0, 0, 0.56);
}

.fc-profile-list {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(42, 40, 37, 0.10);
}

.fc-profile-list__header {
    margin-bottom: 28px;
}

.fc-dashboard-panels--subprofiles {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.fc-dashboard-panel-card--add {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border: 1px dashed rgba(42, 40, 37, 0.22);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.fc-dashboard-panel-card--add:hover {
    border-color: rgba(42, 40, 37, 0.45);
    background: rgba(42, 40, 37, 0.02);
}

@media (max-width: 1100px) {
    .fc-profile-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .fc-profile-overview__inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .fc-profile-overview__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 800px) {
    .fc-profile-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .fc-profile-gallery {
        grid-template-columns: 1fr;
    }
}


/* ============================================================================ */
/*  8. DASHBOARD                                                                */
/* ============================================================================ */


.fc-dashboard-intro-panel__title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-title-lg);
    line-height: 1.08;
    letter-spacing: var(--fc-ls-title);
    text-transform: uppercase;
    color: var(--fc-text-dark);
    margin: 0 0 16px;
}

.fc-dashboard-panel-card__title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-title-sm);
    line-height: var(--fc-lh-title);
    letter-spacing: var(--fc-ls-title);
    text-transform: uppercase;
    color: var(--fc-text-dark);
    margin: 0 0 16px;
}

.fc-dashboard-intro-panel {
    margin-bottom: 42px;
    padding-bottom: 28px;
}

.fc-dashboard-intro-panel__eyebrow {
    margin-bottom: 16px;
    color: var(--fc-text-dark);
    opacity: 0.46;
}

.fc-dashboard-intro-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 42px;
    align-items: start;
}

.fc-dashboard-intro-panel__main {
    max-width: 760px;
}

.fc-dashboard-intro-panel__lead {
    max-width: 58ch;
    margin: 0;
    color: var(--fc-text-dark);
    opacity: 0.76;
}

.fc-dashboard-intro-panel__side {
    display: grid;
    gap: 18px;
    padding-top: 4px;
}

.fc-dashboard-intro-panel__meta {
    margin: 0;
    color: var(--fc-text-dark);
    opacity: 0.66;
}

.fc-dashboard-panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.fc-dashboard-panel-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    padding: 0;
    background: transparent;
}

.fc-dashboard-panel-card__kicker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.fc-dashboard-panel-card__kicker-row .fc-dashboard-panel-card__kicker {
    margin-bottom: 0;
}

.fc-dashboard-panel-card__delete {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    color: rgba(42, 40, 37, 0.38);
    text-decoration: none;
    transition: color 0.15s ease;
    padding: 2px 0;
    flex-shrink: 0;
}

.fc-dashboard-panel-card__delete svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.fc-dashboard-panel-card__delete:hover {
    color: #b42318;
}

.fc-dashboard-panel-card__delete:hover svg {
    opacity: 1;
}

.fc-dashboard-panel-card__topline {
    width: 100%;
    height: 1px;
    margin-bottom: 24px;
    background: rgba(42, 40, 37, 0.14);
}

.fc-dashboard-panel-card__kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: rgba(42, 40, 37, 0.46);
}

.fc-dashboard-panel-card__text {
    max-width: 34ch;
    margin: 0;
    color: var(--fc-text-dark);
    opacity: 0.76;
}

.fc-dashboard-panel-card__footer {
    margin-top: auto;
    padding-top: 30px;
}

.fc-dashboard-panel-card .fc-btn {
    width: 100%;
    min-height: 46px;
}

.fc-dashboard-panel-card--accent .fc-dashboard-panel-card__topline {
    background: rgba(138, 174, 133, 0.75);
}

.fc-dashboard-panel-card--primary .fc-dashboard-panel-card__topline {
    background: rgba(42, 40, 37, 0.24);
}

.fc-dashboard-panels--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-dashboard-panels--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-dashboard-panels--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-dashboard-intro-panel--compact {
    margin-bottom: 40px;
}

.fc-dashboard-panel-card__add-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.fc-dashboard-panel-card__add-icon {
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    color: var(--fc-text-dark);
    opacity: 0.32;
}

@media (max-width: 1100px) {
    .fc-dashboard-panels {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .fc-dashboard-panel-card {
        min-height: auto;
    }

    .fc-dashboard-panel-card__text {
        max-width: 64ch;
    }

    .fc-dashboard-panel-card .fc-btn {
        width: auto;
        min-width: 280px;
    }

    .fc-dashboard-panels--two,
    .fc-dashboard-panels--three,
    .fc-dashboard-panels--four {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .fc-dashboard-intro-panel__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fc-dashboard-intro-panel__main,
    .fc-dashboard-intro-panel__lead {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .fc-dashboard-intro-panel {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .fc-dashboard-panels {
        gap: 18px;
    }

    .fc-dashboard-panel-card__topline {
        margin-bottom: 18px;
    }

    .fc-dashboard-panel-card__footer {
        padding-top: 22px;
    }

    .fc-dashboard-panel-card .fc-btn {
        width: 100%;
        min-width: 0;
    }

    .fc-dashboard-intro-panel__meta,
    .fc-container-support,
    .fc-alert,
    .fc-upload-file-item,
    .default-user-info,
    .fc-profile-badge,
    .fc-image-tool,
    .fc-dashboard-panel-card__text {
        font-size: var(--fc-fs-meta);
    }
}


/* ============================================================================ */
/*  9. TALENT — SEARCH & PROFILE                                                */
/* ============================================================================ */


.fc-search-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.fc-search-sidebar {
    position: sticky;
    top: 110px;
    /* Eigener Scrollbereich, damit der Filter nie abgeschnitten wird und die
       Aktionen unten immer erreichbar bleiben – unabhängig von der Bildschirmhöhe. */
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}

/* Innerhalb des Scrollbereichs deckend, damit der Sticky-Footer sauber abschliesst. */
.fc-search-sidebar .fc-form-panel {
    background: #fff;
}

/* Suchen/Zurücksetzen kleben unten fest und bleiben immer sichtbar,
   während nur die Filterfelder darüber scrollen. */
.fc-search-sidebar .fc-form-actions {
    position: sticky;
    bottom: 0;
    z-index: 1;
    margin-top: 16px;
    padding-top: 16px;
    background: #fff;
    border-top: 1px solid rgba(42, 40, 37, 0.10);
}

.fc-search-results {
    min-width: 0;
}

.fc-search-results__top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(42, 40, 37, 0.10);
}

.fc-search-results__sort-group {
    margin: 0;
    width: 300px;
}

.fc-talent-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.fc-talent-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(42, 40, 37, 0.10);
    background: #fff;
}

.fc-talent-card__media {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

.fc-talent-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-talent-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-body);
    line-height: var(--fc-lh-body);
    letter-spacing: var(--fc-ls-body);
    color: rgba(42, 40, 37, 0.52);
}

.fc-talent-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 18px 18px;
    flex: 1;
}

.fc-talent-card__title {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: var(--fc-lh-title);
    letter-spacing: var(--fc-ls-title);
    text-transform: uppercase;
    color: var(--fc-text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-talent-card__meta {
    display: flex;
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-body);
    line-height: var(--fc-lh-body);
    letter-spacing: var(--fc-ls-body);
    color: var(--fc-text-dark);
    opacity: 0.82;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow: hidden;
}

.fc-talent-card__meta span {
    white-space: nowrap;
}

.fc-talent-card__meta span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-talent-card__details {
    display: grid;
    margin: 0;
    font-size: 0.75rem;
    gap: 0.25rem;
}

.fc-talent-card__detail {
    display: grid;
    gap: 2px;
}

.fc-talent-card__detail dt {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-label);
    line-height: var(--fc-lh-tight);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.48;
}

.fc-talent-card__detail dd {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-body);
    line-height: var(--fc-lh-body);
    letter-spacing: var(--fc-ls-body);
    color: var(--fc-text-dark);
    opacity: 0.84;
}

.fc-talent-card__actions {
    margin-top: auto;
    padding-top: 8px;
}

.fc-talent-card__actions .fc-btn {
    width: 100%;
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
}

.fc-search-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.fc-search-pagination__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(42, 40, 37, 0.14);
    background: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-label);
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--fc-text-dark);
}

.fc-search-pagination__item.is-active {
    border-color: var(--fc-text-dark);
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
}

.fc-filter-advanced {
    margin-top: 1.25rem;
    border-top: 1px solid rgba(42, 40, 37, 0.14);
    padding-top: 1.1rem;
}

.fc-filter-advanced__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    /*font-family: var(--fc-font-sans);
    */
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    user-select: none;
    padding: 0.15rem 0;
}

.fc-filter-advanced__summary::-webkit-details-marker {
    display: none;
}

.fc-filter-advanced__icon {
    position: relative;
    width: 0.9rem;
    height: 0.9rem;
    flex: 0 0 0.9rem;
}

.fc-filter-advanced__icon::before,
.fc-filter-advanced__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 180ms ease, opacity 180ms ease;
}

.fc-filter-advanced__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.fc-filter-advanced[open] .fc-filter-advanced__icon::after {
    opacity: 0;
}

.fc-filter-advanced__content {
    padding-top: 1rem;
    display: grid;
    gap: 0.2rem;
}

.fc-talent-profile {
    padding-bottom: 96px;
}

.fc-talent-profile__back {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--fc-text-dark);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.fc-talent-profile__back:hover {
    border-color: var(--fc-text-dark);
}

.fc-talent-profile__hero {
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 40px;
}

.fc-tag,
.fc-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(42, 40, 37, 0.12);
    background: #fff;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
}

.fc-talent-profile__image-wrap {
    aspect-ratio: 4 / 5;
    background: #f4f4f2;
    overflow: hidden;
}

.fc-talent-profile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fc-talent-profile__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.fc-talent-profile__thumb {
    padding: 0;
    border: 1px solid rgba(42, 40, 37, 0.12);
    background: #fff;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.fc-talent-profile__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fc-talent-profile__summary-panel {
    height: 100%;
}

.fc-talent-profile__meta,
.fc-talent-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(42, 40, 37, 0.75);
}

.fc-talent-profile__meta span,
.fc-talent-card__meta span {
    position: relative;
}

.fc-talent-profile__meta span:not(:last-child)::after,
.fc-talent-card__meta span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -12px;
    top: 0;
}

.fc-talent-profile__roles {
    margin-top: 20px;
    margin-bottom: 24px;
}

.fc-talent-profile__quickfacts {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-talent-profile__quickfact {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-talent-profile__quickfact dt {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(42, 40, 37, 0.58);
}

.fc-talent-profile__quickfact dd {
    margin: 0;
    color: var(--fc-text-dark);
}

.fc-talent-profile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.fc-talent-profile__content {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
    gap: 32px;
    align-items: start;
}

.fc-talent-profile__main,
.fc-talent-profile__side {
    display: grid;
    gap: 24px;
}

.fc-talent-profile__text-block + .fc-talent-profile__text-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-talent-profile__text-block h3,
.fc-talent-profile__project-grid h3,
.fc-talent-profile__side-block h3 {
    margin: 0 0 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--fc-text-dark);
}

.fc-talent-profile__text-block p,
.fc-talent-profile__project-grid p,
.fc-talent-profile__side-block p {
    margin: 0;
    line-height: 1.8;
    color: rgba(42, 40, 37, 0.82);
    white-space: pre-line;
}

.fc-talent-profile__project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.fc-talent-profile__facts-list {
    margin: 0;
    padding: 0;
    width: 100%;
}

.fc-talent-profile__facts-list > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-talent-profile__facts-list dt {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(42, 40, 37, 0.58);
}

.fc-talent-profile__facts-list dd {
    margin: 0;
    text-align: right;
    color: var(--fc-text-dark);
}

.fc-talent-profile__facts-list dd .fc-panel-utility-link {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: none;
}

.fc-talent-profile__side-block + .fc-talent-profile__side-block {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-talent-profile__agency-empty {
    margin: 0;
    color: rgba(42, 40, 37, 0.58);
    font-size: 14px;
}

.fc-talent-profile__agency .fc-form-panel-title {
    width: 100%;
}

.fc-talent-profile__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-talent-profile__agency {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}

.fc-talent-profile__agency-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(42, 40, 37, 0.46);
}

.fc-talent-profile__agency-value {
    font-size: 14px;
    color: var(--fc-text-dark);
}

.fc-talent-profile__actions-divider {
    width: 100%;
    height: 1px;
    background: rgba(42, 40, 37, 0.10);
    margin: 4px 0;
}

.fc-admin-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    padding: 14px 20px;
    border: 1px solid rgba(42, 40, 37, 0.10);
    background: rgba(42, 40, 37, 0.03);
}

.fc-admin-bar__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fc-admin-bar__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.46;
}

.fc-admin-bar__status {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid transparent;
}

.fc-admin-bar__status--active {
    color: #3a6b35;
    border-color: rgba(58, 107, 53, 0.3);
    background: rgba(58, 107, 53, 0.06);
}

.fc-admin-bar__status--inactive {
    color: #8f1d1d;
    border-color: rgba(143, 29, 29, 0.3);
    background: rgba(143, 29, 29, 0.06);
}

.fc-admin-bar__status--pending {
    color: #8a5a12;
    border-color: rgba(138, 90, 18, 0.3);
    background: rgba(138, 90, 18, 0.06);
}

.fc-admin-bar__status--neutral {
    color: rgba(42, 40, 37, 0.6);
    border-color: rgba(42, 40, 37, 0.2);
    background: rgba(42, 40, 37, 0.04);
}

.fc-admin-bar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-admin-bar__btn {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: border-color 0.18s ease, color 0.18s ease;
}

.fc-admin-bar__btn--danger {
    color: #8f1d1d;
    border-bottom-color: rgba(143, 29, 29, 0.3);
}

.fc-admin-bar__btn--danger:hover {
    border-bottom-color: #8f1d1d;
}

.fc-admin-bar__btn--confirm {
    color: #3a6b35;
    border-bottom-color: rgba(58, 107, 53, 0.3);
}

.fc-admin-bar__btn--confirm:hover {
    border-bottom-color: #3a6b35;
}

.fc-admin-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-admin-rating__stars {
    display: flex;
    gap: 4px;
}

.fc-admin-rating__star {
    appearance: none;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(42, 40, 37, 0.16);
    background: transparent;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--fc-text-dark);
    opacity: 0.4;
    transition: opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.fc-admin-rating__star:hover,
.fc-admin-rating__star.is-active {
    opacity: 1;
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
    border-color: var(--fc-text-dark);
}

.fc-search-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-label);
    color: var(--fc-text-dark);
    opacity: 0.4;
}

@media (max-width: 1400px) {
    .fc-talent-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

@media (max-width: 992px) {
    .fc-search-layout {
        grid-template-columns: 1fr;
    }

    .fc-search-sidebar {
        position: static;
        /* Einspaltig: kein eigener Scroll-Container, Seite scrollt normal. */
        max-height: none;
        overflow-y: visible;
    }

    .fc-search-sidebar .fc-form-actions {
        position: static;
        border-top: none;
    }
}

@media (max-width: 991px) {
    .fc-talent-profile__hero,
    .fc-talent-profile__content {
        grid-template-columns: 1fr;
    }

    .fc-talent-profile__project-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fc-search-results__top {
        flex-direction: column;
        align-items: stretch;
    }

    .fc-search-results__sort-group {
        width: 100%;
    }

    .fc-talent-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fc-admin-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .fc-admin-bar__actions {
        flex-wrap: wrap;
        gap: 14px;
        width: 100%;
    }

    .fc-admin-rating {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
        padding-bottom: 14px;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(42, 40, 37, 0.12);
        width: 100%;
    }

    .fc-admin-rating__star {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .fc-talent-profile__topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 700px) {
    .fc-talent-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .fc-talent-profile__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .fc-talent-profile__quickfact {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .fc-talent-profile__actions {
        flex-direction: column;
    }
}


/* ============================================================================ */
/*  10. CASTING — INDEX, FORM, ROLE BUILDER                                     */
/* ============================================================================ */


.fc-casting-page {
    padding-bottom: 96px;
}

.fc-casting-page__main-action {
    width: 100%;
    justify-content: center;
}

.fc-casting-overview {
    margin-top: 32px;
}

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

.fc-casting-card {
    min-height: 390px;
    background: transparent;
}

.fc-casting-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.fc-casting-card__head .fc-pill {
    flex: 0 0 auto;
    white-space: nowrap;
}

.fc-casting-card__text {
    max-width: none;
    min-height: 72px;
    margin-bottom: 26px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.fc-casting-card__facts {
    margin-top: auto;
}

.fc-casting-card__actions {
    margin-top: 26px;
}

.fc-casting-card__actions .fc-btn {
    flex: 1 1 0;
    justify-content: center;
}

.fc-casting-empty {
    max-width: 720px;
    margin: 40px auto 0;
    padding: 42px;
    text-align: center;
    background: #ffffff;
}

.fc-casting-empty .fc-dashboard-panel-card__text {
    max-width: 48ch;
    margin-inline: auto;
}

.fc-casting-form {
    display: grid;
    gap: 24px;
}

.fc-casting-form__panel {
    background: transparent;
}

.fc-casting-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(42, 40, 37, 0.10);
}

.fc-casting-section-head .fc-form-panel-title {
    margin-bottom: 6px;
}

.fc-casting-roles {
    display: grid;
    gap: 22px;
}

.fc-casting-role {
    padding: 24px;
    border: 1px solid rgba(42, 40, 37, 0.10);
    background: rgba(255, 255, 255, 0.52);
}

.fc-casting-role__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.fc-casting-role__title {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--fc-fs-title-sm);
    line-height: var(--fc-lh-title);
    letter-spacing: var(--fc-ls-title);
    text-transform: uppercase;
    color: var(--fc-text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.fc-casting-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(42, 40, 37, 0.12);
    background: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
}

.fc-casting-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--fc-text-dark);
}

.fc-casting-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fc-casting-form__actions {
    justify-content: flex-end;
    margin-top: 10px;
}

.fc-casting-form__actions .fc-btn {
    min-width: 260px;
    justify-content: center;
}

.fc-casting-delete {
    max-width: 760px;
    margin: 48px auto 0;
    padding: 42px;
    background: transparent;
}

.fc-casting-delete .fc-dashboard-intro-panel__title {
    margin-top: 12px;
    margin-bottom: 18px;
}

.fc-casting-delete__facts {
    margin-top: 32px;
}

.fc-casting-delete__actions {
    justify-content: flex-end;
    margin-top: 34px;
}

.fc-casting-delete__actions .fc-btn {
    min-width: 220px;
    justify-content: center;
}

.fc-casting-role__head-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.fc-casting-role__heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.fc-casting-role__status-dot {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: rgba(58, 107, 53, 0.85);
    box-shadow: 0 0 0 3px rgba(58, 107, 53, 0.12);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.fc-casting-role[data-role-active="false"] .fc-casting-role__status-dot {
    background: rgba(42, 40, 37, 0.28);
    box-shadow: 0 0 0 3px rgba(42, 40, 37, 0.06);
}

.fc-casting-role__heading-text {
    min-width: 0;
}

.fc-casting-role[data-role-active="false"] .fc-casting-role__title {
    color: rgba(42, 40, 37, 0.55);
}

.fc-casting-role__sub {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.5;
}

.fc-casting-role__sub-sep {
    opacity: 0.6;
}

.fc-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    user-select: none;
}

.fc-switch__input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.fc-switch__track {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    border-radius: 999px;
    background: rgba(42, 40, 37, 0.22);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.fc-switch__thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.fc-switch__input:checked ~ .fc-switch__track {
    background: var(--fc-text-dark);
}

.fc-switch__input:checked ~ .fc-switch__track .fc-switch__thumb {
    transform: translateX(16px);
}

.fc-switch__input:focus-visible ~ .fc-switch__track {
    box-shadow: 0 0 0 3px rgba(42, 40, 37, 0.18);
}

.fc-switch__label {
    color: var(--fc-text-dark);
    opacity: 0.75;
}

.fc-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(42, 40, 37, 0.14);
    background: #fff;
    color: var(--fc-text-dark);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.fc-icon-btn:hover {
    border-color: rgba(42, 40, 37, 0.4);
}

.fc-icon-btn--danger:hover {
    border-color: #b42318;
    background: #b42318;
    color: #fff;
}

.fc-casting-role[data-role-active="false"] .fc-form-grid-sections {
    opacity: 0.62;
    transition: opacity 0.2s ease;
}

.fc-casting-role[data-role-active="false"] .fc-form-grid-sections:focus-within {
    opacity: 1;
}

.fc-casting-role-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 140px;
    padding: 28px;
    border: 1.5px dashed rgba(42, 40, 37, 0.22);
    background: transparent;
    color: var(--fc-text-dark);
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    font-family: "Inter", sans-serif;
}

.fc-casting-role-add:hover {
    border-color: rgba(42, 40, 37, 0.5);
    background: rgba(42, 40, 37, 0.02);
}

.fc-casting-role-add:focus-visible {
    outline: none;
    border-color: var(--fc-text-dark);
    box-shadow: 0 0 0 3px rgba(42, 40, 37, 0.12);
}

.fc-casting-role-add__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(42, 40, 37, 0.06);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    color: var(--fc-text-dark);
    transition: background 0.18s ease;
}

.fc-casting-role-add:hover .fc-casting-role-add__icon {
    background: rgba(42, 40, 37, 0.12);
}

.fc-casting-role-add__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
    opacity: 0.7;
}

.fc-casting-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 56px 32px;
    border: 1.5px dashed rgba(42, 40, 37, 0.18);
    background: rgba(42, 40, 37, 0.015);
    text-align: center;
}

.fc-casting-empty-state__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 4px;
    border-radius: 50%;
    background: rgba(42, 40, 37, 0.06);
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    color: var(--fc-text-dark);
    opacity: 0.7;
}

.fc-casting-empty-state__title {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fc-text-dark);
}

.fc-casting-empty-state__text {
    max-width: 38ch;
    margin: 0 0 8px;
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    line-height: 1.55;
    color: var(--fc-text-dark);
    opacity: 0.68;
}

.fc-casting-empty-state .fc-btn {
    min-width: 240px;
}

.fc-page-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 20px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-page-topbar__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.fc-page-topbar__back {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s ease;
}

.fc-page-topbar__back:hover,
.fc-page-topbar__back:focus-visible {
    color: #111827;
    text-decoration: underline;
}

/* Form-Actions: rechtsbündig, klare Hierarchie */
.fc-casting-form__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(#e5e7eb);
}

/* Dezenter Cancel-Link — klar untergeordnet */
.fc-form-cancel {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(#6b7280);
    text-decoration: none;
    padding: 0.5rem 0.25rem;
    transition: color 0.15s ease;
}

.fc-form-cancel:hover,
.fc-form-cancel:focus-visible {
    color: var(#111827);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Icon im Primary-Button */
.fc-btn__icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.fc-btn .fc-btn__icon + span,
.fc-btn span + .fc-btn__icon {
    /* Icon und Label sauber ausgerichtet */
}

.fc-btn-primary:has(.fc-btn__icon) {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   CASTING STATUS CARD — Workflow-Status mit Aktionen
   ═══════════════════════════════════════════════════════════════ */

.fc-casting-status {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 3px solid currentColor;
    border-radius: 6px;
    color: #94a3b8;
}

.fc-casting-status__main {
    flex: 1;
    min-width: 0;
}

.fc-casting-status__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.fc-casting-status__dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: currentColor;
    color: inherit;
}

.fc-casting-status__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    color: #111827;
}

.fc-casting-status__lead {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
    max-width: 60ch;
}

.fc-casting-status__meta {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0.5rem 0 0;
}

.fc-casting-status__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

.fc-casting-status__actions form {
    margin: 0;
}

.fc-casting-status__actions .fc-btn {
    white-space: nowrap;
    width: 100%;
}

/* Status-Modifier — Akzentfarbe (Border + Dot via currentColor) */
.fc-casting-status--draft {
    color: #94a3b8;
}

/* slate */
.fc-casting-status--pending {
    color: #d97706;
}

/* amber */
.fc-casting-status--published {
    color: #059669;
}

/* emerald */
.fc-casting-status--closed {
    color: #64748b;
}

/* slate-grey */
.fc-casting-status--archived {
    color: #6b7280;
}

/* gray */

/* Mobile */
@media (max-width: 640px) {
    .fc-casting-status {
        flex-direction: column;
        gap: 1rem;
    }

    .fc-casting-status__actions {
        flex-direction: column;
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ROLE DETAIL — Detailseite einer Casting-Rolle
   ═══════════════════════════════════════════════════════════════ */

.fc-role-meta {
    margin-bottom: 20px;
}

.fc-form-panel.fc-role-section,
.fc-form-panel.fc-role-apply {
    margin-bottom: 14px;
}

.fc-form-panel.fc-role-apply {
    margin-top: 28px;
}

.fc-role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.fc-role-profile-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 8px;
}

.fc-role-profile-card {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(42, 40, 37, 0.12);
    background: rgba(0, 0, 0, 0.02);
    cursor: pointer;
    position: relative;
    transition: border-color 0.15s ease;
    margin: 0;
}

.fc-role-profile-card:hover {
    border-color: rgba(42, 40, 37, 0.30);
}

.fc-role-profile-card__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.fc-role-profile-card:has(.fc-role-profile-card__input:checked) {
    border: 1.5px solid var(--fc-text-dark);
    background: #fff;
}

.fc-role-profile-card:has(.fc-role-profile-card__input:disabled) {
    opacity: 0.42;
    cursor: not-allowed;
}

.fc-role-profile-card:has(.fc-role-profile-card__input:disabled):hover {
    border-color: rgba(42, 40, 37, 0.12);
}

.fc-role-profile-card__photo {
    width: 48px;
    height: 60px;
    background-color: #BFC4B2;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-role-profile-card__initials {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--fc-text-dark);
}

.fc-role-profile-card__body {
    min-width: 0;
}

.fc-role-profile-card__name {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-body);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--fc-text-dark);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-role-profile-card__meta {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(42, 40, 37, 0.52);
}

.fc-role-profile-card__status {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b42318;
    margin-top: 3px;
}

.fc-role-profile-card__check {
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(42, 40, 37, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: transparent;
    transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.fc-role-profile-card:has(.fc-role-profile-card__input:checked) .fc-role-profile-card__check {
    background: var(--fc-text-dark);
    border-color: var(--fc-text-dark);
    color: var(--fc-text-bright);
}

.fc-role-apply-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-role-apply-hint {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(42, 40, 37, 0.52);
}

.fc-role-apply-btn {
    width: auto;
    min-width: 260px;
}

/* ─── Dunkler primärer Button ─── */
.fc-btn-dark {
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
    border: none;
    padding: 14px 28px;
    font-size: var(--fc-fs-label);
    font-weight: 700;
    letter-spacing: 0.16em;
    cursor: pointer;
    min-width: 260px;
    transition: opacity 0.15s ease;
    font-family: inherit;
    text-transform: uppercase;
}

.fc-btn-dark:hover:not(:disabled) {
    opacity: 0.85;
}

.fc-btn-dark:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════
   STATUS PILLS (Index-Seite)
   ═══════════════════════════════════════════════════════════════ */

.fc-pill--status-draft {
    color: #475569;
    border-color: #cbd5e1;
}

.fc-pill--status-pending {
    color: #b45309;
    border-color: #fcd34d;
    background: #fffbeb;
}

.fc-pill--status-published {
    color: #047857;
    border-color: #6ee7b7;
    background: #ecfdf5;
}

.fc-pill--status-closed {
    color: #475569;
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.fc-pill--status-archived {
    color: #6b7280;
    border-color: #d1d5db;
    background: #f3f4f6;
}

/* ═══════════════════════════════════════════════════════════════
   FIELDSET-WRAPPER für readonly Forms
   ═══════════════════════════════════════════════════════════════ */

.fc-fieldset-bare {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.fc-fieldset-bare:disabled .fc-input,
.fc-fieldset-bare:disabled .fc-textarea,
.fc-fieldset-bare:disabled .fc-input-select {
    background: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

.fc-fieldset-bare:disabled .fc-pill-check-label,
.fc-fieldset-bare:disabled .fc-switch__track {
    opacity: 0.55;
    cursor: not-allowed;
}

.fc-fieldset-bare:disabled .fc-icon-btn,
.fc-fieldset-bare:disabled .fc-casting-role-add,
.fc-fieldset-bare:disabled [data-role-add],
.fc-fieldset-bare:disabled [data-role-remove] {
    display: none;
}

/* Alert-Box für Erfolgsmeldungen (falls noch nicht vorhanden) */
.fc-alert-success {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-left: 3px solid #059669;
    border-radius: 6px;
    color: #065f46;
    font-size: 0.875rem;
}

/* ============================================================================
   COMPANY APPLICANTS — Bewerberübersicht
   Ergänzung zu Abschnitt 9 (Talent — Search & Profile)
   ============================================================================ */

/* ─── Rollen-Tabs ─── */
.fc-role-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(42, 40, 37, 0.10);
    margin-bottom: 28px;
    overflow-x: auto;
    overflow-y: hidden;
}

.fc-role-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: var(--fc-fs-meta);
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--fc-text-dark);
    opacity: 0.55;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
}

.fc-role-tab:hover {
    opacity: 0.85;
}

.fc-role-tab--active {
    opacity: 1;
    border-bottom-color: var(--fc-text-dark);
    font-weight: 700;
}

.fc-role-tab__count {
    font-size: 10px;
    opacity: 0.7;
    padding: 2px 7px;
    border: 1px solid currentColor;
}

/* ─── Dense Grid für Bewerberübersicht (4-6 Spalten) ─── */
.fc-talent-grid--dense {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}

@media (max-width: 1500px) {
    .fc-talent-grid--dense {
        grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    }
}

@media (max-width: 1200px) {
    .fc-talent-grid--dense {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .fc-talent-grid--dense {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
}

/* ─── Karten-Overlays: Select + Favorit + Status ─── */
.fc-talent-card {
    position: relative;
}

.fc-talent-card.is-selected {
    border-color: var(--fc-text-dark);
    border-width: 2px;
}

.fc-talent-card--shortlisted {
    border-left: 3px solid var(--fc-olive-green);
}

.fc-talent-card--rejected {
    opacity: 0.5;
}

.fc-talent-card--rejected:hover {
    opacity: 0.75;
}

.fc-talent-card--notpublic {
    opacity: 0.6;
    border-left: 4px solid #fb8c00;
}

.fc-talent-card--notpublic:hover {
    opacity: 0.85;
}

.fc-talent-card__select {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.fc-talent-card__select input {
    width: 18px;
    height: 18px;
    accent-color: var(--fc-text-dark);
    cursor: pointer;
}

.fc-talent-card__fav {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 249, 249, 0.85);
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    color: var(--fc-text-dark);
    opacity: 0.55;
    padding: 0;
}

.fc-talent-card__fav:hover {
    opacity: 1;
}

.fc-talent-card__fav.is-fav {
    color: #c9a227;
    opacity: 1;
}

.fc-talent-card__media {
    position: relative;
}

.fc-talent-card__status {
    position: absolute;
    bottom: 8px;
    left: 8px;
    z-index: 2;
    padding: 3px 8px;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    border: 1px solid;
    border-radius: 0;
    background: rgba(249, 249, 249, 0.94);
}

.fc-talent-card__status--applied {
    border-color: rgba(42, 40, 37, 0.45);
    color: var(--fc-text-dark);
}

.fc-talent-card__status--shortlisted {
    border-color: rgba(138, 174, 133, 0.7);
    color: #3d5a3a;
    /*background: rgba(138, 174, 133, 0.30);*/
}

.fc-talent-card__status--rejected {
    border-color: rgba(180, 35, 24, 0.55);
    color: #8f1f1f;
    /*background: rgba(180, 35, 24, 0.15);*/
}

.fc-talent-card__status--booked {
    border-color: var(--fc-text-dark);
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
}

/* ─── Dense-Karten Body kompakter ─── */
.fc-talent-grid--dense .fc-talent-card__body {
    gap: 10px;
    padding: 14px 14px 14px;
}

.fc-talent-grid--dense .fc-talent-card__kicker {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.14em;
}

.fc-talent-grid--dense .fc-talent-card__title {
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 0.04em;
}

.fc-talent-grid--dense .fc-talent-card__meta {
    font-size: 12px;
    line-height: 1.5;
    flex-wrap: wrap;
}

.fc-talent-grid--dense .fc-talent-card__details {
    font-size: 11px;
    gap: 6px;
}

.fc-talent-grid--dense .fc-talent-card__detail dt {
    font-size: 10px;
    letter-spacing: 0.10em;
}

.fc-talent-grid--dense .fc-talent-card__detail dd {
    font-size: 12px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fc-talent-grid--dense .fc-talent-card__placeholder {
    font-size: 36px;
}

/* ─── Quick-Action Footer ─── */
.fc-talent-grid--dense .fc-talent-card__actions {
    margin-top: auto;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(42, 40, 37, 0.10);
}

.fc-talent-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 4px;
    background: transparent;
    border: none;
    border-radius: 0;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--fc-text-dark);
    transition: background-color 0.15s ease, color 0.15s ease;
}

.fc-talent-card__action:hover {
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
}

.fc-talent-card__action + .fc-talent-card__action {
    border-left: 1px solid rgba(42, 40, 37, 0.10);
}

.fc-talent-card__action--ok {
    color: #3d5a3a;
}

.fc-talent-card__action--ok:hover {
    background: var(--fc-olive-green);
    color: var(--fc-text-bright);
}

.fc-talent-card__action--no {
    color: #8f1f1f;
}

.fc-talent-card__action--no:hover {
    background: #8f1f1f;
    color: var(--fc-text-bright);
}

.fc-talent-card__action.is-active {
    background: var(--fc-olive-green);
    color: var(--fc-text-bright);
}

.fc-talent-card__actions--locked {
    grid-template-columns: 1fr;
}

.fc-talent-card__actions--locked .fc-talent-card__action {
    opacity: 0.5;
    cursor: not-allowed;
}

.fc-talent-card__actions--locked .fc-talent-card__action:hover {
    background: transparent;
    color: var(--fc-text-dark);
}

/* ─── Gebucht-Zustand ─── */
.fc-talent-card--booked {
    border-left: 3px solid #c8a800;
}

.fc-talent-card__actions--booked {
    background: #fdfbf0;
}

/* ─── Icon-Row (Shortlist / Buchen / Ablehnen / E-Casting) ─── */
.fc-talent-card__actions--icons,
.fc-talent-grid--dense .fc-talent-card__actions--icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Icon innerhalb der Action-Buttons (z. B. E-Casting) ruhig & monochrom */
.fc-icon-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.fc-icon-row {
    display: contents;   /* Kinder direkt ins Grid-Layout einfügen */
    grid-column: 1 / -1;
}

.fc-talent-card__actions--booked .fc-icon-row,
.fc-talent-card__actions--locked .fc-icon-row {
    display: flex;
    align-items: center;
    grid-column: 1 / -1;
    min-height: 36px;
    padding: 0 8px;
}

.fc-icon-row__status {
    flex: 1;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(42, 40, 37, 0.38);
    padding: 0 8px;
}

.fc-icon-row__status--booked   { color: #9a7200; }
.fc-icon-row__status--rejected { color: rgba(143, 31, 31, 0.6); }

.fc-icon-btn-wrap {
    position: relative;
    display: flex;
}

/* Tooltip */
.fc-icon-btn-wrap::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 20;
}
.fc-icon-btn-wrap:hover::after { opacity: 1; }

.fc-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 36px;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(42, 40, 37, 0.10);
    border-radius: 0;
    cursor: pointer;
    font-size: 13px;
    color: rgba(42, 40, 37, 0.30);
    transition: background-color 0.15s ease, color 0.15s ease;
    padding: 0;
}

.fc-icon-btn--ok:hover,
.fc-icon-btn--ok.is-active {
    background: var(--fc-olive-green);
    color: var(--fc-text-bright);
}

/* E-Casting-Icon: eingeladen-Zustand (disabled + is-active) */
.fc-icon-btn.is-active:disabled {
    opacity: 1;
    cursor: default;
    background: rgba(42, 40, 37, 0.08);
    color: var(--fc-text-dark);
}

.fc-icon-btn--book:hover {
    background: #c8a800;
    color: var(--fc-text-bright);
}

.fc-icon-btn--reject:hover {
    background: #8f1f1f;
    color: var(--fc-text-bright);
}

/* ─── Sticky Bulk-Bar ─── */
.fc-bulk-bar {
    position: sticky;
    top: 8px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    margin-bottom: 14px;
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
    border-radius: 0;
}

.fc-bulk-bar[hidden] {
    display: none;
}

.fc-bulk-bar__count {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fc-bulk-bar__actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.fc-bulk-bar__btn {
    min-height: 34px;
    padding: 0 14px;
    background: transparent;
    border: 1px solid var(--fc-text-bright);
    border-radius: 0;
    color: var(--fc-text-bright);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}

.fc-bulk-bar__btn:hover {
    background: var(--fc-text-bright);
    color: var(--fc-text-dark);
}

.fc-bulk-bar__btn--close {
    border: none;
    opacity: 0.7;
    padding: 0 8px;
    font-size: 14px;
}

.fc-bulk-bar__btn--close:hover {
    background: transparent;
    color: var(--fc-text-bright);
    opacity: 1;
}

/* ─── Summary Row mit Export-Link ─── */
.fc-applicants-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.fc-applicants-summary__text {
    font-size: var(--fc-fs-label);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.65;
    font-weight: 600;
}

.fc-applicants-summary__text strong {
    opacity: 1;
    margin-right: 4px;
}

.fc-export-link {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-label);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: var(--fc-text-dark);
    opacity: 0.75;
}

.fc-export-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .fc-applicants-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ───────────────────────────────────────────────────────────────
   Mobile-Adjustments für Casting-Form
   ─────────────────────────────────────────────────────────────── */

/* Auf schmalen Screens: Datums- und Höhen-Range untereinander */
@media (max-width: 640px) {
    .fc-casting-range {
        grid-template-columns: 1fr;
        display: grid;
        gap: 0.5rem;
    }

    /* Höhen-Range mit cm-Label bleibt nebeneinander —
       die zwei Inputs übereinander, jeder mit eigenem cm-Label */
    .fc-casting-range .fc-input-unit {
        width: 100%;
    }

    /* Section-Head: Titel oben, Switch darunter */
    .fc-casting-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    /* Form-Grid auf einspaltig */
    .fc-form-grid-sections {
        grid-template-columns: 1fr !important;
    }

    /* Pill-Group darf umbrechen, falls noch nicht */
    .fc-pill-group {
        flex-wrap: wrap;
    }

    /* Form-Actions: Cancel + Submit untereinander, Submit zuerst */
    .fc-casting-form__actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 0.75rem;
    }

    .fc-casting-form__actions .fc-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .fc-casting-form__actions .fc-form-cancel {
        text-align: center;
    }
}

.fc-talent-profile__admin-notes textarea {
    min-height: 96px;
}

.fc-talent-profile__admin-notes-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.fc-talent-profile__admin-notes-actions .fc-btn {
    min-width: 0;
    padding: 0 18px;
    min-height: 38px;
}

.fc-talent-profile__email-form {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.fc-talent-profile__email-form .fc-input {
    width: auto;
    flex: 1;
    min-width: 0;
    min-height: 38px;
    font-size: 13px;
}

.fc-talent-profile__email-form .fc-btn {
    width: auto;
    flex-shrink: 0;
    min-width: 0;
    padding: 0 14px;
    min-height: 38px;
}

.fc-talent-profile__delete-subprofile-form .fc-btn {
    width: auto;
    min-width: 0;
    padding: 0 14px;
    min-height: 32px;
    font-size: 11px;
}

/* Date-Inputs: konsistente Höhe, niemals kleiner als Content */
.fc-input[type="date"] {
    min-width: 0; /* erlaubt Schrumpfen im Grid */
    appearance: none;
    -webkit-appearance: none;
    /* iOS-Höhe an andere Inputs angleichen — sonst wirken sie kleiner */
    line-height: 1.2;
}

/* iOS Safari: Date-Inputs richten sich sonst links statt zentriert aus */
.fc-input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
}

/* Picker-Indicator nicht ueber die Zahlen schieben */
.fc-input[type="date"]::-webkit-calendar-picker-indicator {
    margin-left: 0.25rem;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .fc-casting-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .fc-casting-grid {
        grid-template-columns: 1fr;
    }

    .fc-casting-card {
        min-height: auto;
    }

    .fc-casting-card__head,
    .fc-casting-section-head,
    .fc-casting-role__head {
        flex-direction: column;
        align-items: stretch;
    }

    .fc-casting-card__actions,
    .fc-casting-form__actions,
    .fc-casting-delete__actions {
        flex-direction: column;
    }

    .fc-casting-card__actions .fc-btn,
    .fc-casting-form__actions .fc-btn,
    .fc-casting-delete__actions .fc-btn {
        width: 100%;
        min-width: 0;
    }

    .fc-casting-range {
        grid-template-columns: 1fr;
    }

    .fc-casting-role,
    .fc-casting-delete,
    .fc-casting-empty {
        padding: 24px 20px;
    }
}

@media (max-width: 640px) {
    .fc-casting-role__head-actions {
        gap: 10px;
    }

    .fc-switch__label {
        display: none;
    }

    .fc-casting-empty-state {
        padding: 40px 22px;
    }

    .fc-casting-empty-state .fc-btn {
        width: 100%;
        min-width: 0;
    }

    .fc-casting-role-add {
        min-height: 120px;
        padding: 22px;
    }
}


/* ============================================================================ */
/*  11. PANEL UTILITY                                                           */
/* ============================================================================ */


.fc-panel-utility {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.fc-panel-utility-label {
    color: rgba(0, 0, 0, 0.45);
}

.fc-panel-utility-link {
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    font-size: var(--fc-fs-label);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--fc-text-dark);
    transition: border-color 0.18s ease;
}

.fc-panel-utility-link:hover {
    border-bottom-color: rgba(0, 0, 0, 0.4);
}

.fc-panel-utility-link--danger {
    color: #b42318;
    border-bottom-color: rgba(180, 35, 24, 0.25);
}

.fc-panel-utility-link--danger:hover {
    border-bottom-color: rgba(180, 35, 24, 0.7);
}


/* ============================================================================ */
/*  12. FOOTER                                                                  */
/* ============================================================================ */


.fc-footer {
    background: #2b2826;
}

.fc-footer-inner {
    padding: 42px 0 34px;
}

.fc-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
    max-width: 640px;
    margin: 36px auto;
}

.fc-footer-nav {
    justify-self: start;
}

.fc-footer-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fc-footer-contact {
    justify-self: end;
    text-align: right;
}

.fc-footer-mail {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 0.10em;
    text-transform: lowercase;
}

.fc-footer-link {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.fc-footer-link:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.fc-footer-brand {
    margin-top: 52px;
}

@media (max-width: 768px) {
    .fc-footer-top {
        max-width: 100%;
        gap: 26px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .fc-footer-nav {
        justify-self: start;
    }

    .fc-footer-contact {
        justify-self: start;
        text-align: left;
    }

    .fc-footer-list li {
        font-size: var(--fc-fs-body);
    }

    .fc-footer-mail {
        font-size: var(--fc-fs-meta);
    }

    .fc-footer-brand {
        margin-top: 34px;
    }
}
/* ── Benachrichtigungs-Glocke ───────────────────────────────────── */
.fc-bell {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: inherit;
    text-decoration: none;
    transition: background .12s ease;
}
.fc-bell:hover { background: rgba(0, 0, 0, .06); }
.fc-bell__icon { display: block; }
.fc-bell__badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

/* ── E-Casting Status-Badge ─────────────────────────────────────── */
.fc-ecasting-badge {
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0;
    border: none;
}
.fc-ecasting-badge--pending { color: rgba(42, 40, 37, 0.32); }
.fc-ecasting-badge--done    { color: rgba(42, 40, 37, 0.45); }
.fc-ecasting-badge--expired { color: rgba(42, 40, 37, 0.22); }

/* Klickbarer Video-Link in der Talent-Card (dl/dt/dd-Kontext) */
.fc-ecasting-video-link {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.14s;
}
.fc-ecasting-video-link:hover { opacity: 1; }

/* Trennlinie innerhalb «Weitere Filter» */
.fc-filter-divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 4px 0 16px;
}

/* ── Primärer kleiner Button ────────────────────────────────────── */
.fc-btn-sm--primary {
    background: var(--fc-accent, #2980b9);
    color: #fff;
    border-color: transparent;
}
.fc-btn-sm--primary:hover { opacity: 0.88; }

/* ── Video-Icon-Button ──────────────────────────────────────────── */
.fc-icon-btn--video { color: var(--fc-accent, #2980b9); }
.fc-icon-btn--video:hover { background: rgba(41,128,185,.1); }

/* ── Breites Modal (Video-Player) ───────────────────────────────── */
.fc-modal--wide {
    max-width: 760px;
    width: 95vw;
}

/* ── Moderations-Dialog (Casting freigeben/zurückgeben) ─────────────── */
.fc-moderation-form__label {
    display: block;
    margin-bottom: 6px;
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--fc-text-dark);
}

.fc-moderation-form textarea {
    width: 100%;
    margin-bottom: 20px;
    resize: vertical;
}

/* ── Teilen-Leiste (Social Share) ───────────────────────────────── */
.fc-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 4px 0 16px;
}

.fc-share__label {
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(42, 40, 37, 0.7);
}

.fc-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--fc-text-dark);
    text-decoration: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.15s ease;
}

.fc-share__btn:hover,
.fc-share__btn:focus-visible {
    opacity: 1;
    outline: none;
}

/* ── Teilen-Button auf Casting-Karten (Stretched-Link-Pattern) ──── */
.casting-card {
    position: relative;
}

/* Unsichtbarer Link über der ganzen Karte – hält sie klickbar */
.casting-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Teilen-Icon oben rechts, über dem Karten-Link */
.casting-card__share-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    opacity: 0.65;
    transition: opacity 0.15s ease;
}

.casting-card__share-btn:hover,
.casting-card__share-btn:focus-visible {
    opacity: 1;
    outline: none;
}

.casting-card__share-btn svg {
    display: block;
    width: 18px;
    height: 18px;
}

/* Kurzbestätigung nach "Link kopieren" */
.casting-card__share-btn::after {
    content: "Link kopiert";
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    white-space: nowrap;
    padding: 3px 8px;
    background: var(--fc-bg-dark);
    color: var(--fc-text-bright);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    letter-spacing: 0.02em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.casting-card__share-btn.is-copied::after {
    opacity: 1;
}

/* ── Icons + Kopier-Feedback in der Teilen-Leiste ───────────────── */
.fc-share__btn {
    position: relative;
}

.fc-share__btn svg {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.fc-share__btn.is-copied::after {
    content: "Link kopiert";
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    white-space: nowrap;
    padding: 3px 8px;
    background: var(--fc-bg-dark);
    color: var(--fc-text-bright);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    letter-spacing: 0.02em;
    pointer-events: none;
    z-index: 1;
}

/* ── Nachrichtenvorlagen: thematische Bereiche + ausklappbare Items ── */
.fc-tpl-group {
    margin-bottom: 32px;
}

.fc-tpl-group__head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    column-gap: 10px;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--fc-text-dark);
}

.fc-tpl-group__title {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-title-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--fc-text-dark);
}

.fc-tpl-group__count {
    justify-self: start;
    min-width: 22px;
    padding: 1px 8px;
    background: var(--fc-text-dark);
    color: var(--fc-text-bright);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    text-align: center;
}

.fc-tpl-group__desc {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    font-family: "Inter", sans-serif;
    font-size: var(--fc-fs-meta);
    color: rgba(42, 40, 37, 0.6);
}

.fc-tpl-item {
    border: 1px solid rgba(42, 40, 37, 0.18);
    margin-bottom: 8px;
    background: #fff;
}

.fc-tpl-item + .fc-tpl-item {
    margin-top: 0;
}

.fc-tpl-item__summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    list-style: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: var(--fc-text-dark);
}

.fc-tpl-item__summary::-webkit-details-marker { display: none; }

.fc-tpl-item__summary:hover {
    background: rgba(42, 40, 37, 0.03);
}

.fc-tpl-item__name { flex: 1 1 auto; }

.fc-tpl-item__badge {
    flex: 0 0 auto;
    padding: 1px 8px;
    border: 1px solid #b42318;
    color: #b42318;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fc-tpl-item__chevron {
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 1;
    color: rgba(42, 40, 37, 0.5);
    transition: transform 0.15s ease;
}

.fc-tpl-item[open] .fc-tpl-item__chevron { transform: rotate(90deg); }

.fc-tpl-item__body {
    padding: 16px;
    border-top: 1px solid rgba(42, 40, 37, 0.12);
}

.fc-tpl-item__placeholders {
    margin: 0 0 12px;
    font-size: var(--fc-fs-meta);
    color: rgba(42, 40, 37, 0.6);
}

.fc-tpl-item__placeholders code {
    background: #f2f2f2;
    padding: 1px 5px;
    margin-right: 4px;
}

/* ============================================================================
   Responsive-Härtung für sehr schmale Geräte (≤480px)
   Buttons mit fester min-width (280–300px) sprengen sonst gepolsterte Karten
   auf kleinen Phones (z. B. iPhone SE, 320px). Hier volle Breite erzwingen.
   ============================================================================ */
@media (max-width: 480px) {
    .fc-dashboard-panel-card .fc-btn,
    .fc-form-actions .fc-btn {
        width: 100%;
        min-width: 0;
    }
}
