﻿/* Hero Banner Styles */
.hero-banner-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    min-width: 1440px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 11.25px rgba(0, 0, 0, 0.24);
    position: absolute;
    top: 0;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    clip-path: ellipse(100% 100% at 50% 0%);
    z-index: 0;
}

.show-channel {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.35);
    border-radius: 8px;
}
.channel-logo {
    max-width: 41px;
    max-height: 39px;
}

.hero-banner-subcontainer {
    height: 100%;
    width: 100%;
}

    .hero-banner-subcontainer > img, .hero-banner-subcontainer > video {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        -moz-transition: opacity 0.4s ease-in-out;
        -o-transition: opacity 0.4s ease-in-out;
        -webkit-transition: opacity 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out;
        opacity: 0;
        position: absolute;
        inset: auto;
    }

        .hero-banner-subcontainer > img.active, .hero-banner-subcontainer > video.active {
            opacity: 1;
        }

.hero-banner-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.hero-container {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    position: relative;
    padding: 426px 64px 56px 64px;
    overflow: hidden;
}

.hero-subcontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    z-index: 1;
    gap: 24px;
}

.hero-details-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    height: auto;
    width: 100%;
}

.hero-spinner-container {
    height: 28px;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.hero-spinner-item {
    height: 12px;
    width: 12px;
    background-color: var(--clr-bg-neutral);
    border-radius: 100%;
    position: relative;
    cursor: pointer;
}

    .hero-spinner-item.active {
        padding: 8px;
        border: 1px solid var(--clr-bg-neutral);
        border-radius: 16px;
        background-color: transparent;
        height: 100% !important;
        width: 52px !important;
    }

        .hero-spinner-item.active::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--clr-bg-white);
            height: calc(100% - 16px);
            width: calc(100% - 16px);
            border-radius: 12px;
        }

.hero-title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background-color: var(--clr-bg-transparent);
    height: auto;
    width: 100%;
    border: 1px solid #7D7D7D;
    border-radius: 24px;
    padding: 24px;
    mix-blend-mode: normal;
}

.hero-title {
    font-family: var(--font-family-head);
    font-size: var(--font-size-head-04);
    color: var(--clr-text-white);
    font-weight: 800;
    text-align: center;
}
.hero-description {
    font-weight: 400;
    color: var(--clr-text-white);
    font-family: var(--font-family-body);
    text-align: center;
}


.hero-cta {
    padding: 12px 22px;
    height: auto;
    width: auto;
    background-color: var(--clr-bg-accent);
    border: 0;
    border-radius: 42px;
    color: var(--clr-text-white);
    text-decoration: none;
    font-size: var(--font-size-button-02);
    font-weight: 700;
    line-height: 1.4;
    text-transform: capitalize;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

    .hero-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;
    }

    .hero-cta:hover::after {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

.hero-cta-icon {
    height: 22px;
    aspect-ratio: 1 / 1;
}

.hero-article-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    height: auto;
    width: 100%;
    background-color: var(--clr-bg-white);
    border-radius: 16.26px;
    padding: 40px 0;
    mix-blend-mode: normal;
    box-shadow: 0px 4px 6px rgba(60, 60, 60, 0.2);
}

.hero-article-breadcrumbs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8.13px;
    padding: 0 40px;
    height: auto;
    width: 100%;
}

.hero-article-breadcrumbs-item {
    color: var(--clr-text-neutral);
    font-size: var(--font-size-body-05);
    font-weight: 400;
    text-decoration: none;
}

    .hero-article-breadcrumbs-item.active {
        color: var(--clr-text-accent);
        font-weight: 600;
    }

.hero-article-breadcrumbs-icon {
    height: 20px;
    aspect-ratio: 1 / 1;
}

.hero-article-details {
    height: auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-article-details-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    /*  gap: 50px;*/
    /*   flex-wrap: wrap;*/
   /* padding: 0 40px;*/
    width: 100%;
}

.hero-article-details-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    height: auto;
    width: 100%;
}

.hero-article-details-content {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1 1 0;
  /*  max-width: 684px;*/
}

.hero-article-details-logo {
    height: 150px;
    aspect-ratio: auto;
    max-width: 465px;
    object-fit: contain;
    width: 100%;
}

.hero-article-details-title {
    text-shadow: 0px 3.25278px 9.75833px rgba(30, 215, 96, 0.1);
    color: var(--clr-text-neutral-700);
    font-family: var(--font-family-head);
    font-weight: 800;
    font-size: var(--font-size-head-03);
    line-height: 1.2;
}

.hero-article-details-subtitle {
    font-weight: 400;
    font-size: var(--font-size-body-03);
    color: var(--clr-text-neutral-700);
    line-height: 1.2;
}

.hero-article-details-image {
    width: 498px;
    height: 280px;
    gap: 10px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-shrink: 0;
    align-items: flex-start;
}

    .hero-article-details-image > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.hero-article-details-text {
    font-family: var(--font-family-head);
    font-weight: 800;
    font-size: var(--font-size-head-05);
    color: var(--clr-text-neutral-500);
}

.hero-article-details-download-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    height: auto;
    width: auto;
}

.hero-article-details-download-button {
    height: 68px;
}

    .hero-article-details-download-button > img {
        height: 100%;
        width: auto;
    }

.hero-article-swimlane {
    height: auto;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .hero-article-swimlane::-webkit-scrollbar {
        display: none;
    }

.hero-article-swimlane-content {
    height: auto;
    width: max-content;
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 0 16px;
}

.hero-article-swimlane-cards {
    height: 232px;
    width: 520px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0px;
    background: var(--clr-bg-swimlane);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding: 20px 20px;
}

    .hero-article-swimlane-cards > .card-image {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
        z-index: 0;
    }

    .hero-article-swimlane-cards > .card-label {
        width: 312px;
        height: auto;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        z-index: 1;
        font-family: var(--font-family-head);
        font-size: var(--font-size-head-08);
        font-weight: 700;
        color: var(--clr-text-white);
    }

.hero-article-list {
    height: auto;
    width: 100%;
    padding: 16px 40px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-article-list-container {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero-article-list-subcontainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    height: auto;
    width: 100%;
    border-radius: 24px 24px 0px 0px;
}

.hero-article-list-title {
    font-family: var(--font-family-head);
    font-size: var(--font-size-head-05);
    font-weight: 800;
    color: var(--clr-text-neutral-head-500);
}

.hero-article-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    gap: 24px;
    height: auto;
    width: 100%;
    background: var(--clr-bg-white);
    border: 2px solid var(--clr-border-brand);
    border-radius: 64px;
    transition: height 0.3s ease-in-out;
}

.hero-article-list-item {
    --fill-list-icon: var(--clr-text-white);
}

.hero-article-list-item-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    height: auto;
}

.hero-article-list-icon-container {
    height: 60px;
    width: 60px;
    border-radius: 20px;
    position: relative;
    z-index: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

    .hero-article-list-icon-container::before {
        content: "";
        position: absolute;
        background: var(--clr-bg-septary);
        opacity: 0;
        transition: all 0.3s ease-in-out;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .hero-article-list-icon-container > svg {
        height: 36px;
        width: 36px;
    }

.hero-article-list-icon {
    height: 60px;
    width: 60px;
    aspect-ratio: 1 / 1;
}

.hero-article-list-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
}

    .hero-article-list-details > .detail-title-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0px;
        gap: 12px;
        height: auto;
        width: 100%;
    }

        .hero-article-list-details > .detail-title-container > .detail-title {
            font-family: var(--font-family-body);
            font-size: var(--font-size-body-01);
            font-weight: 600;
            color: var(--clr-text-neutral-500);
        }

    .hero-article-list-details > .detail-body, .hero-article-list-item > .detail-body {
        font-weight: 400;
        font-size: var(--font-size-body-04);
        color: var(--clr-text-neutral-500);
    }

.hero-article-detail-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 10px 20px;
    gap: 8px;
    isolation: isolate;
    width: auto;
    height: auto;
    min-height: 42px;
    max-height: 56px;
    max-width: 0;
    background: var(--clr-bg-septary);
    border-radius: 42px;
    text-decoration: none;
    color: var(--clr-text-white);
    font-style: normal;
    font-weight: 600;
    font-size: var(--font-size-button-03);
    line-height: 1.4;
    text-transform: capitalize;
    position: relative;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, max-width 0s ease-in-out, padding 0s ease-in-out;
}

    .hero-article-detail-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;
    }

    .hero-article-detail-cta:hover::after {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

.hero-cta-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Background Styles */
.bg-1 {
    background-image: url("../images/pilipinas-live-bg-1.svg");
    background-size: 200%;
    background-position: 45% -80%;
    background-repeat: no-repeat;
}


@media (min-width: 993px) {
    .hero-article-list-item:hover > .hero-article-list-item-group > .hero-article-list-icon-container {
        width: 144px;
        border-radius: 60px;
    }

        .hero-article-list-item:hover > .hero-article-list-item-group > .hero-article-list-icon-container::before {
            opacity: 1;
        }

        .hero-article-list-item:hover > .hero-article-list-item-group > .hero-article-list-icon-container > svg > path {
            fill: var(--fill-list-icon);
        }
}


@media (max-width: 992px) {
    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 30px;
    }
    .hero-subcontainer {
        gap: 16px;
    }
    .hero-article-details-row > .btn-primary-bordered,
    .hero-article-details-row > a.btn-primary-bordered {
        width: 100%;
    }
    .hero-spinner-item {
        height: 10px;
        width: 10px;
    }

    .hero-title-container {
        gap: 20px;
    }

    .hero-title {
        font-size: var(--font-size-head-06);
    }
    .hero-description {
        font-size: var(--font-size-body-04);
    }

    .hero-cta {
        width: 100%;
        padding: 10px 20px;
        gap: 8px;
        font-size: var(--font-size-button-03);
        font-weight: 600;
    }

    .hero-article-container {
        padding: 20px 0;
    }

    .hero-article-breadcrumbs {
        padding: 0 24px;
    }

    .hero-article-breadcrumbs-item {
        font-size: var(--font-size-body-06);
    }

    .hero-article-details {
        gap: 24px;
        padding: 0 16px;
    }

    .hero-article-details-row {
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-article-details-title {
        font-size: var(--font-size-head-05);
        line-height: 1.2;
    }

    .hero-article-details-subtitle {
        font-size: var(--font-size-body-04);
    }

    .hero-article-details-image {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
    }

    .hero-article-details-column {
        gap: 12px;
    }

    .hero-article-details-text {
        font-size: var(--font-size-head-07);
    }

    .hero-article-details-download-container {
        gap: 12px;
    }

    .hero-article-details-download-button {
        height: 48px;
    }

    .hero-article-swimlane-content {
        gap: 8px;
    }

    .hero-article-swimlane-cards {
        height: 160px;
        width: 280px;
        padding: 16px;
    }

        .hero-article-swimlane-cards > .card-label {
            width: 100%;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-size: var(--font-size-body-04);
        }

    .hero-article-list {
        padding: 16px 16px 0 16px;
    }

    .hero-article-list-container {
        gap: 24px;
    }

    .hero-article-list-title {
        font-size: var(--font-size-head-07);
    }

    .hero-article-list-subcontainer {
        gap: 12px;
    }

    .hero-article-list-item {
        padding: 16px 20px;
        gap: 0;
        border: 1px solid var(--clr-border-brand);
        border-radius: 24px;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        position: relative;
        transition: height 0.3s ease-in-out;
        cursor: pointer;
    }

        .hero-article-list-item.active {
            gap: 12px;
        }

    .hero-article-list-item {
        --fill-list-icon: unset;
    }

    .hero-article-list-icon-container {
        padding: 0;
        height: 32px;
        width: 32px;
        border-radius: 60px;
    }

        .hero-article-list-icon-container::before {
            opacity: 0;
        }

        .hero-article-list-icon-container > svg {
            height: 24px;
            width: 24px;
        }

    .hero-article-list-item.active > .hero-article-list-item-group > .hero-article-list-icon-container {
        padding: 0 24px;
        height: 32px;
        width: auto;
        border-radius: 60px;
    }

        .hero-article-list-item.active > .hero-article-list-item-group > .hero-article-list-icon-container::before {
            opacity: 1;
        }

        .hero-article-list-item.active > .hero-article-list-item-group > .hero-article-list-icon-container > svg > path {
            fill: var(--clr-text-white) !important;
        }

    .hero-article-list-item-group {
        gap: 16px;
    }

    .hero-article-list-details > .detail-title-container > .detail-title {
        font-size: var(--font-size-body-03);
    }

    .hero-article-list-details > .detail-body, .hero-article-list-item > .detail-body {
        font-size: var(--font-size-body-05);
    }

    .hero-article-list-details > .detail-body {
        display: none;
    }

    .hero-article-list-item > .detail-body {
        display: flex;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .hero-article-list-item.active > .detail-body {
        max-height: 1000px;
        opacity: 1;
    }

    .hero-article-detail-cta {
        opacity: 0 !important;
        max-height: 0 !important;
        max-width: 100% !important;
        height: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow: hidden;
        position: absolute;
        pointer-events: none;
        transition: all 0s ease-in-out;
    }

    .hero-article-list-item.active .hero-article-detail-cta {
        opacity: 1 !important;
        height: auto !important;
        max-height: 100% !important;
        padding: 10px 20px !important;
        width: 100% !important;
        position: relative;
        pointer-events: auto;
    }
    [data-view="desktop"] {
        display: none;
    }

    [data-view="mobile"] {
        display: block;
    }
}
[data-view="desktop"] {
    display: block;
}

[data-view="mobile"] {
    display: none;
}
