/* =========================================================
   HAUNT COMMAND MASTHEAD ROW
   Directly below header
========================================================= */

.hcm-masthead,
.hcm-masthead * {
    box-sizing: border-box;
}

.hcm-masthead {
    --hcm-left-pad: clamp(72px, 3.85vw, 96px);
    --hcm-copy-width: clamp(720px, 35.2vw, 760px);
    --hcm-billboard-width: calc(100vw - var(--hcm-left-pad) - var(--hcm-copy-width));

    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -42px;

    color: #fff;
    position: relative;
    z-index: 5;
    overflow: visible;
}

.hcm-masthead-inner {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding-left: var(--hcm-left-pad);
    padding-right: 0;
    overflow: visible;
}

/* Left column */

.hcm-masthead-copy {
    flex: 0 0 var(--hcm-copy-width);
    width: var(--hcm-copy-width);
    max-width: var(--hcm-copy-width);
    min-width: 0;

    min-height: clamp(635px, 34vw, 720px);
    padding-top: clamp(52px, 3.1vw, 72px);
    margin-top: 42px;

    display: flex;
    flex-direction: column;

    position: relative;
    z-index: 3;
}

.hcm-masthead-title {

    max-width: none;
    height: auto;
    display: block;
    margin: 0 0 24px 0;
}

.hcm-masthead-text {
    margin: 0 0 34px 22px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
      --fs-min: 24px;
  --fs-fluid: 1.23vw;
  --fs-max: 30px;
  font-size: clamp(var(--fs-min), var(--fs-fluid), var(--fs-max));
    font-weight: 400;

}

.hcm-masthead-text p {
    margin: 0;
}

/* Buttons */

.hcm-masthead-buttons {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: 0;
    margin-bottom: 0;
}

.hcm-start-btn {
    flex: 0 0 clamp(300px, 15.55vw, 365px);
    width: clamp(300px, 15.55vw, 365px);
    height: clamp(66px, 3.45vw, 80px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hcm-start-btn img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.hcm-start-btn span {
    position: relative;
    z-index: 1;
    padding-right: 32px;
    color: #fff7e6;
    text-transform: uppercase;
    font-family: "Oswald", "Bebas Neue", Impact, sans-serif;
    font-size: clamp(22px, 1.08vw, 27px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.045em;
    text-shadow: 0 2px 2px #000, 0 0 10px rgba(255, 40, 25, 0.9);
    white-space: nowrap;
}

/* Entirely CSS button */

.hcm-portfolio-btn {
    flex: 0 0 clamp(270px, 13.7vw, 320px);
    width: clamp(270px, 13.7vw, 320px);
    height: clamp(66px, 3.45vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.55);
    border: 2px solid rgba(210, 210, 210, 0.55);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;

    font-family: "Oswald", "Bebas Neue", Impact, sans-serif;
    font-size: clamp(22px, 1.02vw, 26px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.035em;
    white-space: nowrap;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 18px rgba(0, 0, 0, 0.85);
}

.hcm-portfolio-btn:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(20, 20, 20, 0.78);
}

/* Trust line */

.hcm-trust-line {
    margin-top: auto;
    margin-left: 14px;
    padding-top: 38px;

    color: rgba(220, 220, 220, 0.78);
    text-transform: uppercase;
    font-family: "Oswald", "Bebas Neue", Impact, sans-serif;
    font-size: clamp(20px, 0.96vw, 24px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

/* Right billboard column */

.hcm-masthead-media {
    flex: 0 0 var(--hcm-billboard-width);
    width: var(--hcm-billboard-width);
    max-width: var(--hcm-billboard-width);
    min-width: 0;

    margin-left: 0;
    padding-left: 0;
    padding-right: 0;

    position: relative;
    z-index: 2;
    overflow: visible;
}

.hcm-billboard {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;

    margin-left: 0;
    margin-right: 0;
    margin-top: clamp(42px, 2.85vw, 64px);
}

/* Normal desktop */

@media (max-width: 1900px) {
    .hcm-masthead {
        --hcm-left-pad: 72px;
        --hcm-copy-width: 720px;
        --hcm-billboard-width: calc(100vw - var(--hcm-left-pad) - var(--hcm-copy-width));

        margin-top: -42px;
    }

    .hcm-masthead-copy {
        min-height: 650px;
        padding-top: 52px;
        margin-top: 42px;
    }

    .hcm-masthead-title {
        width: 680px;
    }

    .hcm-masthead-text {
        font-size: 24px;
        margin-bottom: 34px;
    }

    .hcm-start-btn {
        width: 365px;
        flex-basis: 365px;
        height: 80px;
    }

    .hcm-portfolio-btn {
        width: 320px;
        flex-basis: 320px;
        height: 80px;
    }

    .hcm-billboard {
        margin-top: 54px;
    }
}

/* Tablet */

@media (max-width: 1250px) {
    .hcm-masthead {
        margin-top: -20px;
    }

    .hcm-masthead-inner {
        display: block;
        padding-left: 40px;
        padding-right: 40px;
    }

    .hcm-masthead-copy {
        width: 100%;
        min-width: 0;
        max-width: 760px;
        min-height: 0;
        padding-top: 40px;
        margin-top: 0;
    }

    .hcm-masthead-title {
        width: 100%;
        max-width: 680px;
    }

    .hcm-trust-line {
        margin-top: 38px;
        white-space: normal;
    }

    .hcm-masthead-media {
        width: 100%;
        max-width: 100%;
    }

    .hcm-billboard {
        width: 100%;
        margin-top: 30px;
        margin-left: 0;
    }
}

/* Mobile */

@media (max-width: 760px) {
    .hcm-masthead {
        margin-top: -12px;
    }

    .hcm-masthead-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hcm-masthead-copy {
        padding-top: 28px;
    }

    .hcm-masthead-text {
        margin-left: 0;
        font-size: 18px;
        line-height: 1.45;
    }

    .hcm-masthead-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .hcm-start-btn,
    .hcm-portfolio-btn {
        width: 100%;
        flex-basis: auto;
        height: 64px;
    }

    .hcm-start-btn span,
    .hcm-portfolio-btn {
        font-size: 20px;
    }

    .hcm-trust-line {
        margin-left: 0;
        padding-top: 0;
        font-size: 16px;
        line-height: 1.35;
        white-space: normal;
    }
}


/* =========================================================
   HAUNT COMMAND SERVICES ROW
   Marketing / Production modules
========================================================= */

.hcs-services,
.hcs-services * {
    box-sizing: border-box;
}

.hcs-services {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    /*
       Pulls the tower background upward so it overlaps the
       lower billboard area from the masthead above.
    */
    margin-top: clamp(-190px, -8vw, -135px);

    min-height: clamp(650px, 34vw, 760px);

    position: relative;
    z-index: 4;
    overflow: visible;
}

.hcs-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.hcs-services-inner {
    width: 100%;
    position: relative;
    z-index: 2;

    /*
       Pushes the modules back down after the section itself
       has been pulled upward.
    */
    padding-top: 7.4%;

}

.hcs-services-grid {
    width: min(88.5vw);
    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(14px, 0.85vw, 22px);

    position: relative;
    z-index: 3;
}

/* Module shell */

.hcs-service-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1667 / 1029;
    overflow: visible;
}

.hcs-service-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
    display: block;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Module content */

.hcs-service-content {
    position: absolute;
    top: 8.4%;
    left: 5.9%;
    width: 41.5%;
    height: 82%;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hcs-service-heading {
    width: 90%;
    max-width: none;
    height: auto;
    display: block;
    margin: 0 0 6.5% 0;
}

.hcs-service-heading--production {
    width: 96%;
}

.hcs-service-copy {
    margin: 0 0 5.8% 0;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(14px, 0.78vw, 18px);
    font-weight: 400;
    line-height: 1.42;
}

.hcs-service-copy p {
    margin: 0;
}

/* Checklist */

.hcs-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(9px, 0.72vw, 16px);
}

.hcs-service-list li {
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.55vw, 12px);
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(13px, 0.72vw, 17px);
    font-weight: 400;
    line-height: 1.2;
}

.hcs-service-list img {
    flex: 0 0 clamp(18px, 1vw, 24px);
    width: clamp(18px, 1vw, 24px);
    max-width: none;
    height: auto;
    display: block;
}

/* CTA button */

.hcs-service-button {
    width: clamp(255px, 17vw, 350px);
    height: clamp(56px, 3.65vw, 78px);
    margin-top: auto;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.hcs-service-button img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: fill;
    display: block;
    z-index: 1;
}

.hcs-service-button span {
    position: relative;
    z-index: 2;
    padding-right: clamp(24px, 1.45vw, 34px);

    color: #fff7e6;
    text-transform: uppercase;
    font-family: "Oswald", "Bebas Neue", Impact, sans-serif;
    font-size: clamp(16px, 0.94vw, 22px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.07em;
    text-shadow: 0 2px 2px #000, 0 0 10px rgba(255, 40, 25, 0.9);
    white-space: nowrap;
}

/* Normal desktop tuning */

@media (max-width: 1900px) {
    .hcs-services {
        margin-top: -150px;
        min-height: 650px;
    }

    .hcs-services-inner {
        padding-top: 132px;
        padding-bottom: 54px;
    }

    .hcs-services-grid {
        width: 88.5vw;
        gap: 16px;
    }
}

/* Tablet */

@media (max-width: 1250px) {
    .hcs-services {
        margin-top: -70px;
        min-height: 0;
    }

    .hcs-services-bg {
        width: 150%;
        left: 50%;
        transform: translateX(-50%);
    }

    .hcs-services-inner {
        padding-top: 110px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .hcs-services-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hcs-service-content {
        top: 8.5%;
        left: 8.5%;
        width: 42%;
    }
}

/* Mobile */

@media (max-width: 760px) {
    .hcs-services {
        margin-top: -36px;
    }

    .hcs-services-inner {
        padding-top: 76px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hcs-services-grid {
        gap: 22px;
    }

    .hcs-service-card {
        aspect-ratio: auto;
        min-height: 620px;
        background: #050505;
        border: 1px solid rgba(150, 150, 150, 0.25);
    }

    .hcs-service-bg {
        object-fit: cover;
        opacity: 0.55;
    }

    .hcs-service-content {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        padding: 42px 28px;
    }

    .hcs-service-heading,
    .hcs-service-heading--production {
        width: 100%;
        max-width: 420px;
        margin-bottom: 28px;
    }

    .hcs-service-copy {
        font-size: 17px;
        margin-bottom: 26px;
    }

    .hcs-service-list {
        gap: 14px;
    }

    .hcs-service-list li {
        font-size: 16px;
    }

    .hcs-service-list img {
        width: 22px;
        flex-basis: 22px;
    }

    .hcs-service-button {
        width: 100%;
        max-width: 360px;
        height: 70px;
        margin-top: 34px;
    }

    .hcs-service-button span {
        font-size: 19px;
    }
}

/* =========================================================
   HAUNT COMMAND FEATURED CASE STUDY ROW
   Full-width torch background, centered module
========================================================= */

.hcs-featured-row,
.hcs-featured-row * {
    box-sizing: border-box;
}

.hcs-featured-row {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    /*
       This row is based on the supplied 2048x560 composition.
    */
    aspect-ratio: 2048 / 560;
    min-height: 420px;

    margin-top: 0;
    position: relative;
    z-index: 4;
    overflow: visible;
}

/* Full row background */

.hcs-featured-row-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    max-width: none;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    display: block;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Centers the module inside the torch row */

.hcs-featured-inner {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    margin-top: -1%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

/* Main module */

.hcs-featured-module {
    width: 88.85vw;

    aspect-ratio: 2048 / 569;

    position: relative;
    overflow: visible;
}

.hcs-featured-module-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    max-width: none;
    height: 100%;

    object-fit: contain;
    display: block;

    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Content grid inside module */

.hcs-featured-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: grid;
    grid-template-columns: 36.6% 24.2% 39.2%;
    align-items: stretch;
}

/* Left image panel */

.hcs-featured-image-panel {
    position: relative;
    height: 100%;
    overflow: visible;
}

.hcs-featured-image {
    position: absolute;
    left: 8.7%;
    top: 21.9%;

    width: 82.2%;
    max-width: none;
    height: auto;

    display: block;
}

/* Center info panel */

.hcs-featured-info-panel {
    height: 100%;

    padding-top: 29.7%;
    padding-right: 5.2%;
    padding-bottom: 9.2%;
    padding-left: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hcs-featured-kicker {
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.5vw, 12px);

    margin-bottom: clamp(12px, 0.7vw, 18px);

    color: #ff2a27;
    text-transform: uppercase;
    font-family: "Oswald", "Bebas Neue", Impact, sans-serif;
    font-size: clamp(15px, 0.78vw, 19px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
}

.hcs-featured-kicker-icon {
    width: clamp(22px, 1.1vw, 28px);
    max-width: none;
    height: auto;
    display: block;
}

.hcs-featured-title {
    width: min(100%, 440px);
    max-width: none;
    height: auto;

    display: block;
    margin-bottom: clamp(7px, 0.4vw, 11px);
}

.hcs-featured-location {
    margin-bottom: clamp(14px, 0.8vw, 20px);

    color: rgba(235, 235, 235, 0.7);
    text-transform: uppercase;
    font-family: "Oswald", "Bebas Neue", Impact, sans-serif;
    font-size: clamp(20px, 1.12vw, 28px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.18em;
}

.hcs-featured-copy {
    max-width: 460px;

    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(14px, 0.74vw, 18px);
    font-weight: 400;
    line-height: 1.43;
}

.hcs-featured-copy p {
    margin: 0;
}

.hcs-featured-divider {
    width: 100%;
    height: 1px;

    margin-top: clamp(16px, 0.9vw, 24px);
    margin-bottom: clamp(13px, 0.85vw, 20px);

    background: rgba(225, 225, 225, 0.28);
}

.hcs-featured-work-label {
    margin-bottom: clamp(8px, 0.55vw, 14px);

    color: #fff;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(13px, 0.7vw, 17px);
    font-weight: 700;
    line-height: 1;
}

.hcs-featured-work-items {
    display: flex;
    align-items: center;
    gap: clamp(16px, 0.95vw, 24px);
}

.hcs-featured-work-item {
    display: flex;
    align-items: center;
    gap: clamp(9px, 0.55vw, 14px);

    color: #fff;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(14px, 0.74vw, 18px);
    font-weight: 500;
    line-height: 1;
}

.hcs-featured-work-item img {
    width: clamp(36px, 2vw, 52px);
    max-width: none;
    height: auto;
    display: block;
}

.hcs-featured-work-separator {
    width: 1px;
    height: clamp(38px, 2.2vw, 54px);
    background: rgba(220, 220, 220, 0.35);
}

/* Right results panel */

.hcs-featured-results-panel {
    height: 100%;

    padding-top: 16.4%;
    padding-right: 7.25%;
    padding-bottom: 7.2%;
    padding-left: 1.7%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.hcs-results-table {
    width: 100%;

    display: grid;
    border: 1px solid rgba(235, 235, 235, 0.32);

    color: rgba(235, 235, 235, 0.78);
    font-family: "Oswald", "Bebas Neue", Impact, sans-serif;

    background: rgba(0, 0, 0, 0.12);
}

.hcs-results-row {
    display: grid;
    grid-template-columns: 32% 23% 26% 19%;
    min-height: clamp(38px, 2.05vw, 50px);

    border-bottom: 1px solid rgba(235, 235, 235, 0.32);
}

.hcs-results-row:last-child {
    border-bottom: 0;
}

.hcs-results-row > div {
    display: flex;
    align-items: center;

    padding: 0 clamp(9px, 0.55vw, 14px);
    border-right: 1px solid rgba(235, 235, 235, 0.25);
}

.hcs-results-row > div:last-child {
    border-right: 0;
}

.hcs-results-row > div:first-child {
    color: rgba(235, 235, 235, 0.75);
    text-transform: uppercase;
    font-size: clamp(13px, 0.68vw, 17px);
    font-weight: 700;
    letter-spacing: 0.06em;
}

.hcs-results-row > div:nth-child(2) {
    justify-content: center;
    color: rgba(235, 235, 235, 0.82);
    font-size: clamp(18px, 1.05vw, 26px);
    font-weight: 500;
}

.hcs-results-row > div:nth-child(3) {
    justify-content: center;
    color: #ff302c;
    font-size: clamp(19px, 1.12vw, 28px);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.hcs-results-row > div:nth-child(4) {
    justify-content: center;
    color: rgba(145, 205, 135, 0.9);
    font-size: clamp(14px, 0.72vw, 18px);
    font-weight: 600;
}

.hcs-results-row--head {
    min-height: clamp(52px, 3vw, 74px);
}

.hcs-results-row--head > div {
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.hcs-results-row--head > div:first-child,
.hcs-results-row--head > div:last-child {
    color: transparent;
}

.hcs-results-row--head strong {
    color: rgba(245, 245, 245, 0.78);
    text-transform: uppercase;
    font-size: clamp(15px, 0.78vw, 20px);
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
}

.hcs-results-row--head span {
    color: rgba(245, 245, 245, 0.68);
    text-transform: uppercase;
    font-size: clamp(12px, 0.62vw, 15px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
}

/* CTA */

.hcs-featured-button {
    width: clamp(300px, 17.2vw, 372px);
    height: clamp(62px, 3.48vw, 76px);

    margin-top: clamp(12px, 0.8vw, 20px);

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.hcs-featured-button img {
    position: absolute;
    inset: 0;

    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: fill;

    display: block;
    z-index: 1;
}

.hcs-featured-button span {
    position: relative;
    z-index: 2;

    padding-right: clamp(26px, 1.45vw, 34px);

    color: #fff7e6;
    text-transform: uppercase;
    font-family: "Oswald", "Bebas Neue", Impact, sans-serif;
    font-size: clamp(17px, 0.92vw, 22px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.07em;
    text-shadow: 0 2px 2px #000, 0 0 10px rgba(255, 40, 25, 0.9);
    white-space: nowrap;
}

/* Tablet */

@media (max-width: 1250px) {
    .hcs-featured-row {
        aspect-ratio: auto;
        min-height: 0;
    }

    .hcs-featured-row-bg {
        width: 150%;
        left: 50%;
        transform: translateX(-50%);
    }

    .hcs-featured-inner {
        position: relative;
        inset: auto;
        padding-top: 90px;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 58px;
    }

    .hcs-featured-module {
        width: 100%;
        aspect-ratio: auto;
        min-height: 0;

        background: #050505;
        border: 1px solid rgba(150, 150, 150, 0.25);
    }

    .hcs-featured-module-bg {
        object-fit: cover;
        opacity: 0.72;
    }

    .hcs-featured-content {
        position: relative;
        inset: auto;
        display: block;
        padding: 56px 42px;
    }

    .hcs-featured-image-panel,
    .hcs-featured-info-panel,
    .hcs-featured-results-panel {
        height: auto;
        padding: 0;
    }

    .hcs-featured-image {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 40px;
    }

    .hcs-featured-info-panel {
        margin-bottom: 42px;
    }

    .hcs-featured-results-panel {
        align-items: flex-start;
    }

    .hcs-featured-button {
        margin-top: 28px;
    }
}

/* Mobile */

@media (max-width: 760px) {
    .hcs-featured-inner {
        padding-top: 70px;
        padding-left: 18px;
        padding-right: 18px;
        padding-bottom: 48px;
    }

    .hcs-featured-content {
        padding: 42px 28px;
    }

    .hcs-featured-location {
        font-size: 21px;
    }

    .hcs-featured-copy {
        font-size: 16px;
    }

    .hcs-featured-work-items {
        flex-direction: column;
        align-items: flex-start;
    }

    .hcs-featured-work-separator {
        display: none;
    }

    .hcs-results-row {
        grid-template-columns: 1fr 1fr;
    }

    .hcs-results-row > div {
        min-height: 44px;
    }

    .hcs-results-row > div:first-child {
        grid-column: 1 / -1;
        justify-content: center;
        border-right: 0;
        border-bottom: 1px solid rgba(235, 235, 235, 0.18);
    }

    .hcs-results-row > div:nth-child(4) {
        grid-column: 1 / -1;
        border-right: 0;
        border-top: 1px solid rgba(235, 235, 235, 0.18);
    }

    .hcs-results-row--head {
        display: none;
    }

    .hcs-featured-button {
        width: 100%;
        max-width: 360px;
        height: 70px;
    }

    .hcs-featured-button span {
        font-size: 18px;
    }
}