/* ==========================================================================
   NACS Show 2026 - Profile Card B Component
   Horizontal profile card with photo left, info right (Tier 4)
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Card Container - Horizontal Layout
   -------------------------------------------------------------------------- */
.pcb {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-end;
    width: 779px;
    height: 453px;
    padding: 20px;
    background: #FBFBFB;
    border-radius: 4px;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Back Arrow Link (Desktop Only)
   -------------------------------------------------------------------------- */
.pcb__back {
    position: absolute;
    left: 27px;
    top: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.pcb__back:hover {
    opacity: 0.7;
}

.pcb__back svg {
    width: 36px;
    height: 36px;
}

/* --------------------------------------------------------------------------
   Photo Area (Left Half)
   -------------------------------------------------------------------------- */
.pcb__photo {
    position: relative;
    flex: 1 0 0;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

.pcb__cshape {
    position: absolute;
    right: 0;
    top: 0;
    width: 289px;
    height: 326px;
    z-index: 1;
}

.pcb__img {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 342px;
    height: 370px;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Info Section (Right Half)
   -------------------------------------------------------------------------- */
.pcb__info {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

/* --------------------------------------------------------------------------
   Top Row: Eyebrow + Tag
   -------------------------------------------------------------------------- */
.pcb__toprow {
    display: flex;
    align-items: center;
    width: 100%;
}

.pcb__eyebrow {
    flex: 1 0 0;
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy, #00205B);
}

/* --------------------------------------------------------------------------
   Tag Badge
   -------------------------------------------------------------------------- */
.pcb__tag {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: rgba(241, 241, 241, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 4px;
}

.pcb__tag span {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
    color: #000000;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Person Name
   -------------------------------------------------------------------------- */
.pcb__name {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--nacs-color-navy, #00205B);
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Person Title
   -------------------------------------------------------------------------- */
.pcb__title {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    color: var(--nacs-color-navy, #00205B);
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Social Media Links
   -------------------------------------------------------------------------- */
.pcb__socials {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.pcb__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.pcb__social:hover {
    opacity: 0.6;
}

.pcb__social svg {
    width: 37px;
    height: 37px;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .pcb {
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 16px;
        padding: 20px 10px;
        align-items: flex-start;
    }

    .pcb__back {
        display: none;
    }

    .pcb__photo {
        width: 100%;
        height: 200px;
        flex: none;
    }

    .pcb__cshape {
        width: 160px;
        height: 180px;
    }

    .pcb__img {
        width: 190px;
        height: 200px;
    }

    .pcb__info {
        flex: none;
        width: 100%;
        height: auto;
        gap: 12px;
    }

    .pcb__name {
        font-size: 18px;
        line-height: 24px;
    }

    .pcb__title {
        font-size: 12px;
        line-height: 16px;
    }

    .pcb__socials {
        gap: 6px;
    }
}
