/* ============================================================
   PROFESSION LIST
   ============================================================ */

.profession-list {

    display: flex;
    flex-direction: column;

    gap: 8px;
}


/* ============================================================
   PROFESSION ITEM
   ============================================================ */

.profession-item {

    width: 100%;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 9px;

    border: 1px solid var(--border);

    border-radius: var(--radius-sm);

    background: var(--surface);

    color: var(--text);

    cursor: pointer;

    text-align: left;

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.profession-item:hover {

    background: var(--surface-2);

    border-color: var(--primary);

    transform: translateX(2px);
}


.profession-item:active {
    transform: scale(0.99);
}


/* ============================================================
   PROFESSION IMAGE
   ============================================================ */

.profession-image {

    flex: 0 0 64px;

    width: 64px;
    height: 64px;

    overflow: hidden;

    border-radius: 9px;

    background: var(--surface-3);
}


.profession-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ============================================================
   PROFESSION CONTENT
   ============================================================ */

.profession-content {

    min-width: 0;

    flex: 1;
}


.profession-name {

    margin: 0 0 7px;

    overflow: hidden;

    color: var(--text);

    font-size: 14px;

    font-weight: 700;

    line-height: 1.25;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* ============================================================
   PROFESSION META
   ============================================================ */

.profession-meta {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--text-soft);

    font-size: 11px;
}


.profession-meta span {

    display: inline-flex;

    align-items: center;

    gap: 4px;
}


.profession-meta strong {
    color: var(--text);
}


/* ============================================================
   ACTION
   ============================================================ */

.profession-action {

    flex: 0 0 auto;

    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--surface-2);

    color: var(--primary);

    font-size: 16px;

    transition:
        background var(--transition),
        transform var(--transition);
}


.profession-item:hover .profession-action {

    background: var(--primary-soft);

    transform: translateX(2px);
}


/* ============================================================
   SMALL SCREENS
   ============================================================ */

@media (max-width: 360px) {

    .profession-image {

        flex-basis: 56px;

        width: 56px;
        height: 56px;
    }

    .profession-item {
        gap: 10px;
    }

    .profession-name {
        font-size: 13px;
    }
}













































/* ============================================================
   CANDIDATE LIST
   ============================================================ */

.candidate-list {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* ============================================================
   CANDIDATE ITEM
   ============================================================ */

.candidate-item {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    background:
        var(--surface);

    color:
        var(--text);

    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}


.candidate-item:hover {

    border-color:
        var(--primary);

    background:
        var(--surface-2);

    transform:
        translateY(-1px);
}


/* ============================================================
   AVATAR
   ============================================================ */

.candidate-avatar {

    flex:
        0 0 52px;

    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border-radius:
        14px;

    background:
        var(--primary-soft);

    color:
        var(--primary);

    font-size:
        15px;

    font-weight:
        800;

    letter-spacing:
        0.5px;
}


/* ============================================================
   INFORMATION
   ============================================================ */

.candidate-info {

    flex: 1;

    min-width: 0;
}


/* ============================================================
   NAME + RATE
   ============================================================ */

.candidate-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.candidate-name {

    min-width: 0;

    margin: 0;

    overflow: hidden;

    color:
        var(--text);

    font-size:
        14px;

    font-weight:
        750;

    line-height:
        1.25;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}


/* ============================================================
   RATE
   ============================================================ */

.candidate-rate {

    flex:
        0 0 auto;

    color:
        var(--primary);

    font-size:
        12px;

    font-weight:
        750;

    white-space:
        nowrap;
}


/* ============================================================
   PROFESSION
   ============================================================ */

.candidate-profession {

    margin-top:
        4px;

    overflow:
        hidden;

    color:
        var(--text-soft);

    font-size:
        12px;

    font-weight:
        600;

    line-height:
        1.3;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}


/* ============================================================
   META
   ============================================================ */

.candidate-meta {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    margin-top:
        6px;

    overflow:
        hidden;

    color:
        var(--text-faint);

    font-size:
        10px;
}


.candidate-meta span {

    overflow:
        hidden;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}


/* ============================================================
   ACTION
   ============================================================ */

.candidate-action {

    flex:
        0 0 auto;

    width:
        32px;

    height:
        32px;

    display:
        grid;

    place-items:
        center;

    padding:
        0;

    border:
        0;

    border-radius:
        50%;

    background:
        var(--surface-2);

    color:
        var(--primary);

    cursor:
        pointer;

    font-size:
        17px;

    transition:
        background var(--transition),
        transform var(--transition);
}


.candidate-action:hover {

    background:
        var(--primary-soft);

    transform:
        translateX(2px);
}


.candidate-action:active {

    transform:
        scale(0.9);
}


/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 360px) {

    .candidate-item {

        gap:
            9px;

        padding:
            10px;
    }


    .candidate-avatar {

        flex-basis:
            46px;

        width:
            46px;

        height:
            46px;

        border-radius:
            12px;

        font-size:
            13px;
    }


    .candidate-name {

        font-size:
            13px;
    }


    .candidate-rate {

        font-size:
            11px;
    }


    .candidate-meta {

        gap:
            7px;
    }
}


























/* ============================================================
   CANDIDATE PROFILE
   ============================================================ */

.candidate-profile {
    width: 100%;
}


/* ============================================================
   PROFILE HEADER
   ============================================================ */

.profile-header {

    display: flex;

    align-items: center;

    gap: 15px;

    padding:
        8px 0 25px;

    border-bottom:
        1px solid var(--border);
}


/* ============================================================
   PROFILE AVATAR
   ============================================================ */

.profile-avatar {

    flex:
        0 0 76px;

    width: 76px;
    height: 76px;

    display: grid;

    place-items: center;

    border-radius:
        22px;

    background:
        var(--primary-soft);

    color:
        var(--primary);

    font-size:
        23px;

    font-weight:
        800;

    letter-spacing:
        1px;
}


/* ============================================================
   IDENTITY
   ============================================================ */

.profile-identity {
    min-width: 0;
}

.profile-name {

    margin:
        0 0 4px;

    color:
        var(--text);

    font-size:
        24px;

    line-height:
        1.15;

    letter-spacing:
        -0.7px;
}

.profile-profession {

    color:
        var(--primary);

    font-size:
        14px;

    font-weight:
        700;
}

.profile-location {

    margin-top:
        6px;

    color:
        var(--text-soft);

    font-size:
        12px;
}


/* ============================================================
   ROLE
   ============================================================ */

.profile-role {

    margin-top:
        24px;

    padding:
        18px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    background:
        var(--surface-2);
}

.profile-section-label {

    margin-bottom:
        8px;

    color:
        var(--primary);

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        1px;

    text-transform:
        uppercase;
}

.profile-role h2 {

    margin:
        0 0 8px;

    font-size:
        19px;

    letter-spacing:
        -0.3px;
}

.profile-role p {

    margin:
        0;

    color:
        var(--text-soft);

    font-size:
        13px;

    line-height:
        1.6;
}


/* ============================================================
   DETAILS
   ============================================================ */

.profile-details {

    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        8px;

    margin-top:
        12px;
}

.profile-detail {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    min-width:
        0;

    padding:
        13px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-sm);

    background:
        var(--surface);
}

.detail-icon {

    width:
        30px;

    height:
        30px;

    flex:
        0 0 30px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        8px;

    background:
        var(--primary-soft);

    color:
        var(--primary);

    font-size:
        14px;
}

.profile-detail div {
    min-width: 0;
}

.profile-detail small {

    display:
        block;

    margin-bottom:
        3px;

    color:
        var(--text-faint);

    font-size:
        10px;
}

.profile-detail strong {

    display:
        block;

    overflow:
        hidden;

    color:
        var(--text);

    font-size:
        12px;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}


/* ============================================================
   GENERAL PROFILE SECTIONS
   ============================================================ */

.profile-section {

    margin-top:
        30px;

    padding-top:
        24px;

    border-top:
        1px solid var(--border);
}


/* ============================================================
   ABOUT
   ============================================================ */

.profile-about {

    margin:
        0;

    color:
        var(--text-soft);

    font-size:
        14px;

    line-height:
        1.7;
}


/* ============================================================
   LANGUAGES
   ============================================================ */

.language-list {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        7px;
}

.language {

    padding:
        7px 11px;

    border-radius:
        999px;

    background:
        var(--surface-2);

    color:
        var(--text-soft);

    font-size:
        11px;

    font-weight:
        600;
}


/* ============================================================
   CONTACT ACTIONS
   ============================================================ */

.profile-actions {

    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        8px;
}

.profile-action {

    min-height:
        62px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        5px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-sm);

    background:
        var(--surface);

    color:
        var(--text);

    text-decoration:
        none;

    font-size:
        11px;

    font-weight:
        650;

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.profile-action:hover {

    background:
        var(--primary-soft);

    border-color:
        var(--primary);

    transform:
        translateY(-1px);
}

.action-icon {

    color:
        var(--primary);

    font-size:
        18px;
}


/* ============================================================
   EXTERNAL LINKS
   ============================================================ */

.profile-links {

    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;
}

.profile-link {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    padding:
        12px 13px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-sm);

    background:
        var(--surface);

    color:
        var(--text);

    text-decoration:
        none;

    font-size:
        12px;

    transition:
        background var(--transition),
        border-color var(--transition);
}

.profile-link:hover {

    background:
        var(--surface-2);

    border-color:
        var(--primary);
}

.profile-link-text {
    flex:
        1;
}

.profile-link-arrow {

    color:
        var(--primary);

    font-size:
        16px;
}


/* ============================================================
   BOOKING / CTA
   ============================================================ */

.profile-booking {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        15px;

    margin-top:
        30px;

    padding:
        17px;

    border-radius:
        var(--radius-md);

    background:
        var(--primary);

    color:
        var(--surface);
}

.profile-booking div {

    min-width:
        0;
}

.profile-booking strong {

    display:
        block;

    margin-bottom:
        4px;

    font-size:
        13px;
}

.profile-booking span {

    display:
        block;

    opacity:
        0.8;

    font-size:
        10px;

    line-height:
        1.4;
}

.profile-book-btn {

    flex:
        0 0 auto;

    padding:
        10px 15px;

    border-radius:
        9px;

    background:
        var(--surface);

    color:
        var(--primary);

    text-decoration:
        none;

    font-size:
        12px;

    font-weight:
        750;
}


/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 380px) {

    .profile-avatar {

        flex-basis:
            64px;

        width:
            64px;

        height:
            64px;

        border-radius:
            18px;

        font-size:
            20px;
    }

    .profile-name {
        font-size:
            21px;
    }

    .profile-details {
        gap:
            6px;
    }

    .profile-detail {
        padding:
            10px;
        gap:
            7px;
    }

    .profile-booking {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .profile-book-btn {
        width:
            100%;

        text-align:
            center;
    }
}