/* =====================================================
   careers-merch.css — Retail Merchandising Jobs page
   ===================================================== */

html, body {
    overflow-x: hidden;
}

/* ── Shared utilities ─────────────────────────────── */
.f-white { color: #fff; }

.merch-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 91px;
}

/* ── Buttons — match .cu-all-buttons ─────────────── */
.merch-btn {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-family: "Open Sans";
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 5%;
    text-transform: uppercase;
    background-color: #0275B3;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.merch-btn:hover,
.merch-btn:active,
.merch-btn:visited {
    background-color: #186188;
    color: white;
    text-decoration: none;
}

/* Outline variant used on dark-bg CTAs */
.merch-btn--outline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.merch-btn--outline:hover,
.merch-btn--outline:active {
    background-color: #186188;
    border-color: #0275B3;
    color: white;
}

/* ── Shared typography ────────────────────────────── */
.merch-section-title {
    font-family: "Normalidad Wide", sans-serif;
    font-size: 42px;
    font-weight: 350;
    line-height: 50px;
    letter-spacing: 6.3px;
    text-transform: uppercase;
    color: #2E312F;
    margin-bottom: 30px;
}

.merch-section-title--white {
    color: #fff;
}

.merch-body {
    font-family: "Open Sans";
    font-size: 21px;
    font-weight: 400;
    line-height: 146%;
    color: #3a3a3a;
    margin-bottom: 20px;
}

/* ── Hero ─────────────────────────────────────────── */
.merch-hero {
    width: 100%;
    min-height: calc(100vh - 66px);
    background-color: #121e23;
    background-image: none;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 160px 91px 100px;
    position: relative;
}

.merch-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(18, 30, 35, 0.8);
    z-index: 0;
}

.merch-hero__text {
    position: relative;
    z-index: 1;
    max-width: 960px;
}

.merch-hero__title {
    font-family: "Normalidad Wide", sans-serif;
    font-size: 54px;
    font-weight: 350;
    line-height: 60px;
    letter-spacing: 6.48px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.merch-hero__subtitle {
    font-family: "Open Sans";
    font-size: 21px;
    font-weight: 400;
    line-height: 146%;
    color: #fff;
    max-width: 600px;
    margin-bottom: 47px;
}

/* ── Open Positions / iCIMS embed ────────────────── */
.merch-jobs {
    padding: 103px 0 0;
    background: #fff;
}

.merch-jobs__embed-wrap {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.merch-jobs__embed-wrap iframe {
    display: block;
    width: 100%;
    height: 900px;
    border: none;
}

.merch-jobs__overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.2s;
}

.merch-jobs__overlay-tip {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    pointer-events: none;
    white-space: nowrap;
}

/* ── Section 2: Work That's Your Own ─────────────── */
.merch-intro {
    padding: 103px 0 135px;
    background: #121e23;
}

.merch-intro .merch-section-title {
    color: #fff;
}

.merch-intro .merch-body {
    max-width: 900px;
}

/* ── Section 3: What a Merchandiser Does ─────────── */
.merch-tasks-section {
    background: #0275B3;
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.merch-tasks-section .merch-container {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 103px 91px 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.merch-tasks-section__photo {
    flex: 1 1 50%;
    max-width: 50%;
    overflow: hidden;
}

.merch-tasks-section__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.merch-tasks-section .merch-section-title {
    margin-bottom: 16px;
    color: #fff;
}

.merch-tasks-section__intro {
    font-size: 17px;
    font-weight: 400;
    line-height: 150%;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
}

/* Two-column variant for the tasks grid */
.merch-tasks.merch-tasks--two-col {
    grid-template-columns: repeat(2, 1fr);
}

.merch-tasks-section .merch-task__label {
    color: #fff;
}

@media screen and (max-width: 991px) {
    .merch-tasks-section__photo {
        display: none;
    }

    .merch-tasks-section .merch-container {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 60px 30px;
    }
}

/* ── Tasks grid (3×2) ────────────────────────────── */
.merch-tasks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin: 40px 0 48px;
}

.merch-task {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.merch-task__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
}

.merch-task__icon svg {
    width: 100%;
    height: 100%;
}

.merch-task__label {
    font-size: 17px;
    line-height: 26px;
    color: #2E312F;
    font-weight: 600;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .merch-tasks {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .merch-tasks {
        grid-template-columns: 1fr;
    }
}

/* White variant for tasks on blue bg */
.merch-tasks--white .merch-task__icon {
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    padding: 8px;
}

/* ── Section 4: Social Proof ─────────────────────── */
.merch-social {
    position: relative;
    padding: 100px 0 120px;
    background: #fff;
    overflow: hidden;
}

.merch-social__dark-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 428px;
    background: #121e23;
    z-index: 0;
}

.merch-social__inner {
    position: relative;
    z-index: 1;
}

.merch-social .merch-section-title {
    max-width: 737px;
}

.merch-social__body {
    max-width: 778px;
    margin-bottom: 48px;
}

.merch-social__videos {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.merch-social__video {
    flex: 0 0 calc(25% - 12px);
    max-width: calc(25% - 12px);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: #000;
}

.merch-social__video iframe,
.merch-social__video blockquote {
    width: 100% !important;
    height: 100% !important;
    border-radius: 16px;
    margin: 0 !important;
}

.merch-list-intro {
    font-family: "Open Sans";
    font-size: 21px;
    line-height: 146%;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.merch-list {
    padding-left: 24px;
    margin-bottom: 24px;
}

.merch-list li {
    font-family: "Open Sans";
    font-size: 21px;
    line-height: 146%;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.merch-video-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 4px;
    padding: 80px 30px;
    text-align: center;
    margin-top: 48px;
}

.merch-video-placeholder p {
    font-family: "Open Sans";
    font-size: 16px;
    color: #888;
    margin: 0;
}

/* ── Section 3: Pay, Schedule, Flexibility ────────── */
.merch-pay {
    padding: 103px 0 135px;
    background: #fff;
}

.merch-pay__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
}

.merch-pay__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.merch-pay__icon {
    margin-bottom: 24px;
    flex-shrink: 0;
}

.merch-pay__icon svg {
    display: block;
}

.merch-pay__card h3 {
    font-family: "Normalidad Wide", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: #2E312F;
    margin-bottom: 16px;
}

.merch-pay__card p {
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 146%;
    color: #3a3a3a;
    margin: 0;
}

/* ── Section 4: Why Channel Partners ─────────────── */
.merch-why {
    padding: 103px 0 135px;
    background: #121e23;
}

.merch-why .merch-section-title {
    color: #fff;
}

.merch-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.merch-why__item {
    background: rgba(255,255,255,0.05);
    padding: 36px 30px 36px 26px;
    border-left: 10px solid #0275B3;
    min-height: 124px;
}

.merch-why__item h3 {
    font-family: "Normalidad Wide", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: #0275B3;
    display: block;
    margin-bottom: 11px;
}

.merch-why__item p {
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 146%;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.merch-why__cta {
    text-align: center;
}

/* ── Section 5: Growth / Career Path ─────────────── */
.merch-growth {
    background: #fff;
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.merch-growth__content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 103px 80px 135px 91px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.merch-growth__photo {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

.merch-growth__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.merch-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 28px 36px;
    background: rgba(0, 0, 0, 0.65);
    border-left: 6px solid #0275B3;
}

.merch-quote__text {
    font-family: "Open Sans";
    font-size: 17px;
    line-height: 150%;
    color: #fff;
    font-style: italic;
    margin-bottom: 12px;
}

.merch-quote__cite {
    font-family: "Normalidad Wide", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #5bb8f5;
}

@media screen and (max-width: 991px) {
    .merch-growth {
        flex-direction: column;
    }
    .merch-growth__content,
    .merch-growth__photo {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .merch-growth__content {
        padding: 60px 30px;
    }
    .merch-growth__photo {
        min-height: 400px;
    }
    .merch-quote {
        position: static;
        background: #1a1a1a;
    }
}

/* ── Section 6: Where We Hire ────────────────────── */
.merch-where {
    padding: 103px 0 135px;
    background: #eaeaea;
}

.merch-where__cities {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 32px;
    margin-top: 48px;
    border-top: 2px solid #0275B3;
    padding-top: 40px;
}

.merch-where__col {
    list-style: none;
    margin: 0;
    padding: 0;
}

.merch-where__col li {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2E312F;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.merch-where__col li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #0275B3;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

@media screen and (max-width: 1150px) {
    .merch-where__cities {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .merch-where__cities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .merch-where__cities {
        grid-template-columns: 1fr;
    }
}

/* ── Section 7: Process Steps ────────────────────── */
.merch-process {
    padding: 103px 0 135px;
    background: #121e23;
}

.merch-process .merch-section-title {
    color: #fff;
}

.merch-process__title-accent {
    color: #0275B3;
    display: block;
}

.merch-process__intro {
    font-family: "Open Sans";
    font-size: 21px;
    line-height: 146%;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0;
}

.merch-process__steps {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    margin-top: 64px;
}

.merch-process__step {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.merch-process__icon {
    display: block;
    margin-bottom: 24px;
}

.merch-process__step h3 {
    font-family: "Normalidad Wide", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.merch-process__step p {
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

.merch-process__connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 8px;
    margin-top: 4px;
}

@media screen and (max-width: 991px) {
    .merch-process__steps {
        flex-direction: column;
        gap: 48px;
    }
    .merch-process__connector {
        display: none;
    }
}

/* ── Section 8: FAQ ───────────────────────────────── */
.merch-faq {
    padding: 80px 0 100px;
    background: #fff;
}

.merch-faq__intro {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: #3a3a3a;
    margin-top: 12px;
    margin-bottom: 0;
}

.merch-faq-accordion.accordionjs {
    margin-top: 40px;
    margin-bottom: 0;
}

.merch-faq-accordion.accordionjs .acc_section {
    border: none;
    margin-top: 0;
    overflow: visible;
}

.merch-faq-accordion.accordionjs .acc_section .acc_head {
    background: transparent;
    padding: 24px 40px 24px 0;
    position: relative;
}

.merch-faq-accordion.accordionjs .acc_section .acc_head::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Normalidad Wide";
    font-size: 24px;
    font-weight: 300;
    color: #0275B3;
    line-height: 1;
}

.merch-faq-accordion.accordionjs .acc_section.acc_active > .acc_head::after {
    content: "–";
}

.merch-faq-accordion.accordionjs .acc_section.acc_active > .acc_head {
    background: transparent;
    border-bottom: none;
}

.merch-faq-accordion.accordionjs .acc_section .acc_content {
    padding: 0 40px 24px 0;
}

.merch-faq-q {
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 700;
    color: #173542;
    margin: 0;
    line-height: 1.4;
}

.merch-faq-a {
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 168%;
    color: #444;
    margin: 0;
}

/* ── Section 9: Closing CTA ───────────────────────── */
.merch-closing-cta {
    background: #186188;
    padding: 81px 20px;
    text-align: center;
}

.merch-closing-cta__title {
    font-family: "Normalidad Wide", sans-serif;
    font-size: 42px;
    font-weight: 350;
    line-height: 50px;
    letter-spacing: 6.3px;
    text-transform: uppercase;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto 18px;
}

.merch-closing-cta__text {
    font-family: "Open Sans";
    font-size: 21px;
    line-height: 146%;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto 40px;
}

/* ── Responsive ───────────────────────────────────── */
@media screen and (max-width: 1150px) {
    .merch-pay__cards {
        grid-template-columns: 1fr;
    }

    .merch-why__grid {
        grid-template-columns: 1fr;
    }

    .merch-section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .merch-closing-cta__title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media screen and (max-width: 991px) {
    #mainmenu {
        top: 0;
        position: absolute !important;
    }

    body > header > a.hc-nav-trigger.hc-nav-1 > span,
    body > header > a.hc-nav-trigger.hc-nav-1 > span::before,
    body > header > a.hc-nav-trigger.hc-nav-1 > span::after {
        background-color: white !important;
    }

    .merch-hero {
        padding: 140px 30px 80px;
        min-height: calc(100vh - 66px);
    }

    .merch-container {
        padding: 0 30px;
    }

    .merch-intro,
    .merch-tasks-section,
    .merch-social,
    .merch-pay,
    .merch-why,
    .merch-where,
    .merch-process,
    .merch-faq {
        padding: 70px 0 92px;
    }

    .merch-social__videos {
        flex-wrap: wrap;
    }

    .merch-social__video {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

@media screen and (max-width: 567px) {
    .merch-social__video {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .merch-hero__title {
        font-size: 43px;
        line-height: 47px;
    }

    .merch-hero__subtitle,
    .merch-body,
    .merch-list li,
    .merch-list-intro,
    .merch-quote__text,
    .merch-process__intro,
    .merch-closing-cta__text {
        font-size: 16px;
    }

    .merch-section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .merch-closing-cta__title {
        font-size: 32px;
        line-height: 40px;
    }

    .merch-container {
        padding: 0 20px;
    }

    .merch-hero {
        padding: 120px 20px 80px;
        min-height: 400px;
    }

    .merch-process__step {
        flex-direction: column;
        gap: 10px;
    }
}

/* City link buttons */
.merch-city-link {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: inherit;
    color: #0275B3;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.15s, color 0.15s;
    text-align: left;
}
.merch-city-link:hover {
    text-decoration-color: #0275B3;
}
.merch-city-link.is-active {
    font-weight: 700;
    text-decoration-color: #0275B3;
}
.merch-where__cta-note {
    font-size: 0.88rem;
    color: #666;
    margin-top: -8px;
    margin-bottom: 24px;
}
