/* =========================================================
   FORTHLANE VAULT — COMPLETE UPDATED CSS
   Multiple Accordions + Mobile Video Fix + SVG Play Button
========================================================= */


/* =========================================================
   GLOBAL BOX SIZING
========================================================= */

.fv-vault,
.fv-vault *,
.fv-modal,
.fv-modal * {
    box-sizing: border-box;
}


/* =========================================================
   MAIN
========================================================= */

.fv-vault {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
}


/* =========================================================
   TOPIC / ACCORDION
========================================================= */

.fv-topic {
    position: relative;

    width: 100%;

    background: #111025;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 10px !important;

    margin-bottom: 20px !important;

    overflow: visible;

    padding: 30px;

    box-shadow: 0 0 58.6px 0 #24234E inset;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background-color .25s ease;
}

.fv-topic:last-of-type {
    margin-bottom: 0 !important;
}

.fv-topic:hover {
    border-color: rgba(189, 158, 112, 0.30);
}


/* =========================================================
   TOPIC HEADER
========================================================= */

.fv-topic-header {
    width: 100%;
    min-height: 50px;

    padding: 0;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    border: 0;
    background: transparent;

    color: #d9d6c8;

    text-align: left;

    font: inherit;

    transition: opacity .2s ease;
}

.fv-topic-header:hover {
    opacity: .95;
}


/* =========================================================
   TOPIC HEADING
========================================================= */

.fv-topic-heading {
    min-width: 0;
    flex: 1 1 auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 7px;
}


/* =========================================================
   TOPIC TITLE
========================================================= */

.fv-topic-title {
    display: flex;
    align-items: center;

    gap: 25px;

    font-family: 'Austin News Deck Medium' !important;

    font-size: 15px;

    line-height: 1.3;

    letter-spacing: .2px;

    color: #d9d6c8;
}


/* =========================================================
   TOPIC DESCRIPTION
========================================================= */

.fv-topic-description {
    display: none !important;

    max-width: 620px !important;

    padding-left: 78px !important;

    color: #aaa7b2;

    font-family: "Inter", Sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.45;

    letter-spacing: 0;

    transition: none !important;
}

.fv-topic.is-active .fv-topic-description {
    display: block !important;
}


/* =========================================================
   TOPIC ICON
========================================================= */

.fv-topic-icon {
    width: 53px;
    height: 53px;

    border-radius: 50%;

    background: #383252;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;

    flex: 0 0 auto;

    overflow: hidden;

    transition:
        background-color .25s ease,
        transform .25s ease;
}

.fv-topic:hover .fv-topic-icon {
    background: #403a5e;
}

.fv-topic-icon img {
    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    display: block;
}


/* =========================================================
   TOPIC META
========================================================= */

.fv-topic-meta {
    display: flex;

    align-items: center;

    padding-top: 15px;

    gap: 25px;

    font-family: "Inter", Sans-serif;

    font-weight: 400;

    font-size: 11.57px;

    line-height: 138%;

    letter-spacing: 15%;

    color: #918d9e;

    white-space: nowrap;
}


/* =========================================================
   TOPIC ARROW
========================================================= */

.fv-arrow {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    overflow: visible;
}

.fv-arrow img,
.fv-arrow .fv-open-icon,
.fv-arrow .fv-close-icon {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    object-fit: contain;

    transform-origin: center;

    transition:
        opacity .28s ease,
        transform .38s cubic-bezier(.22, 1, .36, 1);
}


/* =========================================================
   ARROW CLOSED
========================================================= */

.fv-topic:not(.is-active) .fv-arrow .fv-open-icon {
    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, -50%)
        rotate(0deg)
        scale(1);
}

.fv-topic:not(.is-active) .fv-arrow .fv-close-icon {
    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, -50%)
        rotate(-90deg)
        scale(.65);
}


/* =========================================================
   ARROW OPEN
========================================================= */

.fv-topic.is-active .fv-arrow .fv-open-icon {
    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, -50%)
        rotate(90deg)
        scale(.65);
}

.fv-topic.is-active .fv-arrow .fv-close-icon {
    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, -50%)
        rotate(0deg)
        scale(1);
}

.fv-arrow .fv-default-arrow {
    line-height: 1;
}


/* =========================================================
   ACTIVE TOPIC HEADER
========================================================= */

.fv-topic.is-active button.fv-topic-header {
    padding-bottom: 30px !important;

    margin-bottom: 30px !important;

    border-bottom: 0.5px solid #BD9E70;
}


/* =========================================================
   ACCORDION CONTENT
========================================================= */

.fv-topic-content {
    width: 100%;

    padding: 0 !important;

    overflow: hidden;

    opacity: 0;

    height: 0;

    visibility: hidden;

    will-change: height, opacity;

    transition:
        height .38s cubic-bezier(.22, 1, .36, 1),
        opacity .25s ease,
        visibility 0s linear .38s;
}

.fv-topic.is-active .fv-topic-content {
    opacity: 1;

    visibility: visible;

    transition:
        height .38s cubic-bezier(.22, 1, .36, 1),
        opacity .25s ease,
        visibility 0s linear 0s;
}

.fv-topic-content.fv-height-auto {
    height: auto !important;
}


/*
   Keep hidden content from creating layout.
   JS controls the actual accordion state.
*/

.fv-topic-content[hidden] {
    display: none !important;
}


/* =========================================================
   SORT WRAPPER
========================================================= */

.fv-sort-wrap {
    position: relative !important;

    display: inline-block !important;

    width: 149px;

    height: 30px;

    margin: 0 0 30px;

    vertical-align: top;

    overflow: visible !important;

    z-index: 100;
}

.fv-sort-wrap.is-open {
    z-index: 99999 !important;
}


/* =========================================================
   NATIVE SELECT
========================================================= */

.fv-sort-wrap > .fv-sort,
.fv-sort {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    min-width: 1px !important;
    min-height: 1px !important;

    margin: -1px !important;

    padding: 0 !important;

    border: 0 !important;

    opacity: 0 !important;

    overflow: hidden !important;

    clip: rect(0 0 0 0) !important;

    clip-path: inset(50%) !important;

    white-space: nowrap !important;

    pointer-events: none !important;
}


/* =========================================================
   CUSTOM SORT BUTTON
========================================================= */

.fv-sort-custom {
    position: relative;

    width: 149px;

    height: 26px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 11px 0 12px;

    margin: 0;

    border: 0;

    border-radius: 20px;

    background: #383252;

    color: #BD9E70;

    font-family: "Inter", Sans-serif;

    font-size: 11.57px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    text-align: left;

    cursor: pointer;

    outline: none;

    appearance: none;

    -webkit-appearance: none;

    transition:
        background .2s ease,
        border-radius .2s ease,
        box-shadow .2s ease;
}

.fv-sort-custom:hover {
    background: #403a5e;

    color: #BD9E70;
}

.fv-sort-custom:focus,
.fv-sort-custom:focus-visible {
    outline: none;

    box-shadow: 0 0 0 1px rgba(189, 158, 112, .35);
}


/* =========================================================
   SORT TEXT
========================================================= */

.fv-sort-custom-text {
    display: block;

    min-width: 0;

    max-width: 115px;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}


/* =========================================================
   SORT ARROW
========================================================= */

.fv-sort-custom-arrow {
    width: 11px;

    height: 6px;

    flex: 0 0 11px;

    margin-left: 8px;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1L6 6L11 1' fill='none' stroke='%23BD9E70' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: center;

    background-size: 11px 6px;

    transition: transform .2s ease;
}

.fv-sort-wrap.is-open .fv-sort-custom {
    border-radius: 12px 12px 0 0;
}

.fv-sort-wrap.is-open .fv-sort-custom-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   SORT MENU
========================================================= */

.fv-sort-menu {
    position: absolute !important;

    top: 26px !important;

    left: 0 !important;

    width: 149px !important;

    box-sizing: border-box;

    margin: 0;

    padding: 6px 0;

    background: #F7F5F4;

    border: 0;

    border-radius: 0 0 12px 12px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .14);

    display: none !important;

    overflow: hidden;

    z-index: 999999 !important;
}

.fv-sort-wrap.is-open .fv-sort-menu {
    display: block !important;
}


/* =========================================================
   SORT OPTION
========================================================= */

.fv-sort-option {
    position: relative;

    width: 100%;

    min-height: 30px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    padding: 7px 10px 7px 30px;

    margin: 0;

    background: transparent;

    border: 0;

    color: #BD9E70;

    font-family: "Inter", Sans-serif;

    font-size: 11.57px;

    font-weight: 400;

    line-height: 1.3;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    text-align: left;

    cursor: pointer;

    outline: none;

    appearance: none;

    -webkit-appearance: none;

    transition:
        background-color .15s ease,
        color .15s ease;
}

.fv-sort-option:hover,
.fv-sort-option:focus {
    background: rgba(189, 158, 112, .10);

    color: #BD9E70;
}

.fv-sort-option.is-selected {
    background: rgba(189, 158, 112, .06);

    color: #BD9E70;
}

.fv-sort-option.is-selected::before {
    content: "✓";

    position: absolute;

    left: 10px;

    top: 50%;

    transform: translateY(-50%);

    color: #BD9E70;

    font-size: 12px;

    line-height: 1;
}


/* =========================================================
   VIDEO GRID
========================================================= */

.fv-video-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 35px 25px;

    width: 100%;
}


/* =========================================================
   VIDEO CARD
========================================================= */

.fv-video-card {
    cursor: pointer;

    min-width: 0;

    width: 100%;

    transition: transform .25s ease;
}

.fv-video-card:hover {
    transform: translateY(-2px);
}


/* =========================================================
   VIDEO THUMBNAIL
========================================================= */

.fv-video-thumb {
    position: relative;

    width: 100%;

    height: 278px;

    overflow: hidden;

    border-radius: 10px !important;

    background: #29283a;

    border: solid 0.5px #BD9E70;

    box-shadow:
        0 0 0 rgba(189, 158, 112, 0);

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

.fv-video-card:hover .fv-video-thumb {
    border-color: #BD9E70;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .20);
}

.fv-thumb-placeholder {
    width: 100%;

    height: 100%;

    background: #29283a;
}

.fv-video-thumb img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    opacity: .85;

    transition:
        transform .45s ease,
        opacity .35s ease;
}

.fv-video-card:hover .fv-video-thumb img {
    transform: scale(1.04);

    opacity: .95;
}


/* =========================================================
   PLAY BUTTON — SVG
========================================================= */

/*
   IMPORTANT:
   The SVG is inserted by JavaScript.
   Any old emoji/text is hidden.
*/

.fv-play {
    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 54px;

    height: 54px;

    padding: 0 !important;

    margin: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: transparent !important;

    border: 0 !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    color: transparent !important;

    font-size: 0 !important;

    line-height: 0;

    cursor: pointer;

    z-index: 5;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/*
   Exact supplied SVG.
*/

.fv-play svg {
    display: block;

    width: 54px;

    height: 54px;

    max-width: 100%;

    max-height: 100%;

    flex: 0 0 auto;
}


.fv-video-card:hover .fv-play {
    transform:
        translate(-50%, -50%)
        scale(1.07);
}


/* =========================================================
   VIDEO DURATION
========================================================= */

.fv-video-duration {
    position: absolute;

    bottom: 7px;

    right: 7px;

    padding: 4px 6px;

    border-radius: 3px;

    background: #161631B2;

    color: #FAF8F4;

    font-family: "Inter", Sans-serif;

    font-weight: 400;

    font-size: 11.57px;

    line-height: 138%;

    letter-spacing: 15%;

    text-align: right;

    text-transform: uppercase;
}

.fv-video-thumb .fv-duration {
    position: absolute;

    bottom: 7px;

    right: 7px;

    padding: 4px 6px;

    border-radius: 3px;

    background: #161631B2;

    color: #FAF8F4;

    font-family: "Inter", Sans-serif;

    font-weight: 400;

    font-size: 11.57px;

    line-height: 138%;

    letter-spacing: 15%;

    text-align: right;

    text-transform: uppercase;
}


/* =========================================================
   VIDEO INFO
========================================================= */

.fv-video-info {
    padding-top: 20px;
}

.fv-video-info h3 {
    margin: 0 0 5px;

    color: #c5c1b6;

    font-family:
        'Austin News Deck Medium' !important;

    font-size: 12px;

    line-height: 1.45;
}

.fv-video-info span {
    color: #BD9E70;

    font-size: 7px;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================================================
   MODAL
========================================================= */

.fv-modal {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

    padding: 30px;

    overflow: hidden;
}

.fv-modal.is-open {
    display: flex;
}


/* =========================================================
   MODAL OVERLAY
========================================================= */

.fv-modal-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background:
        rgba(0, 0, 0, .72);

    backdrop-filter: blur(3px);
}


/* =========================================================
   MODAL BOX
========================================================= */

.fv-modal-box {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 650px;

    max-height: 90vh;

    overflow-y: auto !important;

    overflow-x: hidden !important;

    box-sizing: border-box;

    padding: 20px 45px 45px;

    border-radius: 30px;

    border: solid 0.5px #BD9E70;

    background: #17152f;

    box-shadow:
        0 0 57px 0 #24234E inset;

    scrollbar-width: none !important;

    -ms-overflow-style: none !important;

    animation: fvModalIn .25s ease;
}

@keyframes fvModalIn {

    from {
        opacity: 0;

        transform:
            translateY(12px)
            scale(.98);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

.fv-modal-box::-webkit-scrollbar {
    width: 0 !important;

    height: 0 !important;

    display: none !important;
}


/* =========================================================
   MODAL CLOSE
========================================================= */

.fv-modal-close {
    position: sticky !important;

    top: 0 !important;

    margin-top: 0 !important;

    margin-right: -35px !important;

    margin-left: auto !important;

    margin-bottom: 5px !important;

    z-index: 99999 !important;

    width: 32px;

    height: 32px;

    border: 0;

    background: transparent;

    color: #BD9E70;

    font-size: 40px;

    font-weight: 200;

    line-height: 1;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    transition:
        transform .2s ease,
        color .2s ease;
}

.fv-modal-close:hover {
    color: #FAF8F4;

    transform: scale(1.08);
}


/* =========================================================
   MODAL VIDEO — RESPONSIVE
========================================================= */

.fv-modal-video {
    position: relative;

    width: 100%;

    max-width: 100%;

    height: auto;

    min-height: 0;

    aspect-ratio: 16 / 9;

    background: #29283a;

    border-radius: 10px;

    overflow: hidden;

    margin: 10px 0 14px;

    flex-shrink: 0;
}


/* =========================================================
   MODAL IFRAME
========================================================= */

.fv-modal-video .fv-modal-iframe,
.fv-modal-iframe {
    position: absolute;

    inset: 0;

    width: 100% !important;

    height: 100% !important;

    max-width: 100% !important;

    max-height: 100% !important;

    margin: 0;

    padding: 0;

    border: solid 0.5px #BD9E70;

    border-radius: 10px;

    display: block;

    box-sizing: border-box;
}


/* =========================================================
   MODAL PLAY BUTTON — SVG
========================================================= */

.fv-modal-play {
    position: absolute;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 74px;

    height: 74px;

    padding: 0 !important;

    margin: 0;

    border: 0 !important;

    border-radius: 0 !important;

    background: transparent !important;

    box-shadow: none !important;

    color: transparent !important;

    font-size: 0 !important;

    line-height: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 3;

    transition:
        transform .2s ease,
        opacity .2s ease;
}


/*
   Exact supplied SVG.
*/

.fv-modal-play svg {
    display: block;

    width: 74px;

    height: 74px;

    max-width: 100%;

    max-height: 100%;

    flex: 0 0 auto;
}


.fv-modal-play:hover {
    transform:
        translate(-50%, -50%)
        scale(1.05);
}

.fv-modal-play:focus-visible {
    outline: 1px solid #BD9E70;

    outline-offset: 3px;
}


/* =========================================================
   MODAL META
========================================================= */

.fv-modal-meta {
    position: unset;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    margin: 20px 0;

    padding: 10px 0 0;

    gap: 8px;

    background: unset;

    font-family: "Inter", Sans-serif;

    font-weight: 400;

    line-height: 138%;

    letter-spacing: 15%;

    text-transform: uppercase;

    color: #BD9E70 !important;
}


/* =========================================================
   COMPANY
========================================================= */

.fv-company {
    background: #2C2738;

    padding: 5px 10px;

    border-radius: 20px;

    margin-right: 15px;
}


/* =========================================================
   LABEL
========================================================= */

.fv-label {
    display: block;

    margin-bottom: 9px;

    font-family: "Inter", Sans-serif;

    color: #BD9E70;

    font-size: 7px;

    letter-spacing: 2px;
}


/* =========================================================
   MODAL DURATION
========================================================= */

.fv-modal-meta .fv-duration {
    position: unset;

    font-family: "Inter", Sans-serif;

    font-weight: 400;

    font-size: 11px !important;

    line-height: 138%;

    letter-spacing: 15%;

    text-transform: uppercase;

    background: unset;

    padding: 0;

    color: #BD9E70 !important;
}


/* =========================================================
   FIRST BULLET HIDE
========================================================= */

.fv-modal-meta .fv-company + span {
    display: none !important;
}


/* =========================================================
   MODAL TITLE
========================================================= */

.fv-modal-title {
    margin: 10px 0 15px;

    color: #e3dfd4;

    font-family:
        'Austin News Deck Medium' !important;

    font-size: 22px;

    line-height: 1.3;
}


/* =========================================================
   ABOUT
========================================================= */

.fv-about {
    border-bottom: 1px solid #BD9E70;

    padding-bottom: 20px;
}

.fv-about p,
.fv-bio p {
    margin: 0;

    color: #aaa7b2;

    font-family: "Inter", Sans-serif;

    font-weight: 400;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   INTERVIEW
========================================================= */

.fv-interview {
    padding: 20px 0;
}


/* =========================================================
   PEOPLE
========================================================= */

.fv-people {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 40px;

    margin-top: 20px;
}


/* =========================================================
   PERSON
========================================================= */

.fv-person {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    min-width: 0;
}

.fv-person > div:last-child {
    min-width: 0;
}

.fv-person strong,
.fv-person small {
    display: block;
}


/* =========================================================
   PERSON NAME
========================================================= */

.fv-person strong {
    color: #FAF8F4;

    font-family:
        'Austin News Deck Medium' !important;

    font-size: 20px;

    line-height: 138%;
}


/* =========================================================
   PERSON ROLE
========================================================= */

.fv-person small {
    color: #BD9E70;

    font-family: "Inter", Sans-serif;

    font-size: 9px;

    line-height: 145%;

    letter-spacing: 15%;

    text-transform: uppercase;
}


/* =========================================================
   AVATAR
========================================================= */

.fv-avatar {
    position: relative;

    flex: 0 0 auto;

    width: 53px;

    height: 53px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #383252;

    border: 1px solid #BD9E70;

    color: #BD9E70;

    font-family:
        'Austin News Deck Medium';

    font-size: 16px;

    line-height: 138%;

    overflow: hidden;
}

.fv-avatar img.fv-guest-photo,
.fv-avatar img.fv-interviewer-photo {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    display: none;

    object-fit: cover;

    border-radius: 50%;
}

.fv-avatar.has-photo img {
    display: block;
}

.fv-avatar.has-photo .fv-guest-initials,
.fv-avatar.has-photo .fv-interviewer-initials {
    display: none;
}

.fv-guest-initials,
.fv-interviewer-initials {
    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   INTERVIEWER
========================================================= */

.fv-interviewer-name-row {
    display: flex;

    align-items: baseline;

    gap: 12px;

    flex-wrap: nowrap;
}

.fv-interviewer-label {
    color: #FAF8F4 !important;

    font-family: "Inter", Sans-serif;

    font-size: 9px !important;

    font-weight: 400;

    line-height: 138%;

    letter-spacing: 15%;

    text-transform: uppercase;

    white-space: nowrap;
}

.fv-interviewer-role {
    margin-top: 0 !important;
}


/* =========================================================
   BIO
========================================================= */

.fv-bio {
    margin: 22px 0 0;

    padding: 0;

    border: 0;

    background: transparent;
}

.fv-bio p {
    max-width: 240px;

    color: #FAF8F4;

    font-size: 14px !important;

    line-height: 140% !important;
}


/* =========================================================
   GUEST CONTENT
========================================================= */

.fv-guest-content {
    margin: 10px 0 0;

    max-width: 320px;

    color: #f0eef0;

    font-size: 15px;

    line-height: 1.45;

    font-weight: 400;
}


/* =========================================================
   CONTACT
========================================================= */

.fv-contact-box {
    margin-top: 40px;

    padding: 15px;

    min-height: 54px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    flex-wrap: wrap;

    gap: 4px;

    border: 0.5px solid #BD9E70;

    border-radius: 10px;

    background: #2C2738;

    color: #FAF8F4;

    font-family: "Inter", Sans-serif;

    font-size: 12px;

    line-height: 150%;

    font-weight: 400;
}

.fv-contact-email {
    color: #BD9E70;

    text-decoration: none;

    transition: color .2s ease;
}

.fv-contact-email:hover {
    color: #FAF8F4;

    text-decoration: underline;
}


/* =========================================================
   MODAL BODY LOCK
========================================================= */

body.fv-modal-lock {
    overflow: hidden !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .fv-topic {
        padding: 25px;
    }

    .fv-video-grid {
        gap: 28px 20px;
    }

    .fv-video-thumb {
        height: 250px;
    }

    .fv-modal-box {
        max-width: 620px;
    }
}

span.sessions-mobile{
 display: none;   
}
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* TOPIC */

    .fv-topic {
        margin-bottom: 20px !important;

        padding: 15px !important;
    }

    .fv-topic.is-active {
        padding: 15px !important;
    }

    .fv-topic-header {
        padding: 0;

        gap: 7px;

        min-height: auto;
    }

    .fv-topic.is-active .fv-topic-header {
        padding: 0;
    }

    .fv-topic.is-active button.fv-topic-header {
        padding-bottom: 20px !important;

        margin-bottom: 20px !important;
    }


    /* TITLE */

    .fv-topic-title {
        font-size: 14px;

        gap: 8px;
    }


    /* META */

    .fv-topic-meta {
        gap: 8px;

        padding-top: 10px;

        font-size: 9px;
    }

    .fv-topic-meta span:first-child {
        display: none;
    }

    .fv-topic.is-active .fv-topic-meta span:first-child {
        display: none;

        position: absolute;

        left: 55px;

        top: 50px;
    }

.fv-topic.is-active span.sessions-mobile {
    display: block;
    color: #BD9E70;
    font-size: 9px;
    padding-left: 40px;
}
    /* DESCRIPTION */

    span.fv-topic-description {
/*         padding-top: 15px; */

        padding-left: 40px !important;
    }

    .fv-topic-description {
        max-width: 100% !important;

        padding-left: 0 !important;

        font-size: 12px;
    }


    /* ICON */

    .fv-topic-icon {
        width: 45px;

        height: 45px;
    }


    /* ARROW */

    .fv-arrow {
        width: 15px;

        height: 15px;

        flex-basis: 15px;
    }


    /* SORT */

    .fv-sort-wrap {
        display: inline-block !important;

        width: 149px;

        height: 30px;

        margin-bottom: 20px;
    }

    .fv-sort-custom {
        width: 149px;

        height: 26px;

        font-size: 11px;
    }

    .fv-sort-menu {
        width: 149px !important;
    }


    /* VIDEO GRID */

    .fv-video-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* VIDEO THUMBNAIL */

    .fv-video-thumb {
        width: 100%;

        height: auto;

        min-height: 0;

        aspect-ratio: 16 / 9;
    }


    /* VIDEO INFO */

    .fv-video-info {
        padding-top: 15px;
    }


    /* =====================================================
       MOBILE MODAL
    ===================================================== */

    .fv-modal {
        width: 100%;

        height: 100%;

        padding: 10px;

        overflow: hidden;

        align-items: center;

        justify-content: center;
    }

    .fv-modal-box {
        width: 100% !important;

        max-width: 100% !important;

        max-height: 94vh;

        padding: 10px 15px 20px;

        border-radius: 16px;

        overflow-x: hidden !important;

        overflow-y: auto !important;

        box-sizing: border-box !important;
    }


    /* CLOSE */

    .fv-modal-close {
        width: 30px;

        height: 30px;

        margin-right: -5px !important;

        margin-left: auto !important;

        font-size: 32px;

        line-height: 1;
    }


    /* =====================================================
       MOBILE VIDEO
    ===================================================== */

    .fv-modal-video {
        position: relative;

        width: 100% !important;

        max-width: 100% !important;

        height: auto !important;

        min-height: 0 !important;

        aspect-ratio: 16 / 9 !important;

        margin-top: 10px;

        margin-bottom: 14px;

        border-radius: 8px;

        overflow: hidden;
    }

    .fv-modal-video .fv-modal-iframe,
    .fv-modal-iframe {
        position: absolute !important;

        top: 0 !important;

        left: 0 !important;

        right: 0 !important;

        bottom: 0 !important;

        width: 100% !important;

        height: 100% !important;

        max-width: 100% !important;

        max-height: 100% !important;

        border-radius: 8px;

        display: block !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       MOBILE PLAY SVG
    ===================================================== */

    .fv-play {
        width: 33px;

        height: 33px;
    }

    .fv-play svg {
        width: 33px;

        height: 33px;
    }

    .fv-modal-play {
        width: 42px;

        height: 42px;
    }

    .fv-modal-play svg {
        width: 42px;

        height: 42px;
    }


    /* TITLE */

    .fv-modal-title {
        font-size: 18px;
    }


    /* PEOPLE */

    .fv-people {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .fv-person {
        gap: 14px;
    }

    .fv-person strong {
        font-size: 16px;

        padding-bottom: 5px;
    }

    .fv-avatar {
        width: 41px;

        height: 41px;

        font-size: 12.38px;
    }


    /* INTERVIEWER */

    .fv-interviewer-name-row {
        gap: 7px;

        margin-top: 10px;
    }

    .fv-interviewer-label {
        font-size: 9px !important;

        letter-spacing: 1.2px;
    }

    .fv-person small {
        font-size: 9px;

        letter-spacing: 1.2px;
    }


    /* BIO */

    .fv-bio-text {
        font-size: 13px !important;

        line-height: 1.45 !important;

        max-width: 100% !important;
    }

    .fv-bio p {
        max-width: 100%;

        font-size: 13px !important;
    }


    /* GUEST */

    .fv-guest-content {
        max-width: none;

        font-size: 13px;
    }


    /* CONTACT */

    .fv-contact-box {
        margin-top: 25px;

        padding: 12px;

        text-align: left;

        min-height: auto;

        font-size: 9px;
    }

    .fv-company {
        margin-right: 5px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .fv-bio p {
        font-size: 12px !important;
    }


    /* TOPIC */

    .fv-topic {
        padding: 15px !important;
    }

    .fv-topic.is-active {
        padding: 15px !important;
    }


    /* TITLE */

    .fv-topic-title {
        font-size: 13px;
    }


    /* ICON */

    .fv-topic-icon {
        width: 30px;

        height: 30px;
    }

    .fv-topic-icon img {
        height: 15px;
    }


    /* SORT */

    .fv-sort-option,
    .fv-modal-meta .fv-duration {
        font-size: 7.8px !important;
    }

    .fv-sort-custom {
        width: 115px;

        height: 20px;

        font-size: 7.8px !important;
    }

    .fv-sort-wrap {
        width: 115px;
    }

    .fv-sort-menu {
        width: 115px !important;
    }


    /* VIDEO */

    .fv-video-grid {
        gap: 22px;
    }

    .fv-video-thumb {
        width: 100%;

        min-height: 0;

        aspect-ratio: 16 / 9;
    }


    /* =====================================================
       MODAL
    ===================================================== */

    .fv-modal {
        padding: 8px;
    }

    .fv-modal-box {
        width: 100% !important;

        max-width: 100% !important;

        max-height: 95vh;

        /*
         * Reduced side padding so video has
         * maximum available width on mobile.
         */

        padding: 8px 25px 18px;

        border-radius: 14px;
    }


    /* VIDEO */

    .fv-modal-video {
        width: 100% !important;

        max-width: 100% !important;

        aspect-ratio: 16 / 9 !important;

        min-height: 0 !important;

        margin-top: 8px;

        border-radius: 7px;
    }

    .fv-modal-iframe {
        width: 100% !important;

        height: 100% !important;

        border-radius: 7px;
    }


    /* =====================================================
       PLAY SVG
    ===================================================== */

    .fv-play {
        width: 33px;

        height: 33px;
    }

    .fv-play svg {
        width: 33px;

        height: 33px;
    }

    .fv-modal-play {
        width: 33px;

        height: 33px;
    }

    .fv-modal-play svg {
        width: 33px;

        height: 33px;
    }


    /* CLOSE */

    .fv-modal-close {
        margin-right: -30px !important;

        margin-top: 10px !important;

        font-size: 30px;
    }
}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 370px) {

    .fv-modal {
        padding: 5px;
    }

    .fv-modal-box {
        padding-left: 25px;

        padding-right: 25px;
    }

    .fv-modal-video {
        width: 100% !important;

        aspect-ratio: 16 / 9 !important;
    }

    .fv-play {
        width: 48px;

        height: 48px;
    }

    .fv-play svg {
        width: 48px;

        height: 48px;
    }

    .fv-modal-play {
        width: 48px;

        height: 48px;
    }

    .fv-modal-play svg {
        width: 48px;

        height: 48px;
    }
}