/* =========================================================
   GETJUKE OCCUPATIONS
========================================================= */

.getjuke-occupations {
    width: 100%;
    color: #171717;
    background: #f5f1e8;
    box-sizing: border-box;
}

.getjuke-occupations *,
.getjuke-occupations *::before,
.getjuke-occupations *::after {
    box-sizing: border-box;
}

.getjuke-occupations__inner {
    width: min(
        100%,
        var(--getjuke-occupations-max-width, 1200px)
    );
    margin: 0 auto;
    padding: 42px 24px 56px;
}



/* =========================================================
   HEADER
========================================================= */

.getjuke-occupations__header {
    margin-bottom: 32px;
}

.getjuke-occupations__brand {
    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: .14em;

    color: #d62828;
}

.getjuke-occupations__title {
    margin: 0;

    font-size: clamp(34px, 5vw, 68px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.035em;

    color: #171717;
}

.getjuke-occupations__intro {
    max-width: 650px;

    margin: 16px 0 0;

    font-size: 22px;
    line-height: 1.45;

    color: #555;
}



/* =========================================================
   GRID
========================================================= */

.getjuke-occupations__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}



/* =========================================================
   OCCUPATION CARD
========================================================= */

.getjuke-occupation {
    position: relative;

    min-width: 0;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #1b1b1b;

    border-radius: 14px;
}

.getjuke-occupation__picture {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;
}

.getjuke-occupation__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .25s ease;
}

.getjuke-occupation:hover
.getjuke-occupation__image {
    transform: scale(1.025);
}



/* =========================================================
   LOWER SHADE FOR TEXT LEGIBILITY
========================================================= */

.getjuke-occupation__shade {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .82) 0%,
            rgba(0, 0, 0, .48) 39%,
            rgba(0, 0, 0, 0) 70%
        );
}



/* =========================================================
   CARD CONTENT
========================================================= */

.getjuke-occupation__content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 18px;
}

.getjuke-occupation__title {
    margin: 0 0 12px;

    color: #fff;

    font-size: clamp(20px, 2vw, 28px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
}



/* =========================================================
   PILLS
========================================================= */

.getjuke-occupation__pills {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.getjuke-occupation__pill {
    appearance: none;

    min-height: 31px;

    margin: 0;
    padding: 6px 10px;

    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;

    background: rgba(15, 15, 15, .58);

    color: #fff;

    font-family: inherit;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: .035em;
    text-transform: uppercase;

    cursor: pointer;

    backdrop-filter: blur(5px);

    transition:
        background .15s ease,
        color .15s ease,
        border-color .15s ease,
        transform .15s ease;
}

.getjuke-occupation__pill:hover {
    background: #fff;
    color: #111;
    border-color: #fff;

    transform: translateY(-1px);
}

.getjuke-occupation__pill:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}



/* =========================================================
   RESULT SCREEN
========================================================= */

.getjuke-occupations__result-screen[hidden] {
    display: none !important;
}

.getjuke-occupations__result-screen {
    width: 100%;
}



/* =========================================================
   RESULT HEADER
========================================================= */

.getjuke-occupations__result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
    padding-bottom: 18px;

    border-bottom: 2px solid #171717;
}

.getjuke-occupations__selection {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 8px;

    min-width: 0;

    font-size: clamp(22px, 3vw, 36px);
    line-height: 1;
    font-weight: 900;

    text-transform: uppercase;
}

.getjuke-occupations__selection-separator {
    opacity: .45;
}

.getjuke-occupations__selection-genre {
    color: #d62828;
}



/* =========================================================
   START AGAIN
========================================================= */

.getjuke-occupations__restart {
    flex: 0 0 auto;

    padding: 11px 16px;

    border: 2px solid #171717;

    background: transparent;

    color: #171717;

    font-family: inherit;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;

    letter-spacing: .06em;

    cursor: pointer;
}

.getjuke-occupations__restart:hover {
    background: #171717;
    color: #fff;
}



/* =========================================================
   LOADING
========================================================= */

.getjuke-occupations__loading {
    margin: 34px 0;

    text-align: center;
}



/* =========================================================
   RESULTS
========================================================= */

.getjuke-occupations__results {
    width: 100%;
}



/* =========================================================
   EXPORT
========================================================= */

.getjuke-occupations__export {
    margin-top: 26px;
}


/* =========================================================
   RESULTS LAYOUT
   ========================================================= */

.getjuke-occupations__layout {
    display: grid;

    grid-template-columns:
        minmax(0, 75fr)
        minmax(260px, 25fr);

    gap: 34px;

    align-items: start;
    width: 100%;
}


/* =========================================================
   LEFT COLUMN
   ========================================================= */

.getjuke-occupations__main {
    min-width: 0;
}


/* =========================================================
   RIGHT COLUMN
   ========================================================= */

.getjuke-occupations__aside {
    min-width: 0;
}

.getjuke-occupations__aside-stack {
    position: sticky;
    top: 24px;

    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* =========================================================
   ASIDE BLOCKS
   ========================================================= */

.getjuke-occupations__sounds,
.getjuke-occupations__export,
.getjuke-occupations__about-card {
    padding: 20px;

    border-radius: 14px;

    background: #171717;
    color: #fff;
}


/* =========================================================
   ASIDE HEADINGS
   ========================================================= */

.getjuke-occupations__aside-kicker {
    display: block;

    margin: 0 0 7px;

    color: #d62828;

    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;

    letter-spacing: .12em;
    text-transform: uppercase;
}

.getjuke-occupations__aside-title {
    margin: 0 0 18px;

    color: #fff;

    font-size: 22px;
    line-height: 1.05;
    font-weight: 900;

    letter-spacing: -.02em;
}


/* =========================================================
   SAME SETTING, DIFFERENT SOUND
   ========================================================= */

.getjuke-occupations__sound-group[hidden] {
    display: none !important;
}

.getjuke-occupations__sound-group {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


/* =========================================================
   SOUND BUTTONS
   ========================================================= */

.getjuke-occupations__sound {
    appearance: none;

    min-height: 36px;

    margin: 0;
    padding: 8px 12px;

    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;

    background: transparent;
    color: #fff;

    font-family: inherit;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: .035em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .15s ease,
        color .15s ease,
        border-color .15s ease,
        transform .15s ease;
}

.getjuke-occupations__sound:hover {
    background: #fff;
    color: #171717;
    border-color: #fff;

    transform: translateY(-1px);
}

.getjuke-occupations__sound.is-active {
    background: #d62828;
    color: #fff;
    border-color: #d62828;
}

.getjuke-occupations__sound:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}


/* =========================================================
   EXPORT IN RIGHT COLUMN
   ========================================================= */

.getjuke-occupations__export {
    margin-top: 0;
}

.getjuke-occupations__export
.getjuke-export-bar {
    margin-top: 0;
}

.getjuke-occupations__export
.getjuke-export-bar__title {
    font-size: 20px;
}

.getjuke-occupations__export
.getjuke-export-bar__text {
    font-size: 13px;
    line-height: 1.45;
}

.getjuke-occupations__export
.getjuke-export-bar__toggle {
    min-height: 40px;

    padding: 7px 12px;

    font-size: 15px;
}

.getjuke-occupations__export
.getjuke-export-bar__button {
    width: 100%;
    min-width: 0;

    font-size: 14px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.getjuke-occupations__about-card h3 {
    margin: 0 0 12px;

    color: #fff;

    font-size: 21px;
    line-height: 1.1;
    font-weight: 900;
}

.getjuke-occupations__about-card p {
    margin: 0 0 12px;

    color: rgba(255, 255, 255, .78);

    font-size: 13px;
    line-height: 1.55;
}

.getjuke-occupations__about-card p:last-child {
    margin-bottom: 0;
}
/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .getjuke-occupations__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

	.getjuke-occupations__layout {
    grid-template-columns:
        minmax(0, 62fr)
        minmax(260px, 38fr);

    gap: 26px;
}
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .getjuke-occupations__inner {
        padding:
            26px 14px
            42px;
    }

    .getjuke-occupations__header {
        margin-bottom: 22px;
    }

    .getjuke-occupations__title {
        font-size: 42px;
    }

    .getjuke-occupations__intro {
        margin-top: 12px;

        font-size: 16px;
    }


    .getjuke-occupations__grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .getjuke-occupation {
        aspect-ratio: 4 / 3;
    }


    .getjuke-occupation__content {
        padding: 16px;
    }


    .getjuke-occupation__title {
        font-size: 25px;
    }


    .getjuke-occupation__pill {
        min-height: 32px;

        padding:
            7px 10px;

        font-size: 10px;
    }


    .getjuke-occupations__result-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 16px;
    }


    .getjuke-occupations__selection {
        font-size: 27px;
    }
	
	.getjuke-occupations__layout {
    grid-template-columns: 1fr;
    gap: 28px;
}

.getjuke-occupations__aside-stack {
    position: static;
}

.getjuke-occupations__aside {
    width: 100%;
}

.getjuke-occupations__sounds,
.getjuke-occupations__export,
.getjuke-occupations__about-card {
    padding: 17px;
}

.getjuke-occupations__aside-title {
    font-size: 20px;
}

.getjuke-occupations__sound {
    min-height: 34px;

    padding: 7px 10px;

    font-size: 10px;
}

}


/* ==========================================================
   TRACK CARDS — OCCUPATIONS
   ========================================================== */

.getjuke-occupations .result-item {
    width: 100%;

    margin: 0 0 18px;
    padding: 18px;

    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 12px;

    background: rgba(255, 255, 255, .72);

    box-shadow:
        0 3px 12px rgba(0, 0, 0, .04);

    box-sizing: border-box;
}


/* ==========================================================
   MAIN ROW
   ========================================================== */

.getjuke-occupations .result-top {
    display: grid;

    grid-template-columns:
        220px
        minmax(0, 1fr);

    gap: 22px;

    align-items: start;

    width: 100%;
}


/* ==========================================================
   IMAGE
   ========================================================== */

.getjuke-occupations .result-media {
    grid-column: 1;
    grid-row: 1;

    width: 220px;
    min-width: 0;

    margin: 0;
    padding: 0;
}


.getjuke-occupations .result-thumb-link {
    display: block;

    width: 100%;

    color: #fff;
    text-decoration: none;
}


.getjuke-occupations .result-thumb-wrap {
    position: relative;

    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    margin: 0;

    overflow: hidden;

    border-radius: 8px;

    background: #111;
}

.getjuke-occupations .result-thumb-wrap img,
.getjuke-occupations .result-thumb-wrap .dynamic_image {
    display: block;

    width: 100% !important;
    height: 100% !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover;
}

/* ==========================================================
   WATCH IT
   ========================================================== */

.getjuke-occupations .result-thumb-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

    display: flex;
    align-items: center;

    min-height: 30px;

    padding: 6px 10px;

    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, .88),
            rgba(0, 0, 0, .58)
        );

    color: #fff !important;

    font-size: 11px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: .06em;
    text-transform: uppercase;

    pointer-events: none;
}


.getjuke-occupations .result-thumb-overlay,
.getjuke-occupations .result-thumb-overlay span,
.getjuke-occupations .result-thumb-overlay strong,
.getjuke-occupations .result-thumb-overlay em {
    color: #fff !important;
}


/* ==========================================================
   TEXT COLUMN
   ========================================================== */

.getjuke-occupations .result-main {
    grid-column: 2;
    grid-row: 1;

    min-width: 0;

    margin: 0;
    padding: 0;
}


/* ==========================================================
   ARTIST / TITLE
   ========================================================== */

.getjuke-occupations .result-title {
    margin: 0 0 8px;

    color: var(--occupations-text);

    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;

    overflow-wrap: anywhere;
}


.getjuke-occupations .result-title a {
    color: var(--occupations-primary);

    text-decoration: none;
}


.getjuke-occupations .result-title a:hover {
    text-decoration: underline;
}


/* ==========================================================
   ACTION AREA
   ========================================================== */

.getjuke-occupations .result-actions {
    margin-top: 10px;
}


/* ==========================================================
   TRACKLISTING / CREDITS
   ========================================================== */

.getjuke-occupations .result-actions .tracklisting {
    margin: 0 0 9px;

    color: var(--occupations-muted);

    font-size: 14px;
    line-height: 1.45;
}


/* ==========================================================
   SPOTIFY / APPLE / DEEZER
   ========================================================== */

.getjuke-occupations .result-links {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin: 0;
}


.getjuke-occupations .result-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 30px;

    margin: 0;
    padding: 6px 11px;

    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: 999px;

    background: #fff;
    color: #171717;

    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;
}


.getjuke-occupations .result-link:hover {
    border-color: var(--occupations-primary);

    color: var(--occupations-primary);
}


/* ==========================================================
   SECONDARY LINKS / CREDITS
   ========================================================== */

.getjuke-occupations .result-secondary-links {
    margin: 9px 0 0;

    color: var(--occupations-muted);

    font-size: 12px;
    line-height: 1.45;
}


.getjuke-occupations .result-secondary-links a {
    color: var(--occupations-primary);

    text-decoration: none;
}


.getjuke-occupations .result-secondary-links a:hover {
    text-decoration: underline;
}


/* ==========================================================
   DETAILS
   ========================================================== */

.getjuke-occupations .result-disclosure {
    margin: 10px 0 0;
    padding: 0;

    border: 0;
}


.getjuke-occupations .result-disclosure summary {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin: 0;
    padding: 0;

    border: 0;

    background: transparent;
    color: var(--occupations-muted);

    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;

    list-style: none;

    cursor: pointer;
}


.getjuke-occupations .result-disclosure summary::-webkit-details-marker {
    display: none;
}


.getjuke-occupations .result-disclosure summary::before {
    content: "▶";

    color: var(--occupations-secondary);

    font-size: 9px;
}


.getjuke-occupations .result-disclosure[open] summary::before {
    content: "▼";
}


.getjuke-occupations .result-details-body {
    margin-top: 10px;
    padding: 12px 14px;

    border-left: 3px solid var(--occupations-primary);

    background: rgba(255, 255, 255, .75);

    color: var(--occupations-muted);

    font-size: 12px;
    line-height: 1.55;
}


.getjuke-occupations .result-details-body p {
    margin: 0 0 7px;
}


.getjuke-occupations .result-details-body p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   TRACK WITHOUT YOUTUBE IMAGE
   ========================================================== */

.getjuke-occupations .result-top.no-video {
    grid-template-columns: 1fr;
}


.getjuke-occupations .result-top.no-video .result-main {
    grid-column: 1;
}


/* ==========================================================
   AND ALSO
   ========================================================== */

.getjuke-occupations .also-recommend,
.getjuke-occupations .and-also {
    margin-top: 34px;

    padding-top: 22px;

    border-top: 2px solid var(--occupations-secondary);
}


.getjuke-occupations .also-recommend h3,
.getjuke-occupations .and-also h3 {
    margin: 0 0 12px;

    color: var(--occupations-secondary);

    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}


.getjuke-occupations .also-recommend ul,
.getjuke-occupations .and-also ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.getjuke-occupations .also-recommend li,
.getjuke-occupations .and-also li {
    margin: 0 0 6px;

    font-size: 15px;
    line-height: 1.5;
}


/* ==========================================================
   TRACK CARDS — TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .getjuke-occupations .result-top {
        grid-template-columns:
            175px
            minmax(0, 1fr);

        gap: 17px;
    }

    .getjuke-occupations .result-media {
        width: 175px;
    }

    .getjuke-occupations .result-title {
        font-size: 19px;
    }

    .getjuke-occupations .result-actions .tracklisting {
        font-size: 13px;
    }

}


/* ==========================================================
   TRACK CARDS — MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .getjuke-occupations .result-item {
        margin-bottom: 16px;
        padding: 14px;

        border-radius: 10px;
    }


    .getjuke-occupations .result-top {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .getjuke-occupations .result-media {
        grid-column: 1;
        grid-row: 1;

        width: 100%;
    }


    .getjuke-occupations .result-main {
        grid-column: 1;
        grid-row: 2;
    }


    .getjuke-occupations .result-thumb-wrap {
        width: 100%;
    }


    .getjuke-occupations .result-thumb-overlay {
        min-height: 34px;

        padding: 7px 11px;

        font-size: 12px;
    }


    .getjuke-occupations .result-title {
        font-size: 20px;
    }


    .getjuke-occupations .result-actions .tracklisting {
        font-size: 14px;
    }


    .getjuke-occupations .result-link {
        min-height: 32px;

        padding: 7px 11px;

        font-size: 12px;
    }


    .getjuke-occupations .result-secondary-links,
    .getjuke-occupations .result-disclosure summary {
        font-size: 12px;
    }

}

/* ==========================================================
   EXPORT BAR — SAME STYLE AS GETMIX
========================================================== */

.getjuke-occupations .getjuke-export-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}


/* ==========================================================
   INTRO
========================================================== */

.getjuke-occupations .getjuke-export-bar__copy--main {
    padding: 16px 18px;

    border: 1px solid rgba(196, 146, 45, 0.28);
    border-radius: 6px;

    background: linear-gradient(
        180deg,
        rgba(39, 27, 10, 0.96) 0%,
        rgba(20, 14, 6, 0.98) 100%
    );

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}


.getjuke-occupations .getjuke-export-bar__title {
    margin: 0 0 4px;

    font-size: 24px;
    line-height: 1.05;
    font-weight: 800;

    color: #efc56b;
}


.getjuke-occupations .getjuke-export-bar__text {
    margin: 0;

    font-size: 14px;
    line-height: 1.55;

    color: #e3d4aa;
}


/* ==========================================================
   SERVICE BLOCKS
========================================================== */

.getjuke-occupations .getjuke-export-bar__apple-block,
.getjuke-occupations .getjuke-export-bar__spotify-block,
.getjuke-occupations .getjuke-export-bar__print-block {
    display: block;

    padding: 0;

    border: 0;
    border-radius: 4px;

    overflow: hidden;

    background: transparent;

    box-shadow: none;
}


/* ==========================================================
   TOGGLE BARS
========================================================== */

.getjuke-occupations .getjuke-export-bar__toggle {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 46px;

    padding: 8px 16px;

    font-family: Oswald, Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;

    color: #fff;

    cursor: pointer;
    user-select: none;
}


.getjuke-occupations .getjuke-export-bar__toggle--apple {
    background: #d58d12;
}


.getjuke-occupations .getjuke-export-bar__toggle--spotify {
    background: #159447;
}


.getjuke-occupations .getjuke-export-bar__toggle--print {
    background: #2f61b0;
}


.getjuke-occupations .getjuke-export-bar__arrow {
    font-size: 20px;
    line-height: 1;

    transition: transform 0.2s ease;
}


/* ==========================================================
   CLOSED CONTENT
========================================================== */

.getjuke-occupations .getjuke-export-bar__content {
    display: none;

    padding: 16px 18px;

    border: 1px solid rgba(196, 146, 45, 0.28);
    border-top: 0;

    background: linear-gradient(
        180deg,
        rgba(39, 27, 10, 0.96) 0%,
        rgba(20, 14, 6, 0.98) 100%
    );
}


/* ==========================================================
   OPEN CONTENT
========================================================== */

.getjuke-occupations
.getjuke-export-bar__apple-block.is-open
.getjuke-export-bar__content,

.getjuke-occupations
.getjuke-export-bar__spotify-block.is-open
.getjuke-export-bar__content,

.getjuke-occupations
.getjuke-export-bar__print-block.is-open
.getjuke-export-bar__content {
    display: block;
}


.getjuke-occupations
.getjuke-export-bar__apple-block.is-open
.getjuke-export-bar__arrow,

.getjuke-occupations
.getjuke-export-bar__spotify-block.is-open
.getjuke-export-bar__arrow,

.getjuke-occupations
.getjuke-export-bar__print-block.is-open
.getjuke-export-bar__arrow {
    transform: rotate(180deg);
}


/* ==========================================================
   CONTENT TEXT
========================================================== */

.getjuke-occupations .getjuke-export-bar__apple-note,
.getjuke-occupations .getjuke-export-bar__spotify-note,
.getjuke-occupations .getjuke-export-bar__print-note {
    margin: 0 0 14px;

    font: italic 500 15px/1.65 Roboto, sans-serif;

    color: #f1deb0;
}


/* ==========================================================
   BUTTONS
========================================================== */

.getjuke-occupations .getjuke-export-bar__button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 240px;
    min-height: 48px;

    padding: 0 22px;

    border: 0;

    font: 700 16px Roboto, sans-serif;

    cursor: pointer;
}


.getjuke-occupations .getjuke-export-bar__button--apple {
    background: #d08b16;
    color: #191207;
}


.getjuke-occupations .getjuke-export-bar__button--spotify {
    background: #1ed760;
    color: #111;
}


.getjuke-occupations .getjuke-export-bar__button--print {
    background: #2f61b0;
    color: #fff;
}


/* ==========================================================
   STATUS
========================================================== */

.getjuke-occupations .getjuke-export-status {
    margin: 12px 0 0;

    font-size: 13px;
    line-height: 1.5;
}


.getjuke-occupations .rvm-spinner {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex: 0 0 18px;
  border: 2px solid rgba(46, 39, 201, 0.18);
  border-top-color: var(--rvm-accent);
  border-radius: 50%;
  animation: rvm-spin 0.8s linear infinite;
}

.getjuke-occupations .rvm-spinner-text {
	font-size: 18px;
  line-height: 1.8;
  color: #DD9933;
  font-weight: 800;
  font-family: Oswald, sans-serif;
}

@keyframes rvm-spin {
  to {
    transform: rotate(360deg);
  }
}


/* ==========================================================
   PLACEHOLDER
========================================================== */

.getjuke-occupations .result-thumb-wrap.result-thumb-placeholder img {
    width: 100% !important;
    height: 100% !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;

    background: transparent !important;
    opacity: 1;
}


/* ==========================================================
   INITIAL SCREEN — MAIN + RIGHT COLUMN
========================================================== */

.getjuke-occupations__initial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: start;
}

.getjuke-occupations__initial-main {
    min-width: 0;
}

.getjuke-occupations__initial-aside {
    min-width: 0;
}

.getjuke-occupations__initial-aside
.rvm-getmix-sidebar__about {
    margin-top: 16px;
}


/* TABLET */

@media (max-width: 1000px) {

    .getjuke-occupations__initial-layout {
        grid-template-columns: minmax(0, 1fr) 215px;
        gap: 16px;
    }

}


/* MOBILE */

@media (max-width: 760px) {

    .getjuke-occupations__initial-layout {
        display: block;
    }

    .getjuke-occupations__initial-aside {
        width: 100%;
        margin-top: 20px;
    }

}