@import url(hero-mobile.css);

.commercial-page {
    background-image: url("../../images/backgrounds/bg-4-v2.svg");
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.commercial-top-row {
    gap: 32px;
}

.commercial-feature-image {
    width: 420px;
    min-width: 420px;
    height: 240px;
}

.commercial-feature-image img {
    object-fit: cover;
}

.commercial-plan-section {
    position: relative;
    width: 100%;
    padding: 64px 16px 92px 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.commercial-plan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0.72);
}

.commercial-plan-content {
    position: relative;
    z-index: 1;
    max-width: 1312px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.commercial-plan-header {
    max-width: 960px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.commercial-plan-title {
    color: var(--clr-text-white);
    font-family: var(--font-family-head);
    font-size: var(--font-size-head-03);
    font-weight: 800;
}

.commercial-plan-subtitle {
    color: var(--clr-text-white);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-03);
    text-align: center;
}

.commercial-plan-footnote {
    color: var(--clr-text-white);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-03);
    text-align: center;
    font-style: italic;
}

.commercial-plan-cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.commercial-plan-card {
    width: 300px;
    max-width: 300px;
    height: 100%;
    background: var(--clr-bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
}

.commercial-plan-card-image {
    width: 100%;
    height: 130px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.08);
}

.commercial-plan-card-title {
    background: var(--clr-bg-quaternary);
    color: var(--clr-text-white);
    font-family: var(--font-family-head);
    font-size: var(--font-size-body-02);
    font-weight: 800;
    line-height: 1.2;
    padding: 10px 12px;
}

.commercial-plan-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 10px;
}

.commercial-plan-card-meta {
    color: #5d5d5d;
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-06);
    font-style: italic;
}

.commercial-plan-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0;
    padding: 0;
}

.commercial-plan-tags li {
    position: relative;
    color: #3c3c3c;
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-06);
    padding-left: 10px;
}

.commercial-plan-tags li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e9242b;
}

.commercial-plan-bestfor-label {
    color: #2d2d2d;
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-04);
    font-weight: 700;
}

.commercial-plan-bestfor-text {
    color: #3c3c3c;
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-05);
    line-height: 1.3;
}

.commercial-plan-cta {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 132px;
    min-height: 42px;
    padding: 12px 22px;
    border-radius: 42px;
    text-decoration: none;
    background-color: var(--clr-bg-accent);
    color: var(--clr-text-white);
    font-family: var(--font-family-body);
    font-size: var(--font-size-button-02);
    font-weight: 700;
    line-height: 1.4;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.commercial-plan-cta::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    transform: translate(-50%, -50%);
    background: var(--clr-bg-quaternary);
    border-radius: 50%;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    z-index: -1;
    aspect-ratio: 1 / 1;
}

.commercial-plan-cta:hover::after {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.commercial-plan-cta > span {
    color: var(--clr-text-white);
}

.commercial-plan-contact {
    color: var(--clr-text-white);
    text-align: center;
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-03);
}

.commercial-plan-contact a {
    color: var(--clr-text-white);
    font-weight: 700;
}

.commercial-browse-channels {
    background-image: url("../../images/backgrounds/bg-6-v2.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 32px;
}

.commercial-browse-channels .channels-header {
    align-items: flex-start;
}

.commercial-browse-channels .channels-header-text {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    min-width: 0;
}

.commercial-browse-channels .channels-header-text > h2 {
    font-size: var(--font-size-head-04);
    line-height: 1.2;
}

.commercial-browse-channels .channels-header-text > p {
    font-size: var(--font-size-body-04);
}

.commercial-browse-channels #CommercialGenreChannelsContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 64px;
}

.commercial-browse-channels .genre-movies-list-container {
    background: var(--clr-bg-white);
    border-radius: 18px;
    padding: 16px 0 12px 0;
    box-shadow: 0 4px 8px 0 rgba(60, 60, 60, 0.1);
}

.commercial-browse-channels .genre-movies-list-container.is-hidden {
    display: none;
}

.commercial-browse-channels .genre-movies-list-container > h2 {
    padding: 0 16px;
}

.commercial-browse-channels .genre-movies-container {
    padding: 0 32px 2px 32px;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.commercial-browse-channels .genre-movies-container::-webkit-scrollbar {
    display: none;
}

.commercial-browse-load-more-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.commercial-load-more-btn {
    background: var(--clr-bg-white);
    border: 0;
    outline: none;
    box-shadow: none;
}

.commercial-load-more-btn:focus,
.commercial-load-more-btn:active {
    outline: none;
    box-shadow: none;
}

.commercial-load-more-btn:focus-visible {
    outline: 2px solid rgba(193, 17, 22, 0.35);
    outline-offset: 2px;
}

.commercial-partners-section {
    width: 100%;
    background-image: linear-gradient(0deg, rgba(18, 18, 18, 0.78), rgba(18, 18, 18, 0.78)), url("/Content/images/backgrounds/partners-bg-v2.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 56px 64px;
}

.commercial-partners-content {
    max-width: 1312px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.commercial-partners-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.commercial-partners-title {
    color: var(--clr-text-white);
    font-family: var(--font-family-head);
    font-size: var(--font-size-head-03);
    font-weight: 800;
    text-align: center;
}

.commercial-partners-subtitle {
    color: var(--clr-text-white);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-03);
    text-align: center;
}

.commercial-partners-card {
    width: 100%;
    background: var(--clr-bg-white);
    border-radius: 20px;
    padding: 16px 0;
    overflow: hidden;
}

.commercial-partners-marquee {
    width: 100%;
    overflow: hidden;
}

.commercial-partners-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: commercial-partners-marquee 60s linear infinite;
}

.commercial-partners-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 125px);
    grid-auto-columns: 125px;
    gap: 14px;
    width: max-content;
}

.commercial-partner-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    height: 125px;
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    border-radius: 6px;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.commercial-partner-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
}

@keyframes commercial-partners-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 7px));
    }
}

.commercial-partners-contact {
    color: var(--clr-text-white);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-03);
    text-align: center;
}

.commercial-partners-contact a {
    color: var(--clr-text-white);
    font-weight: 700;
    text-decoration: underline;
}

.commercial-assist-section {
    padding: 56px 64px;
    background-image: url("/Content/images/backgrounds/cignal-load-bg-v2.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.commercial-assist-section .cignal-load-container {
    max-width: 1312px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 45px;
}

.commercial-assist-section .cignal-load-header {
    font-size: var(--font-size-head-04);
    font-weight: 800;
    font-family: var(--font-family-head);
    color: var(--clr-text-black);
}

.commercial-assist-section .cignal-load-lead {
    width: 100%;
    font-family: var(--font-family-body);
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--clr-text-neutral-700);
}

.commercial-assist-section .touchpoint-cards {
    display: flex;
    gap: 24px;
    width: auto;
    height: auto;
}

.commercial-assist-section .touchpoint-card {
    display: flex;
    flex-direction: column;
    width: 49%;
    background: var(--clr-bg-tertiary);
    padding: 1px;
    border-radius: 24px;
    position: relative;
    z-index: 0;
    filter: drop-shadow(0px 4px 6px rgba(60, 60, 60, 0.2));
}

.commercial-assist-section .touchpoint-card::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    border-radius: 23px;
    z-index: -1;
}

.commercial-assist-section .touchpoint-card-content {
    display: flex;
    flex-direction: column;
    padding: 24px;
    width: 100%;
    height: 100%;
}

.commercial-assist-section .touchpoint-card-title {
    font-family: var(--font-family-head);
    font-size: 24px;
    font-weight: 800;
    color: #121212;
}

.commercial-assist-section .touchpoint-card-info {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    min-height: 240px;
    flex: 1 1 auto;
}

.commercial-assist-section .touchpoint-info-box {
    flex: 1;
    border: 1px solid rgba(125, 125, 125, 0.5);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commercial-assist-section .touchpoint-info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-family: var(--font-family-body);
    font-size: 16px;
    color: #2b2b2b;
}

.commercial-assist-section .touchpoint-info-row svg {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}

.commercial-assist-section .touchpoint-info-row span {
    line-height: 24px;
}

.commercial-assist-section .touchpoint-info-row a {
    color: #000;
}

.commercial-assist-section .touchpoint-info-multiline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commercial-assist-section .touchpoint-bold,
.commercial-assist-section .touchpoint-bold a {
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .commercial-top-row {
        gap: 24px;
    }

    .commercial-feature-image {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }

    .commercial-browse-channels {
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 24px;
    }

    .commercial-browse-channels .channels-header {
        align-items: center;
    }

    .commercial-browse-channels .channels-header-text > h2 {
        font-size: var(--font-size-head-06);
    }

    .commercial-browse-channels .channels-header-text > p {
        font-size: var(--font-size-body-05);
    }

    .commercial-browse-channels #CommercialGenreChannelsContainer {
        gap: 12px;
        padding: 0 16px;
    }

    .commercial-browse-channels .genre-movies-list-container > h2 {
        padding: 0 16px;
    }

    .commercial-browse-channels .genre-movies-container {
        padding: 0 16px 2px 16px;
    }
}

@media (max-width: 992px) {
    .commercial-assist-section .cignal-load-header {
        font-size: var(--font-size-head-05);
    }

    .commercial-assist-section {
        padding: 40px 16px;
    }

    .commercial-assist-section .cignal-load-container {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .commercial-assist-section .touchpoint-cards {
        flex-direction: column;
    }

    .commercial-assist-section .touchpoint-card {
        width: 100%;
    }

    .commercial-assist-section .touchpoint-card-info {
        flex-direction: column;
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .commercial-plan-section {
        padding: 48px 16px 80px 16px;
    }

    .commercial-plan-title {
        font-size: var(--font-size-head-05);
    }

    .commercial-plan-subtitle,
    .commercial-plan-footnote,
    .commercial-plan-contact {
        font-size: var(--font-size-body-05);
    }

    .commercial-plan-card {
        width: 100%;
        max-width: 300px;
    }

    .commercial-partners-section {
        padding: 40px 16px;
    }

    .commercial-partners-title {
        font-size: var(--font-size-head-05);
    }

    .commercial-partners-subtitle,
    .commercial-partners-contact {
        font-size: var(--font-size-body-05);
    }

    .commercial-partners-grid {
        grid-template-rows: repeat(2, 100px);
        grid-auto-columns: 100px;
        gap: 10px;
    }

    .commercial-partner-tile {
        width: 100px;
        height: 100px;
    }
}
