/* ==========================================================================
   NACS Show 2026 - Profile Card A Component
   Speaker/person card with decorative C-shape, tag badge, and social links
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Card Container
   -------------------------------------------------------------------------- */
.pca {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 359px;
    padding: 20px;
    background: #FBFBFB;
    border-radius: 4px;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Back Arrow Link (Desktop Only)
   -------------------------------------------------------------------------- */
.pca__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;
}

.pca__back:hover {
    opacity: 0.7;
}

.pca__back svg {
    width: 36px;
    height: 36px;
}

/* --------------------------------------------------------------------------
   Tag Badge
   -------------------------------------------------------------------------- */
.pca__tag {
    position: absolute;
    right: 20px;
    top: 40px;
    z-index: 3;
    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;
}

.pca__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;
}

/* --------------------------------------------------------------------------
   Profile Photo Area
   -------------------------------------------------------------------------- */
.pca__photo {
    position: relative;
    width: 100%;
    height: 293px;
    overflow: hidden;
}

.pca__cshape {
    position: absolute;
    right: 0;
    top: 0;
    width: 260px;
    height: 293px;
    z-index: 1;
}

.pca__img {
    position: relative;
    z-index: 2;
    width: 307px;
    height: 293px;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Info Section
   -------------------------------------------------------------------------- */
.pca__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Eyebrow
   -------------------------------------------------------------------------- */
.pca__eyebrow {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
}

/* --------------------------------------------------------------------------
   Person Name
   -------------------------------------------------------------------------- */
.pca__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;
}

/* --------------------------------------------------------------------------
   Person Title
   -------------------------------------------------------------------------- */
.pca__title {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Social Media Links
   -------------------------------------------------------------------------- */
.pca__socials {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.pca__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.pca__social:hover {
    opacity: 0.6;
}

.pca__social svg {
    width: 37px;
    height: 37px;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .pca {
        width: 100%;
        padding: 20px 10px;
        gap: 16px;
    }

    /* Back arrow hidden on mobile */
    .pca__back {
        display: none;
    }

    /* Tag repositioned to normal flow on mobile */
    .pca__tag {
        position: static;
    }

    /* Smaller photo area */
    .pca__photo {
        height: 134px;
    }

    .pca__cshape {
        width: 119px;
        height: 134px;
    }

    .pca__img {
        width: 141px;
        height: 134px;
    }

    /* Info section */
    .pca__info {
        gap: 12px;
    }

    .pca__name {
        font-size: 18px;
        line-height: 24px;
    }

    .pca__title {
        font-size: 12px;
        line-height: 16px;
    }

    /* Social icons smaller gap */
    .pca__socials {
        gap: 6px;
    }
}
