.fp-dash-std {
    width: 100%;
    max-width: 1800px;
    min-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 33% 67%;
    gap: 20px;
    padding: 0;
    box-sizing: border-box;
}

.fp-dash-1, .fp-dash-2, .fp-dash-3, .fp-dash-4 {
    width: 100%;
    max-width: 1800px;
    min-width: 1280px;
    height: calc(100vh - 70px);
    min-height: 720px;
    display: grid;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    top: 0;
    left: 0;
    gap: 20px;
    margin-left: 24px;
}

.fp-dash-1 {
    /*grid-template-rows: 45% 55%;*/
    grid-template-columns: 33% 66%;
    grid-template-areas:
        "fp-top-left fp-top-right"
        "fp-bottom   fp-bottom";
}


.fp-dash-2 {
    grid-template-rows: 45% 55%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        "fp-top-left fp-top-center fp-top-right"
        "fp-bottom fp-bottom fp-bottom";
}


.fp-dash-4 {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 33% 67%;
    grid-template-areas:
        "fp-main fp-right-top"
        "fp-main fp-right-bottom";
}

.fp-box {
    background-color: white;
    border-radius: 8px;
    padding: 37px 70px 37px 70px;
}
/*
.fp-dash-1 .fp-box {
    margin: 0;
}*/

.fp-dash-1 .fp-top-left {
    grid-area: fp-top-left;
}

.fp-dash-1 .fp-top-right {
    grid-area: fp-top-right;
    min-width: 400px;
}

.fp-dash-1 .fp-bottom {
    grid-area: fp-bottom;
    min-height: 400px;
    align-content: flex-end;
    margin-bottom: 75px;
}

.fp-box-np {
    padding: 0 !important;
}

.fp-box-trns {
    background-color: transparent !important;
}

.fp-row-tiles {
    display: flex;
    gap: 10px;
    overflow-x: hidden; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Prevent vertical scrolling */
    scroll-behavior: smooth; /* Optional: adds smooth scrolling when using JS/anchor links */
    padding: 0;
}

    /* For WebKit browsers (Chrome, Safari) */
    .fp-row-tiles::-webkit-scrollbar {
        display: none;
    }

/* For Firefox */
.fp-row-tiles {
    scrollbar-width: none;
}

.fp-dash-2 .fp-top-left {
    grid-area: fp-top-left;
}

.fp-dash-2 .fp-top-center {
    grid-area: fp-top-center;
}

.fp-dash-2 .fp-top-right {
    grid-area: fp-top-right;
}

.fp-dash-2 .fp-bottom {
    grid-area: fp-bottom;
}


.fp-dash-3 {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        "fp-col-1 fp-col-2 fp-col-3";
}

    .fp-dash-3 .fp-col-1 {
        grid-area: fp-col-1;
    }

    .fp-dash-3 .fp-col-2 {
        grid-area: fp-col-2;
    }

    .fp-dash-3 .fp-col-3 {
        grid-area: fp-col-3;
    }



.fp-dash-4 .fp-main {
    grid-area: fp-main;
}

.fp-dash-4 .fp-right-top {
    grid-area: fp-right-top;
}

.fp-dash-4 .fp-right-bottom {
    grid-area: fp-right-bottom;
}




.fp-extra {
    position: fixed;
    top: 70px;
    left: 1950px; /* 1920px container + 10px gap */
    height: calc(100vh - 20px);
    width: calc(100vw - (1920px + 10px));
    background-color: #777;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    border-radius: 8px;
    box-sizing: border-box;
}

@media (max-width: 2170px) {
    .fp-extra {
        display: none;
    }
}






/*cards
*/


.fp-card-wide-video-card {
    font-family: var(--font-secondary);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 24px;
}


.fp-card-video-card {
    font-family: var(--font-secondary);
    min-width: 424px;
    max-width: 424px;
    height: 366px;
    background-size: cover;
    background-position: center;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 36px;
    transition: transform 0.3s ease-in-out;
}

    .fp-card-video-card:hover {
        transform: scale(1.02);
    }

    .fp-card-carousel-item {
    display: flex;
    height: 100%;
}

.fp-card-video-card.fp-card-light-mode {
    color: white;
}

.fp-card-video-card.fp-card-dark-mode {
    color: var(--flint);
}

.fp-card-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.fp-card-video-content {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    text-align: left;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.fp-card-video-tag {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.fp-card-light-mode .fp-card-video-tag, .fp-card-light-mode .ffp-card-video-title, .fp-card-light-mode .fp-card-video-subtitle, .fp-card-light-mode .fp-card-video-duration, .fp-card-wide-video-subtitle {
    color: white;
}


.fp-card-video-title {
    font-size: 2.25rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    margin: 0;
}

.fp-card-video-subtitle {
    font-size: 2rem;
    line-height: 2rem;
    font-family: var(--font-secondary);
    font-weight: 200;
    margin: 5px 0;
}

.fp-card-video-duration {
    position: absolute;
    bottom: 0;
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 10px;
    font-family: var(--font-primary);
    font-weight: 400;
}

.fp-card-play-button {
    position: absolute;
    bottom: 0;
    right: 20px;
    background: rgba(255, 255, 255, 1);
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    color: var(--flint);
}

    .fp-card-play-button:hover {
        background: rgba(255, 255, 255, 0.4);
    }


.fp-card-wide-video-card.fp-card-light-mode {
    color: white;
}

.fp-card-wide-video-card.fp-card-dark-mode {
    color: var(--flint);
}

.fp-card-wide-video-title {
    font-size: 2.25rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.fp-card-wide-video-subtitle {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 200;
    margin: 5px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    line-height:1.8rem;
}


.fp-wide-card-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 1);
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    width: 70px;
    height: 70px;
    color: var(--flint);
}

    .fp-wide-card-play-button:hover {
        background: rgba(255, 255, 255, 0.4);
    }

.fp-card-wide-play-icon {
    margin-left: 4px; /* Slight adjustment to visually center the play icon */
}





/*
.fp-card {
    height: 100%;
    padding: 52px 72px 52px 72px;
    background-color: white;
    border-radius: 10px;
    background-color: white;
}
*/
/* Container for the card list */
.fp-card-list-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Each card list item will be a row */
.fp-card-list-item {
    display: flex;
    align-items: center;
    padding: 0; /* Horizontal padding */
    height: 70px; /* Fixed row height */
    border-bottom: 1px solid rgba(76, 76, 76, 0.3);
}

.fp-card-list-item-sm {
    display: flex;
    align-items: center;
    padding: 0; /* Horizontal padding */
    height: 50px; /* Fixed row height */
    border-bottom: 1px solid rgba(76, 76, 76, 0.3);
}


/* Text column that fills the width */
.fp-text-column {
    flex-grow: 1;
    min-width: 0; /* Prevents the flex item from shrinking improperly */
    overflow: hidden; /* Ensures text doesn't overflow */
    text-overflow: ellipsis; /* Adds ellipsis for long text */
    white-space: nowrap; /* Keeps text in a single line */
}

/* Status column with a fixed width */
.fp-status-column {
    flex: 0 0 48px;
    max-width: 48px;
    text-align: center; /* Optional: center the status content */
    overflow: hidden; /* Ensures content does not overflow */
}




.fp-mini-dash-underline {
    min-width: 53px;
    max-width: 53px;
    margin: 0;
    height: 2px;
    background-color: var(--flint);
    margin-bottom: 50px;
}
