:root {
    --tp-accent: #b48958;
    --tp-black: #111111;
    --tp-text: #272727;
    --tp-muted: #767676;
    --tp-line: #e9e4de;
    --tp-soft: #f8f5f1;
    --tp-white: #ffffff;
    --tp-font: Inter, "Segoe UI", Arial, sans-serif;
    --tp-columns-desktop: 4;
    --tp-columns-tablet: 2;
    --tp-columns-mobile: 1;
}

.talent-pool-page,
.tp-profile-page {
    font-family: var(--tp-font);
    color: var(--tp-text);
}

.talent-pool-page , .tp-profile-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0px 60px;
}

.tpfl-auth-required {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 420px;
    padding-left: 18px;
    padding-right: 18px;
}

.tpfl-auth-required .mta-auth {
    max-width: 542px;
}

.tp-header {
    text-align: center;
    margin-bottom: 58px;
}

.tp-title {
    margin: 0 0 14px;
    color: #0d0d0d;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.tp-title span {
    color: var(--tp-accent);
}

.tp-subtitle {
    margin: 0;
    color: #1d1d1f;
    font-size: 20px;
    line-height: 1.3;
}

.tp-search-form {
    margin: 0 0 58px;
}

.tp-search-wrap {
    display: flex;
    align-items: center;
    height: 65px;
    border: 1px solid var(--tp-line);
    background: var(--tp-white);
}

.tp-search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 24px;
    color: var(--tp-text);
    font: 400 18px/1 var(--tp-font);
}

.tp-search-input::placeholder {
    color: #777;
}

.tp-search-input::-webkit-search-cancel-button,
.tp-search-input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.tp-search-btn {
    width: 68px;
    height: 68px;
    border: 0;
    background: transparent;
    color: var(--tp-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tp-icon-search,
.tp-icon-close,
.tp-icon-loader {
    width: 22px;
    height: 22px;
    display: inline-block;
}

.tp-icon-search {
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.tp-icon-search::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 2px;
    right: -7px;
    bottom: -3px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
}

.tp-icon-close {
    display: none;
    position: relative;
}

.tp-icon-close::before,
.tp-icon-close::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 2px;
    width: 20px;
    height: 2px;
    background: currentColor;
}

.tp-icon-close::before { transform: rotate(45deg); }
.tp-icon-close::after { transform: rotate(-45deg); }

.tp-icon-loader {
    display: none;
    border: 2px solid rgba(180,137,88,.25);
    border-top-color: var(--tp-accent);
    border-radius: 50%;
    animation: tp-spin .75s linear infinite;
}

.tp-is-loading .tp-icon-search,
.tp-is-loading .tp-icon-close {
    display: none;
}

.tp-is-loading .tp-icon-loader {
    display: inline-block;
}

.tp-has-search:not(.tp-is-loading) .tp-icon-search {
    display: none;
}

.tp-has-search:not(.tp-is-loading) .tp-icon-close {
    display: inline-block;
}

@keyframes tp-spin { to { transform: rotate(360deg); } }

.tp-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.tp-count-label {
    color: #515151;
    font-size: 16px;
}

.tp-toolbar-right {
    display: flex;
    align-items: center;
    gap: 26px;
}

.tp-select-all-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-size: 14px;
    cursor: pointer;
}

.tp-checkbox {
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid var(--tp-line);
    accent-color: var(--tp-accent);
}

.tp-toolbar-btn {
    border: 0;
    background: transparent;
    color: #bcbcbc;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 400 14px/1 var(--tp-font);
    cursor: pointer;
}

.tp-toolbar-btn:not(:disabled) {
    color: #111;
}

.tp-toolbar-btn:disabled {
    cursor: default;
}

.tp-shortlist-link {
    color: #111;
    text-decoration: none;
}

.tp-shortlist-icon-link {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--tp-line);
    border-radius: 50%;
    color: #111;
    background: #fff;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.tp-shortlist-icon-link.has-items {
    display: inline-flex;
}

.tp-shortlist-icon-link:hover,
.tp-shortlist-icon-link:focus {
    border-color: var(--tp-accent);
    color: var(--tp-accent);
    outline: none;
}

.tp-shortlist-icon {
    width: 20px;
    height: 20px;
}

.tp-shortlist-count {
    position: absolute;
    top: -7px;
    right: -7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--tp-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.tpfl-elementor-shortlist-wrap {
    display: flex;
}

.tpfl-elementor-shortlist {
    align-items: center;
    background: var(--tp-accent);
    border: 1px solid var(--tp-accent);
    border-radius: 6px;
    color: #fff;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tpfl-elementor-shortlist:hover {
    background: #111;
    border-color: #111;
    color: #fff;
    text-decoration: none;
}

.tpfl-elementor-shortlist.is-icon-only {
    padding-left: 10px;
    padding-right: 10px;
}

.tpfl-elementor-shortlist-icon {
    align-items: center;
    color: currentColor;
    display: inline-flex;
    line-height: 1;
}

.tpfl-elementor-shortlist-icon svg {
    display: block;
    height: 1em;
    width: 1em;
}

.tpfl-elementor-shortlist-count {
    background: rgba(255,255,255,.2);
    border-radius: 999px;
    color: currentColor;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    min-width: 20px;
    padding: 0 6px;
    text-align: center;
}

.tp-icon-bookmark-small {
    width: 18px;
    height: 18px;
    border: 1.6px solid currentColor;
    border-bottom: 0;
    border-radius: 3px 3px 1px 1px;
    display: inline-block;
    position: relative;
}

.tp-icon-bookmark-small::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: -5px;
    height: 9px;
    border-left: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(-45deg);
    background: #fff;
}

.tp-icon-download-small,
.tp-icon-share-small {
    width: 18px;
    height: 18px;
    color: currentColor;
    display: inline-block;
    position: relative;
    flex: 0 0 18px;
}

.tp-icon-download-small::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 2px;
    width: 2px;
    height: 9px;
    background: currentColor;
}

.tp-icon-download-small::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.tp-icon-share-small::before,
.tp-icon-share-small::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 9px;
    background: currentColor;
    left: 5px;
    transform-origin: left center;
}

.tp-icon-share-small::before {
    top: 6px;
    transform: rotate(-27deg);
}

.tp-icon-share-small::after {
    top: 11px;
    transform: rotate(27deg);
}

.tp-icon-share-small {
    background:
        radial-gradient(circle at 3px 9px, currentColor 0 2px, transparent 2.5px),
        radial-gradient(circle at 15px 3px, currentColor 0 2px, transparent 2.5px),
        radial-gradient(circle at 15px 15px, currentColor 0 2px, transparent 2.5px);
}

.tp-filter-btn {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--tp-line);
    color: #111;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

button.tp-filter-btn[aria-expanded="true"], button.tp-filter-btn:hover, button.tp-filter-btn:focus {
    background: var(--e-global-color-accent);
    border-color: var(--e-global-color-accent);
    color: #fff;
}
.tp-filter-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.tp-filter-icon::before {
    content: "";
    position: absolute;
    inset: 2px 3px;
    background:
        linear-gradient(currentColor,currentColor) left 0 top 0 / 2px 14px no-repeat,
        linear-gradient(currentColor,currentColor) left 50% top 0 / 2px 14px no-repeat,
        linear-gradient(currentColor,currentColor) right 0 top 0 / 2px 14px no-repeat;
}

.tp-filter-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid currentColor;
    border-radius: 50%;
    left: 0;
    top: 4px;
    background: #fff;
    box-shadow: 6px 6px 0 -1px #fff, 6px 6px 0 0 currentColor, 12px -2px 0 -1px #fff, 12px -2px 0 0 currentColor;
}

.tp-layout {
    position: relative;
}

.tp-results {
    position: relative;
}

.tp-is-loading .tp-results::after {
    content: "";
    position: absolute;
    inset: 0;
    min-height: 220px;
    background: rgba(255,255,255,.72);
    z-index: 5;
    pointer-events: none;
}

.tp-is-loading .tp-results::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 96px;
    width: 34px;
    height: 34px;
    margin-left: -17px;
    border: 3px solid rgba(180,137,88,.22);
    border-top-color: var(--tp-accent);
    border-radius: 50%;
    animation: tp-spin .75s linear infinite;
    z-index: 6;
    pointer-events: none;
}

.tp-cards-flex {
    display: grid;
    grid-template-columns: repeat(var(--tp-columns-desktop), minmax(0, 1fr));
    gap: 32px;
}

.tp-card {
    position: relative;
    min-width: 0;
    background: #fff;
    border: 1px solid var(--tp-line);
    overflow: visible;
}

.tp-card-image {
    position: relative;
    margin: 16px 16px 0;
    aspect-ratio: 1.34 / 1;
    overflow: hidden;
    background: #f2f2f2;
}

.tp-card-avatar {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-card-checkbox {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    background: #fff;
}

.tp-bulk-active .tp-card-checkbox,
.tp-card-selected .tp-card-checkbox,
.tp-no-select-all .tp-card-checkbox {
    opacity: 1;
    pointer-events: auto;
}

.tp-kebab-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgb(255 255 255 / 78%);
    box-shadow: 0 4px 14px rgba(0,0,0,.10);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.tp-kebab-btn:hover {
   background: #fff;
}
.tp-kebab-btn span {
    width: 4.5px;
    height: 4.5px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid black;
    gap: 0;
    transition: all .3s ease-in-out;
}
.tp-kebab-btn:hover span  {
    border-color: var(--tp-accent);
}

.tp-kebab-dropdown {
    display: none;
    position: absolute;
    z-index: 30;
    top: 10px;
    left: 10px;
    background: rgb(255 255 255 / 81%);
    padding: 5px 15px;
    display: flex;
    gap: 5px;
    border-radius: 100px;
    min-height: 34px;
    align-items: center;
}


.tp-card-menu.active .tp-kebab-dropdown {
    display: block;
}
.tp-ac-btn {
    flex: 1;
}
.tp-menu-action {
    display: flex;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    text-decoration: none;
    font: 400 16px/1 var(--tp-font);
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    width: auto;
}

.tp-menu-action:hover , .tp-menu-action:hover svg path {
    color: var(--tp-accent);
    stroke:var(--tp-accent);
}

.tp-kebab-dropdown a, 
.tp-kebab-dropdown button{
    text-decoration: none!important;
    transition: all .3s ease-in-out;
}

.tp-menu-action.is-saved {
    color: var(--tp-accent);
    font-weight: 700;
}

.tp-menu-action.is-saved svg path {
    stroke: var(--tp-accent);
}

.tp-menu-action.is-saved svg path:nth-child(2),
.tp-menu-action.is-saved svg path:nth-child(3) {
    fill: rgba(180,137,88,.14);
}

.tp-card-bookmarked {
    box-shadow: 0 0 0 1px rgba(180,137,88,.22);
}

.tp-card-body {
    padding: 14px 16px 16px;
}

.tp-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.tp-card-name {
    margin: 0 0 4px;
    color: #111;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
}

.tp-card-job {
    color: #111;
    font-size: 13px;
}
.body-action-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}
.body-action-wrap .body-action-btn{
    flex: 0 0 33px;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none!important;
    transition: all .3s ease-in-out;
    flex: 1;
    border: 1.5px solid var(--tp-accent);
}
.body-action-wrap .body-action-btn.tp-card-linkedin{
    background: var(--tp-accent);
}

.body-action-wrap .body-action-btn:hover {
    color: #fff!important;
    background: var( --e-global-color-a9995b6 );
    border-color:var( --e-global-color-a9995b6 );
}
.body-action-wrap .body-action-btn:hover path{
    stroke: #fff;
}

.tp-bookmark-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(180,137,88,.22);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: tp-spin .75s linear infinite;
}

.tp-bookmark-action.is-loading .tp-bookmark-icon {
    display: none;
}

.tp-bookmark-action.is-loading .tp-bookmark-loader {
    display: inline-block;
}

.tp-card-meta {
    list-style: none;
    margin: 16px 0 14px;
    padding: 0 0 14px;
    border-bottom: 1px solid var(--tp-line);
    display: grid;
    gap: 8px;
}

.tp-card-meta li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #6f6f6f;
    font-size: 13px;
}
.tp-meta-icon path{
    fill: var(--tp-accent);
}
.tp-meta-icon {
    color: var(--tp-accent);
    width: 16px;
    height: 16px;
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 16px;
}

.tp-meta-location::before {
    content: "";
    position: absolute;
    inset: 1px 4px 3px;
    border: 1.5px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.tp-meta-location::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    left: 6px;
    top: 5px;
    border-radius: 50%;
    background: currentColor;
}

.tp-meta-experience::before {
    content: "";
    position: absolute;
    left: 1px;
    bottom: 2px;
    width: 3px;
    height: 5px;
    background: currentColor;
    box-shadow: 5px -3px 0 currentColor, 10px -7px 0 currentColor;
}

.tp-meta-experience::after {
    content: "";
    position: absolute;
    left: 0;
    right: 1px;
    bottom: 0;
    height: 1.5px;
    background: currentColor;
}

.tp-meta-education::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 1px;
    width: 10px;
    height: 10px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.tp-meta-education::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
}

.tp-card-pills {
    display: flex;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--tp-line);
}

.tp-pill {
    display: inline-flex;
    min-width: 88px;
    justify-content: center;
    padding: 5px 12px;
    border: 1px solid var(--tp-line);
    border-radius: 999px;
    background: var(--tp-soft);
    color: #876c53;
    font-size: 13px;
    line-height: 1;
}

.tp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
}

.tp-skills-label {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    color: #111;
    font-size: 13px;
}

.tp-skills-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.tp-skill-badge {
    width: 24px;
    height: 24px;
    border-radius: 2px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
}

.tp-skill-more {
    color: #111;
    font-size: 13px;
    line-height: 24px;
}

.tp-skill-specializations,
.tp-course-spec-html {
    display: inline-flex;
    align-items: center;
}

.tp-skill-specializations .course-specializations,
.tp-course-spec-html .course-specializations {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tp-skill-specializations .course-specializations li,
.tp-course-spec-html .course-specializations li {
    display: inline-flex;
    align-items: center;
}

.tp-skill-specializations img,
.tp-course-spec-html img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.tp-card:not(.tp-card-detail-mode) .tp-skill-limit-2 .course-specializations li:nth-child(n+3) {
    display: none;
}

.tp-course-spec-html .spec-label {
    font-size: 12px;
    color: #333;
    margin-left: 5px;
}

.tp-view-btn {
    min-height: 40px!important;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    font-size: 15px;
}
/*.tp-view-btn {*/
/*    color:#fff!important;*/
/*}*/
.tp-card-selected {
    outline: 2px solid var(--tp-accent);
    outline-offset: 2px;
}

.tp-filter-panel {
    position: absolute;
   /* top: var(--tp-filter-top, 180px);
    left: var(--tp-filter-left, auto);*/
/*    right: auto;*/
    right: 0;
    z-index: 10001;
    width: 292px;
    max-height: calc(100vh - var(--tp-filter-top, 180px) - 18px);
    overflow: auto;
    border: 1px solid var(--tp-line);
    background: #fff;
    box-shadow: 0 16px 36px rgba(0,0,0,.08);
    transform: none;
}

.tp-filter-panel[hidden] {
    display: none;
}

.tp-filter-form {
    padding: 28px 26px;
}

.tp-filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--tp-line);
    padding-bottom: 18px;
    margin-bottom: 8px;
}

.tp-filter-title h2 {
    margin: 0;
    color: #222;
    font-size: 22px;
    line-height: 1;
}

.tp-filter-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.tp-filter-dropdown {
    border-bottom: 0;
}

.tp-filter-row {
    width: 100%;
    min-height: 66px;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    color: #232323;
    text-align: left;
    font: 500 18px/1 var(--tp-font);
    cursor: pointer;
}

.tp-filter-current {
    color: var(--tp-accent);
    font-size: 12px;
}

.tp-filter-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
}

.tp-filter-options {
    display: grid;
    gap: 2px;
    padding: 0 0 12px;
}

.tp-filter-options[hidden] {
    display: none;
}

.tp-filter-option,
.tp-filter-reset {
    border: 0;
    background: transparent;
    min-height: 34px;
    text-align: left;
    color: #606060;
    font: 400 14px/1 var(--tp-font);
    cursor: pointer;
}

.tp-filter-option {
    display: flex;
    align-items: center;
    gap: 9px;
}

.tp-filter-check {
    width: 14px;
    height: 14px;
    border: 1px solid var(--tp-line);
    background: #fff;
    display: inline-block;
    position: relative;
}

.tp-filter-option.is-active {
    color: var(--tp-accent);
    font-weight: 700;
}

.tp-filter-option.is-active .tp-filter-check::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 1px;
    width: 5px;
    height: 8px;
    border-right: 2px solid var(--tp-accent);
    border-bottom: 2px solid var(--tp-accent);
    transform: rotate(45deg);
}

.tp-filter-reset {
    margin-top: 14px;
    color: #111;
    text-decoration: underline;
}

.tp-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    margin-top: 54px;
}

.tp-page-btn {
    min-width: 42px;
    height: 42px;
    border: 0;
    background: #fff;
    color: #626262;
    font: 400 20px/1 var(--tp-font);
    cursor: pointer;
}

.tp-page-active {
    background: var(--tp-soft);
    color: var(--tp-accent);
}

.tp-disabled {
    opacity: .28;
    pointer-events: none;
}

.tp-empty-state {
    grid-column: 1 / -1;
    min-height: 240px;
    border: 1px solid var(--tp-line);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    color: var(--tp-muted);
}

.tp-bookmark-empty {
    grid-column: 1 / -1;
    margin-top: 22px;
    min-height: 220px;
    border: 1px dashed var(--tp-line);
    background: #fff;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    color: var(--tp-muted);
    text-align: center;
}

.tp-bookmark-empty[hidden] {
    display: none;
}

.tp-bookmark-page .tp-card-bookmarked {
    box-shadow: 0 0 0 1px rgba(159,121,83,.28);
}

.tp-empty-title {
    margin: 0;
    color: #111;
    font-size: 22px;
    font-weight: 700;
}

/*.tp-profile-page {
    background: #f8f8f8;
    padding: 78px 0 84px;
}*/

.tp-profile-shell {
    margin: 0 auto;
}

.tp-breadcrumb {
    margin: 0 0 38px;
    color: #555;
    font-size: 13px;
}

.tp-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.tp-profile-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.tp-profile-card-wrap .tp-card {
    background: #fff;
}

.tp-card-detail-mode .tp-card-image {
    aspect-ratio: 1.52 / 1;
}

.tp-card-detail-mode .tp-view-btn {
    min-width: 104px;
    font-size: 13px;
    font-weight: 500;
}
.tp-toolbar .tp-toolbar-btn:disabled path {
    stroke: #bcbcbc;
}
.tp-profile-main {
    background: #fff;
    border: 1px solid var(--tp-line);
    padding: 28px 28px 32px;
}

.tp-detail-section + .tp-detail-section {
    margin-top: 28px;
}

.tp-detail-section h2 {
    margin: 0 0 12px;
    color: #252525;
    font-size: 16px;
    line-height: 1;
}

.tp-bio-box {
    border: 1px solid var(--tp-line);
    padding: 14px 16px;
    color: #333;
    font-size: 13px;
    line-height: 1.55;
}

.tp-domain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tp-domain-tags span {
    border: 1px solid var(--tp-line);
    border-radius: 999px;
    background: var(--tp-soft);
    color: #5f554b;
    padding: 7px 12px;
    font-size: 12px;
}

.tp-domain-tags b {
    margin-left: 8px;
    font-weight: 400;
}

.tp-course-row,
.tp-cert-row {
    border: 1px solid var(--tp-line);
    background: #fff;
}

.tp-course-row {
    display: grid;
    grid-template-columns: 188px 1fr;
    gap: 16px;
    padding: 12px;
    margin-top: 12px;
}

.tp-course-thumb {
    border-left: 3px solid #1590ff;
}

.tp-course-thumb img,
.tp-course-thumb span {
    display: block;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    background: linear-gradient(135deg, #d8d8d8, #f1f1f1);
    object-fit: cover;
    margin-bottom: 8px;
}

.tp-course-thumb strong,
.tp-course-thumb small {
    display: block;
    padding-left: 10px;
}

.tp-course-thumb strong {
    color: #111;
    font-size: 13px;
}

.tp-course-thumb small {
    color: #555;
    font-size: 11px;
}

.tp-course-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
    font-size: 12px;
}

.tp-course-meta em {
    margin-left: auto;
    color: #555;
    font-style: normal;
}

.tp-mini-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    border-radius: 2px;
    background: #0878d8;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.tp-course-copy h3,
.tp-cert-row h3 {
    margin: 9px 0;
    color: #111;
    font-size: 17px;
}

.tp-course-copy p {
    margin: 0 0 16px;
    color: #333;
    font-size: 12px;
    line-height: 1.5;
}

.tp-progress-meta {
    display: flex;
    gap: 42px;
    color: #555;
    font-size: 12px;
    margin-bottom: 8px;
}

.tp-progress-line {
    height: 4px;
    background: #e2d9cf;
}

.tp-progress-line span {
    display: block;
    height: 100%;
    background: var(--tp-accent);
}

.tp-cert-row {
    display: grid;
    grid-template-columns: 116px 1fr 38px;
    gap: 16px;
    align-items: center;
    padding: 14px;
    margin-top: 12px;
}

.tp-cert-thumb {
    aspect-ratio: 1.46 / 1;
    background: linear-gradient(135deg, #efe9e1, #fbfaf8);
    border: 1px solid var(--tp-line);
}

.tp-cert-row p {
    margin: 0;
    color: #333;
    font-size: 12px;
}

.tp-cert-row p span {
    margin-left: 28px;
}

.tp-cert-row a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--tp-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media (max-width: 1180px) {
    .tp-cards-flex {
        grid-template-columns: repeat(var(--tp-columns-tablet), minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .talent-pool-page {
        padding: 36px 18px 54px;
    }

    .tp-title {
        font-size: 38px;
    }

    .tp-subtitle,
    .tp-count-label {
        font-size: 16px;
    }

    .tp-toolbar {
        align-items: flex-start;
        flex-direction: column;
        flex-direction: column-reverse;
    }

    .tp-toolbar-right {
        width: 100%;
        gap: 14px;
        flex-wrap: wrap;
    }

    .tp-filter-close {
        display: inline-flex;
    }

    .tp-cards-flex {
        grid-template-columns: repeat(var(--tp-columns-tablet), minmax(0, 1fr));
    }

    .tp-profile-shell {
        max-width: none;
        margin: 0 18px;
    }

    .tp-profile-layout {
        grid-template-columns: 1fr;
    }
}

.tp-filter-panel[hidden] {
    display: block!important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transform-origin: bottom;

}
.tp-filter-panel {
    transform: translateY(0px);
    transition: all .3s ease-in-out;
}
.tp-filter-right {
        display: flex;
        align-items: center;
        gap: 20px;
    } 
@media (max-width: 900px) {

    .tp-cards-flex {
        grid-template-columns: repeat(var(--tp-columns-mobile), minmax(0, 1fr));
        gap: 22px;
    }

    .tp-search-wrap {
        height: 56px;
    }

    .tp-search-input {
        padding: 0 16px;
        font-size: 15px;
    }

    .tp-search-btn {
        width: 56px;
        height: 56px;
    }
    .tp-filter-panel[hidden]{
        transform: translateX(100%);
    }
    .tp-filter-panel {
        top: 0;
        right: 0;
        bottom: 0;
        left: auto!important;
        width: 100%;
        max-width: 380px;
        max-height: 100%;
        border-radius: 0;
        transform: none;
        transform: translateX(0);
        transition: .3s ease-in-out;
        transition-delay: 0.3s;
        position: fixed;
    }
    
    .tp-course-row,
    .tp-cert-row {
        grid-template-columns: 1fr;
    }

    .tp-cert-row a {
        justify-self: end;
    }
    .tp-search-form {
       margin-bottom: 20px;
}
}
