.pas-marketplace-main {
    background:
        radial-gradient(circle at top right, rgba(57, 184, 157, 0.12), transparent 28%),
        linear-gradient(180deg, #f5f8fb 0%, #fdfdfd 38%, #f4f7fb 100%);
}

.pas-marketplace-shell {
    display: grid;
    gap: 32px;
    padding: 40px 0 72px;
}

.pas-marketplace-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.95fr);
    gap: 24px;
    padding: 32px;
    border-radius: 32px;
    background:
        linear-gradient(130deg, rgba(17, 50, 44, 0.98), rgba(20, 55, 40, 0.92)),
        linear-gradient(135deg, rgba(25, 25, 112, 0.18), rgba(57, 184, 157, 0.22));
    color: #ffffff;
    box-shadow: 0 32px 60px rgba(16, 24, 40, 0.18);
}

.pas-marketplace-hero::before {
    content: '';
    position: absolute;
    inset: auto -120px -140px auto;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(57, 184, 157, 0.24), transparent 70%);
    pointer-events: none;
}

.pas-marketplace-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pas-marketplace-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #8fd07f;
    box-shadow: 0 0 0 6px rgba(143, 208, 127, 0.16);
}

.pas-marketplace-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.pas-marketplace-hero p {
    margin: 0;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.pas-marketplace-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.pas-marketplace-hero-stat {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.pas-marketplace-hero-stat strong {
    display: block;
    margin-bottom: 4px;
    font-size: 30px;
    line-height: 1;
    color: #ffffff;
}

.pas-marketplace-hero-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.pas-marketplace-highlight {
    align-self: stretch;
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    color: #143728;
    box-shadow: 0 24px 42px rgba(12, 24, 22, 0.14);
}

.pas-marketplace-highlight h2 {
    margin: 0;
    font-size: 15px;
    color: #61756b;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pas-marketplace-highlight-item {
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f4f8f6);
    box-shadow: inset 0 0 0 1px rgba(20, 55, 40, 0.08);
}

.pas-marketplace-highlight-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    color: #143728;
}

.pas-marketplace-highlight-item span {
    display: block;
    color: #556961;
    line-height: 1.6;
}

.pas-marketplace-panel,
.pas-marketplace-empty,
.pas-marketplace-detail-body > section {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 28px;
    box-shadow: 0 24px 44px rgba(18, 33, 61, 0.08);
}

.pas-marketplace-panel {
    padding: 24px;
}

.pas-marketplace-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(4, minmax(0, 0.8fr));
    gap: 14px;
    align-items: end;
}

.pas-marketplace-field {
    display: grid;
    gap: 8px;
}

.pas-marketplace-field span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #657487;
}

.pas-marketplace-field input,
.pas-marketplace-field select {
    width: 100%;
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(20, 55, 40, 0.12);
    background: #f7faf9;
    color: #1f2940;
    padding: 0 16px;
    box-sizing: border-box;
}

.pas-marketplace-field input:focus,
.pas-marketplace-field select:focus {
    outline: none;
    border-color: rgba(57, 184, 157, 0.72);
    box-shadow: 0 0 0 4px rgba(57, 184, 157, 0.12);
    background: #ffffff;
}

.pas-marketplace-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.pas-marketplace-card {
    display: grid;
    gap: 18px;
    padding: 20px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.96));
    box-shadow: 0 24px 48px rgba(18, 33, 61, 0.10);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.pas-marketplace-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 32px 54px rgba(18, 33, 61, 0.14);
}

.pas-marketplace-card-media {
    position: relative;
    overflow: hidden;
    border: 0;
    padding: 0;
    border-radius: 24px;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #d9ece5, #f1f6f4);
    cursor: pointer;
}

.pas-marketplace-card-media img,
.pas-marketplace-detail-cover img,
.pas-marketplace-avatar img,
.pas-marketplace-detail-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pas-marketplace-card-media .pas-marketplace-avatar-fallback,
.pas-marketplace-detail-avatar .pas-marketplace-avatar-fallback,
.pas-marketplace-detail-cover .pas-marketplace-avatar-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #133b2c, #39b89d);
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.pas-marketplace-card-topline,
.pas-marketplace-card-meta,
.pas-marketplace-card-tags,
.pas-marketplace-card-actions,
.pas-marketplace-detail-topline,
.pas-marketplace-detail-tags,
.pas-marketplace-detail-actions,
.pas-marketplace-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pas-marketplace-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(25, 25, 112, 0.08);
    color: #191970;
    font-size: 12px;
    font-weight: 700;
}

.pas-marketplace-badge.is-success {
    background: rgba(26, 142, 79, 0.12);
    color: #1a8e4f;
}

.pas-marketplace-badge.is-warning {
    background: rgba(214, 143, 24, 0.12);
    color: #9b6500;
}

.pas-marketplace-badge.is-muted {
    background: rgba(108, 118, 143, 0.12);
    color: #5e6880;
}

.pas-marketplace-card h3,
.pas-marketplace-detail-head h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    color: #1f2940;
}

.pas-marketplace-card p,
.pas-marketplace-detail-copy p,
.pas-marketplace-detail-list li,
.pas-marketplace-empty p {
    margin: 0;
    color: #55637f;
    line-height: 1.7;
}

.pas-marketplace-card-meta {
    color: #68768e;
    font-size: 14px;
}

.pas-marketplace-card-price {
    font-size: 28px;
    line-height: 1;
    color: #143728;
    letter-spacing: -0.03em;
}

.pas-marketplace-card-price small {
    font-size: 13px;
    color: #6c768f;
}

.pas-marketplace-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(20, 55, 40, 0.08);
    color: #143728;
    font-size: 12px;
    font-weight: 600;
}

.pas-marketplace-button {
    appearance: none;
    border: 0;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    background: #143728;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.pas-marketplace-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(20, 55, 40, 0.16);
}

.pas-marketplace-button.is-secondary {
    background: rgba(20, 55, 40, 0.08);
    color: #143728;
}

.pas-marketplace-button.is-soft {
    background: rgba(25, 25, 112, 0.10);
    color: #191970;
}

.pas-marketplace-empty {
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 54px 32px;
    text-align: center;
}

.pas-marketplace-empty i {
    font-size: 28px;
    color: #61708c;
}

.pas-marketplace-pagination {
    justify-content: center;
    padding-top: 10px;
}

.pas-marketplace-page-button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 0;
    background: rgba(20, 55, 40, 0.08);
    color: #143728;
    font-weight: 700;
    cursor: pointer;
}

.pas-marketplace-page-button.is-active {
    background: #143728;
    color: #ffffff;
}

.pas-marketplace-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pas-marketplace-detail-modal.is-open {
    display: flex;
}

.pas-marketplace-detail-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 28, 0.58);
    backdrop-filter: blur(8px);
}

.pas-marketplace-detail-panel {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff, #f4f7fb);
    box-shadow: 0 40px 80px rgba(10, 18, 30, 0.28);
}

.pas-marketplace-detail-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 55, 40, 0.10);
    color: #143728;
    font-size: 18px;
    cursor: pointer;
}

.pas-marketplace-detail-content {
    display: grid;
    gap: 24px;
    padding: 24px;
}

.pas-marketplace-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 22px;
}

.pas-marketplace-detail-cover {
    overflow: hidden;
    border-radius: 28px;
    min-height: 320px;
    background: linear-gradient(135deg, #dcebe6, #f5f8fb);
}

.pas-marketplace-detail-summary {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(19, 59, 44, 0.96), rgba(17, 50, 44, 0.94));
    color: #ffffff;
}

.pas-marketplace-detail-summary .pas-marketplace-badge {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.pas-marketplace-detail-avatar {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.pas-marketplace-detail-head {
    display: grid;
    gap: 12px;
}

.pas-marketplace-detail-head h3 {
    color: #ffffff;
    font-size: clamp(26px, 3vw, 40px);
}

.pas-marketplace-detail-topline {
    color: rgba(255, 255, 255, 0.82);
}

.pas-marketplace-detail-body {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 22px;
}

.pas-marketplace-detail-body > section {
    padding: 22px;
}

.pas-marketplace-detail-section-title {
    margin: 0 0 14px;
    color: #1f2940;
    font-size: 20px;
}

.pas-marketplace-detail-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.pas-marketplace-outline {
    display: grid;
    gap: 14px;
}

.pas-marketplace-outline-card,
.pas-marketplace-service-mini {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(244, 247, 252, 0.96);
    box-shadow: inset 0 0 0 1px rgba(108, 118, 143, 0.12);
}

.pas-marketplace-outline-card strong,
.pas-marketplace-service-mini strong {
    display: block;
    margin-bottom: 6px;
    color: #1f2940;
}

.pas-marketplace-outline-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: #55637f;
}

body.pas-marketplace-modal-open {
    overflow: hidden;
}

@media (max-width: 1199px) {
    .pas-marketplace-hero,
    .pas-marketplace-detail-hero,
    .pas-marketplace-detail-body,
    .pas-marketplace-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pas-marketplace-toolbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .pas-marketplace-hero,
    .pas-marketplace-detail-hero,
    .pas-marketplace-detail-body,
    .pas-marketplace-grid,
    .pas-marketplace-toolbar {
        grid-template-columns: 1fr;
    }

    .pas-marketplace-hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .pas-marketplace-shell {
        padding: 24px 0 52px;
        gap: 20px;
    }

    .pas-marketplace-hero,
    .pas-marketplace-panel,
    .pas-marketplace-detail-content {
        padding: 18px;
        border-radius: 24px;
    }

    .pas-marketplace-card,
    .pas-marketplace-detail-body > section {
        padding: 18px;
        border-radius: 22px;
    }

    .pas-marketplace-hero-stats {
        grid-template-columns: 1fr;
    }

    .pas-marketplace-detail-modal {
        padding: 0;
        align-items: flex-end;
    }

    .pas-marketplace-detail-panel {
        width: 100%;
        max-height: calc(100vh - 8px);
        border-radius: 24px 24px 0 0;
    }

    .pas-marketplace-card-actions .pas-marketplace-button,
    .pas-marketplace-detail-actions .pas-marketplace-button {
        width: 100%;
    }
}

.pas-marketplace-card-title-link {
    color: #1f2940;
    text-decoration: none;
}

.pas-marketplace-card-title-link:hover {
    color: #133b2c;
    text-decoration: none;
}

.pas-marketplace-detail-page-shell {
    padding-top: 40px;
}

.pas-marketplace-detail-page-shell .pas-marketplace-detail-summary h1 {
    margin: 0;
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.02;
    color: #ffffff;
}

.pas-marketplace-detail-page-shell .pas-marketplace-detail-copy p {
    margin: 0;
}

/* Marketplace Modal Blur Final */
.pas-marketplace-modal-dialog {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

/* Freelancer Search Refresh */
.pas-marketplace-shell--freelancers {
    gap: 24px;
}

.pas-marketplace-hero--talent {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: start;
}

.pas-marketplace-highlight--freelancers {
    gap: 14px;
}

.pas-talent-explorer {
    position: relative;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.pas-talent-filters-backdrop {
    display: none;
}

.pas-talent-filters {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.pas-talent-filters-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
}

.pas-talent-filters-kicker {
    display: inline-block;
    margin-bottom: 6px;
    color: #61756b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pas-talent-filters-head h2 {
    margin: 0;
    font-size: 24px;
    color: #143728;
}

.pas-talent-filters-close {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 55, 40, 0.08);
    color: #143728;
    font-size: 24px;
    line-height: 1;
}

.pas-talent-filter-card {
    border-radius: 22px;
    background: #fbfcfd;
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.pas-talent-filter-card summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 700;
    color: #1f2940;
}

.pas-talent-filter-card summary::-webkit-details-marker {
    display: none;
}

.pas-talent-filter-card[open] summary {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pas-talent-filter-row,
.pas-talent-filter-static {
    display: grid;
    gap: 12px;
    padding: 16px 18px 18px;
}

.pas-talent-filter-row span,
.pas-talent-filter-static label {
    color: #55637f;
    font-size: 14px;
}

.pas-talent-filter-row select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(20, 55, 40, 0.12);
    background: #ffffff;
    color: #1f2940;
}

.pas-talent-filter-static label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pas-talent-clear-button {
    width: 100%;
    justify-content: center;
}

.pas-talent-results {
    min-width: 0;
    display: grid;
    gap: 20px;
}

.pas-talent-results-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.pas-talent-results-summary {
    display: grid;
    gap: 8px;
}

.pas-talent-results-summary strong {
    font-size: 28px;
    color: #143728;
}

.pas-talent-results-summary p {
    margin: 0;
    color: #55637f;
}

.pas-talent-results-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.pas-marketplace-field--search {
    min-width: min(100%, 320px);
}

.pas-talent-filters-trigger {
    display: none;
    align-items: center;
    gap: 8px;
}

.pas-marketplace-shell--freelancers [data-marketplace-grid] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pas-talent-card {
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
}

.pas-talent-card-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.pas-talent-card-identity {
    display: flex;
    gap: 16px;
    min-width: 0;
}

.pas-talent-card-avatar {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #dfe7f4, #edf4ef);
    flex: 0 0 auto;
}

.pas-talent-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pas-talent-card-head {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.pas-talent-card-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pas-talent-card-name {
    color: #101828;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.pas-talent-card-name:hover {
    color: #133b2c;
    text-decoration: none;
}

.pas-talent-card-badges,
.pas-talent-card-tags,
.pas-talent-card-secondary,
.pas-talent-card-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pas-talent-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid transparent;
}

.pas-talent-badge.is-dark {
    background: rgba(61, 42, 130, 0.10);
    color: #53389e;
}

.pas-talent-badge.is-primary {
    background: rgba(33, 150, 243, 0.10);
    color: #1565c0;
}

.pas-talent-badge.is-accent {
    background: rgba(16, 163, 74, 0.10);
    color: #0f7a3d;
}

.pas-talent-badge.is-success {
    background: rgba(143, 208, 127, 0.18);
    color: #1f6b3b;
}

.pas-talent-badge.is-soft,
.pas-talent-card-metrics .is-soft {
    background: rgba(91, 111, 236, 0.08);
    color: #4f46e5;
}

.pas-talent-badge.is-muted {
    background: rgba(15, 23, 42, 0.06);
    color: #475467;
}

.pas-talent-card-title {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
    color: #1f2940;
}

.pas-talent-card-location {
    color: #667085;
    font-size: 15px;
}

.pas-talent-card-cta {
    display: grid;
    gap: 10px;
    justify-items: end;
    min-width: 160px;
}

.pas-talent-card-cta .pas-marketplace-button {
    width: 100%;
    justify-content: center;
}

.pas-talent-card-metrics span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f5f7fb;
    color: #475467;
    font-size: 14px;
}

.pas-talent-card-metrics span strong {
    color: #1f2940;
}

.pas-marketplace-tag.is-count {
    background: rgba(15, 23, 42, 0.06);
    color: #475467;
}

.pas-talent-card-insights {
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fbfcfd, #f5f7fb);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.pas-talent-card-insights-head {
    margin-bottom: 10px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pas-talent-card-insights ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: #1f2940;
}

.pas-talent-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.pas-talent-card-associated {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(19, 59, 44, 0.04);
    border: 1px solid rgba(19, 59, 44, 0.08);
}

.pas-talent-card-associated span,
.pas-talent-card-associated small,
.pas-talent-card-secondary span {
    color: #667085;
}

.pas-talent-card-associated strong {
    color: #143728;
}

.pas-talent-card-secondary {
    justify-content: flex-end;
}

.pas-talent-card-secondary span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
}

.pas-talent-card.is-skeleton {
    pointer-events: none;
}

.pas-talent-card.is-skeleton .pas-talent-card-avatar,
.pas-talent-card.is-skeleton .pas-talent-card-cta span,
.pas-talent-card.is-skeleton .pas-talent-card-metrics span,
.pas-talent-card.is-skeleton .pas-talent-card-tags span,
.pas-talent-card.is-skeleton .pas-talent-skeleton-blocks span,
.pas-talent-card.is-skeleton .pas-talent-skeleton-lines span {
    display: block;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(228, 232, 240, 0.92), rgba(243, 246, 251, 0.98), rgba(228, 232, 240, 0.92));
    background-size: 240px 100%;
    animation: pasMarketSkeleton 1.4s linear infinite;
}

.pas-talent-card.is-skeleton .pas-talent-skeleton-blocks,
.pas-talent-card.is-skeleton .pas-talent-skeleton-lines {
    display: grid;
    gap: 10px;
    min-width: 240px;
}

.pas-talent-card.is-skeleton .pas-talent-skeleton-blocks span:nth-child(1) { width: 220px; height: 24px; }
.pas-talent-card.is-skeleton .pas-talent-skeleton-blocks span:nth-child(2) { width: 420px; max-width: 100%; height: 18px; }
.pas-talent-card.is-skeleton .pas-talent-skeleton-blocks span:nth-child(3) { width: 160px; height: 16px; }
.pas-talent-card.is-skeleton .pas-talent-card-cta span { width: 150px; height: 44px; }
.pas-talent-card.is-skeleton .pas-talent-card-metrics span { width: 150px; height: 38px; }
.pas-talent-card.is-skeleton .pas-talent-card-tags span { width: 112px; height: 34px; }
.pas-talent-card.is-skeleton .pas-talent-skeleton-lines span { width: 100%; height: 14px; }

@keyframes pasMarketSkeleton {
    from { background-position: -240px 0; }
    to { background-position: 240px 0; }
}

body.pas-marketplace-filters-open {
    overflow: hidden;
}

@media (max-width: 1199px) {
    .pas-marketplace-hero--talent {
        grid-template-columns: 1fr;
    }

    .pas-talent-explorer {
        grid-template-columns: 280px minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .pas-talent-explorer {
        grid-template-columns: 1fr;
    }

    .pas-talent-filters-trigger {
        display: inline-flex;
    }

    .pas-talent-filters-backdrop {
        position: fixed;
        inset: 0;
        display: block;
        opacity: 0;
        pointer-events: none;
        background: rgba(7, 16, 28, 0.45);
        z-index: 69;
    }

    .pas-talent-filters {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(360px, 88vw);
        z-index: 70;
        overflow: auto;
        border-radius: 0 28px 28px 0;
        transform: translateX(-110%);
        transition: transform 0.24s ease;
    }

    .pas-talent-filters-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .pas-marketplace-shell--freelancers.is-filters-open .pas-talent-filters {
        transform: translateX(0);
    }

    .pas-marketplace-shell--freelancers.is-filters-open .pas-talent-filters-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .pas-talent-results-toolbar,
    .pas-talent-card-top,
    .pas-talent-card-footer {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .pas-talent-results-actions {
        justify-content: stretch;
    }

    .pas-talent-results-actions > * {
        width: 100%;
    }

    .pas-talent-card-cta {
        min-width: 0;
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .pas-talent-card-secondary {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .pas-marketplace-shell--freelancers {
        gap: 18px;
    }

    .pas-marketplace-hero--talent,
    .pas-talent-results-toolbar,
    .pas-talent-card {
        padding: 18px;
        border-radius: 24px;
    }

    .pas-talent-card-name {
        font-size: 24px;
    }

    .pas-talent-card-avatar {
        width: 62px;
        height: 62px;
        border-radius: 20px;
    }

    .pas-talent-card-cta {
        grid-template-columns: 1fr;
    }
}

.pas-marketplace-hero--talent .pas-marketplace-hero-stats { grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 1199px) { .pas-marketplace-hero--talent .pas-marketplace-hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px) { .pas-marketplace-hero--talent .pas-marketplace-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .pas-marketplace-hero--talent .pas-marketplace-hero-stats { grid-template-columns: 1fr; } }

/* Freelancer Promo Banner */
.pas-talent-promo-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px 28px 64px;
    border-radius: 32px;
    background: linear-gradient(90deg, rgba(239, 247, 186, 0.92) 0%, rgba(208, 247, 206, 0.94) 55%, rgba(197, 246, 211, 0.92) 100%);
    box-shadow: 0 24px 52px rgba(16, 24, 40, 0.08);
    overflow: hidden;
}

.pas-talent-promo-banner::after {
    content: '';
    position: absolute;
    inset: auto -60px -120px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(57, 184, 157, 0.18), transparent 72%);
    pointer-events: none;
}

.pas-talent-promo-copy {
    display: grid;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.pas-talent-promo-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(19, 59, 44, 0.10);
    color: #143728;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pas-talent-promo-copy strong {
    font-size: clamp(26px, 2.7vw, 40px);
    line-height: 1.06;
    color: #143728;
}

.pas-talent-promo-copy p {
    margin: 0;
    max-width: 760px;
    color: #38584d;
    font-size: 16px;
    line-height: 1.65;
}

.pas-talent-promo-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.pas-talent-promo-banner .breadcrumbs {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 18px;
    margin: 0;
    z-index: 1;
}

.pas-talent-promo-banner .nav-breadcrumbs {
    max-width: 100%;
}

@media (max-width: 900px) {
    .pas-talent-promo-banner {
        grid-template-columns: 1fr;
        padding: 18px 18px 56px;
        border-radius: 26px;
    }

    .pas-talent-promo-actions {
        justify-content: flex-start;
    }

    .pas-talent-promo-banner .breadcrumbs {
        left: 18px;
        right: 18px;
        bottom: 14px;
    }
}

@media (max-width: 640px) {
    .pas-talent-promo-copy strong {
        font-size: 24px;
    }

    .pas-talent-promo-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pas-talent-promo-actions .pas-marketplace-button {
        width: 100%;
        justify-content: center;
    }
}

/* Marketplace Admin Badge Tones */
.pas-talent-badge.is-admin-pro,
.pas-marketplace-badge.is-admin-pro {
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
    border-color: rgba(37, 99, 235, 0.18);
}

.pas-talent-badge.is-admin-standard,
.pas-marketplace-badge.is-admin-standard {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.18);
}

.pas-talent-badge.is-admin-expert,
.pas-marketplace-badge.is-admin-expert {
    background: rgba(22, 163, 74, 0.14);
    color: #15803d;
    border-color: rgba(22, 163, 74, 0.18);
}

.pas-talent-badge.is-admin-debutant,
.pas-marketplace-badge.is-admin-debutant {
    background: rgba(249, 115, 22, 0.14);
    color: #c2410c;
    border-color: rgba(249, 115, 22, 0.18);
}

.pas-talent-promo-banner {
    background:
        linear-gradient(90deg, rgba(239, 247, 186, 0.78) 0%, rgba(208, 247, 206, 0.70) 55%, rgba(197, 246, 211, 0.62) 100%),
        url('../../img/content/freelance-promo-banner.jpg') right 34px bottom / auto 118% no-repeat,
        linear-gradient(90deg, rgba(239, 247, 186, 0.92) 0%, rgba(208, 247, 206, 0.94) 55%, rgba(197, 246, 211, 0.92) 100%);
}

.pas-talent-promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

@media (max-width: 900px) {
    .pas-talent-promo-banner {
        background:
            linear-gradient(180deg, rgba(239, 247, 186, 0.82) 0%, rgba(208, 247, 206, 0.74) 58%, rgba(197, 246, 211, 0.66) 100%),
            url('../../img/content/freelance-promo-banner.jpg') right -18px bottom / auto 94% no-repeat,
            linear-gradient(90deg, rgba(239, 247, 186, 0.92) 0%, rgba(208, 247, 206, 0.94) 55%, rgba(197, 246, 211, 0.92) 100%);
    }
}

@media (max-width: 640px) {
    .pas-talent-promo-banner {
        background:
            linear-gradient(180deg, rgba(239, 247, 186, 0.88) 0%, rgba(208, 247, 206, 0.80) 100%),
            linear-gradient(90deg, rgba(239, 247, 186, 0.92) 0%, rgba(208, 247, 206, 0.94) 55%, rgba(197, 246, 211, 0.92) 100%);
    }
}

/* Course Marketplace Premium */
.pas-marketplace-shell--courses {
    gap: 28px;
}

.pas-course-promo-banner {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 26px 30px 64px;
    border-radius: 32px;
    background: linear-gradient(135deg, #16114a 0%, #251a77 54%, #3c23a6 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(26, 24, 79, 0.24);
}

.pas-course-promo-banner::after {
    content: '';
    position: absolute;
    inset: auto -120px -140px auto;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(174, 130, 255, 0.34), transparent 72%);
    pointer-events: none;
}

.pas-course-promo-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    max-width: 840px;
}

.pas-course-promo-kicker {
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.pas-course-promo-copy strong {
    font-size: clamp(28px, 4vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.pas-course-promo-copy p {
    margin: 0;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.pas-course-promo-banner .pas-marketplace-hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 8px;
}

.pas-course-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 20px;
    align-items: start;
}

.pas-course-editorial-head span,
.pas-course-section-head span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pas-course-editorial-head h1,
.pas-course-section-head h2 {
    margin: 0;
    font-size: clamp(30px, 3.4vw, 50px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #151736;
}

.pas-course-editorial-head p,
.pas-course-section-head p {
    margin: 12px 0 0;
    max-width: 760px;
    color: #55637f;
    line-height: 1.7;
}

.pas-marketplace-highlight--courses {
    align-content: start;
    min-height: 100%;
}

.pas-course-toolbar-panel {
    display: grid;
    gap: 22px;
}

.pas-course-card {
    display: grid;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #d7dbe7;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pas-course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(21, 23, 54, 0.10);
}

.pas-course-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #ebeefe, #e4e8ff);
}

.pas-course-card-media img,
.pas-course-card.is-skeleton .pas-course-card-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pas-course-card-body {
    display: grid;
    gap: 10px;
    padding: 14px 10px 18px;
}

.pas-course-card-title,
.pas-course-card-title:visited {
    color: #1c1d1f;
    text-decoration: none;
    font-size: 22px;
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.pas-course-card-trainer,
.pas-course-card-trainer a,
.pas-course-card-trainer a:visited {
    color: #6a6f78;
    text-decoration: none;
    font-size: 14px;
}

.pas-course-card-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6a6f78;
}

.pas-course-card-rating-row strong {
    color: #8b4309;
    font-size: 16px;
}

.pas-course-card-stars {
    display: inline-flex;
    gap: 2px;
    color: #f69c08;
}

.pas-course-card-rating-empty {
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
}

.pas-course-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #6a6f78;
    font-size: 13px;
}

.pas-course-card-summary {
    min-height: 44px;
    color: #475467;
    font-size: 14px;
    line-height: 1.55;
}

.pas-course-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.pas-course-card-pricing strong {
    font-size: 30px;
    line-height: 1;
    color: #171731;
    letter-spacing: -0.03em;
}

.pas-course-card-pricing span {
    font-size: 15px;
    color: #6a6f78;
    text-decoration: line-through;
}

.pas-course-card-footer {
    display: grid;
    gap: 12px;
}

.pas-course-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pas-course-card-badges .pas-marketplace-badge.is-course-premium {
    background: #5c27c5;
    color: #ffffff;
}

.pas-course-card-badges .pas-marketplace-badge.is-course-standard {
    background: #d9f1f7;
    color: #135d76;
}

.pas-course-card-badges .pas-marketplace-badge.is-course-average {
    background: #f6e9d3;
    color: #905e11;
}

.pas-course-card.is-skeleton {
    pointer-events: none;
}

.pas-course-card.is-skeleton .pas-course-card-media,
.pas-course-skeleton-line {
    background: linear-gradient(90deg, #eceff6, #f6f7fb, #eceff6);
    background-size: 200% 100%;
    animation: pasMarketplacePulse 1.2s ease infinite;
}

.pas-course-skeleton-line {
    height: 16px;
    border-radius: 999px;
}

.pas-course-skeleton-line.is-title {
    height: 26px;
    width: 88%;
}

.pas-course-skeleton-line.is-short {
    width: 54%;
}

@keyframes pasMarketplacePulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 1199px) {
    .pas-course-editorial {
        grid-template-columns: 1fr;
    }

    .pas-course-promo-banner .pas-marketplace-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .pas-course-promo-banner {
        padding: 22px 20px 56px;
        border-radius: 26px;
    }

    .pas-course-promo-banner .pas-marketplace-hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .pas-course-promo-banner {
        padding: 18px 16px 52px;
        border-radius: 22px;
    }

    .pas-course-promo-copy strong {
        font-size: 30px;
    }

    .pas-course-promo-banner .pas-marketplace-hero-stats {
        grid-template-columns: 1fr;
    }

    .pas-course-card-body {
        padding: 14px 12px 16px;
    }

    .pas-course-card-title,
    .pas-course-card-title:visited {
        font-size: 18px;
    }

    .pas-course-card-pricing strong {
        font-size: 24px;
    }
}
/* Marketplace Premium Final */
.pas-marketplace-shell--courses,
.pas-marketplace-shell--freelancers {
    gap: 24px;
}

.pas-course-promo-banner,
.pas-talent-promo-banner {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 26px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f4f8ff 0%, #edf8f4 100%);
    box-shadow: 0 20px 40px rgba(18, 33, 61, 0.08);
    border: 1px solid rgba(16, 24, 40, 0.06);
}

.pas-talent-promo-banner {
    background:
        linear-gradient(100deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 42%, rgba(255,255,255,0.72) 100%),
        url('../img/content/freelance-promo-banner.jpg') center right / cover no-repeat;
}

.pas-course-promo-copy,
.pas-talent-promo-copy {
    display: grid;
    gap: 10px;
    max-width: 760px;
}

.pas-course-promo-copy strong,
.pas-talent-promo-copy strong {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: #1c2438;
}

.pas-course-promo-copy p,
.pas-talent-promo-copy p {
    margin: 0;
    max-width: 760px;
    color: #5c657d;
    line-height: 1.7;
    font-size: 16px;
}

.pas-course-promo-kicker,
.pas-talent-promo-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(25, 25, 112, 0.08);
    color: #191970;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pas-course-toolbar-panel,
.pas-talent-search-shell {
    padding: 26px;
    border-radius: 28px;
}

.pas-course-section-head,
.pas-marketplace-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.pas-course-section-head h2,
.pas-marketplace-section-head h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #1f2940;
}

.pas-course-section-head p,
.pas-marketplace-section-head p {
    margin: 6px 0 0;
    color: #627089;
}

.pas-marketplace-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.pas-course-card,
.pas-talent-card {
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,249,252,0.98));
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.08);
}

.pas-course-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 24px;
}

.pas-course-card-media {
    aspect-ratio: 16 / 10;
    border-radius: 0;
}

.pas-course-card-media img {
    transition: transform 0.35s ease;
}

.pas-course-card:hover .pas-course-card-media img,
.pas-talent-card:hover .pas-talent-card-avatar img {
    transform: scale(1.035);
}

.pas-course-card-body {
    display: grid;
    gap: 12px;
    padding: 18px 18px 20px;
}

.pas-course-card-title {
    color: #182033;
    text-decoration: none;
}

.pas-course-card-title:hover {
    color: #191970;
}

.pas-course-card-trainer,
.pas-course-card-trainer a {
    color: #67748f;
    text-decoration: none;
}

.pas-course-card-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #5a657e;
}

.pas-course-card-rating-row strong {
    color: #9a5d00;
}

.pas-course-card-stars {
    display: inline-flex;
    gap: 3px;
    color: #f4a11a;
}

.pas-course-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    color: #6b7690;
    font-size: 13px;
}

.pas-course-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(20, 55, 40, 0.06);
}

.pas-course-card-summary {
    min-height: 72px;
    color: #526078;
}

.pas-course-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.pas-course-card-pricing strong {
    font-size: 28px;
    letter-spacing: -0.03em;
    color: #11192c;
}

.pas-course-card-pricing span {
    color: #8a93a8;
    text-decoration: line-through;
}

.pas-course-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

.pas-course-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pas-marketplace-badge.is-course-premium {
    background: #5d38d6;
    color: #fff;
}

.pas-marketplace-badge.is-course-standard {
    background: #dff4f5;
    color: #0e6470;
}

.pas-marketplace-badge.is-course-average {
    background: #ffe6b8;
    color: #8a5600;
}

.pas-talent-search-shell {
    display: grid;
    grid-template-columns: minmax(248px, 280px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.pas-talent-filters-sidebar {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 20px 36px rgba(15, 23, 42, 0.05);
}

.pas-talent-card {
    border-radius: 26px;
}

.pas-talent-card-top {
    gap: 18px;
}

.pas-talent-card-title {
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.08;
    color: #182033;
}

.pas-talent-card-location,
.pas-talent-card-metrics,
.pas-talent-card-secondary {
    color: #647089;
}

.pas-talent-card-insights {
    border: 1px solid rgba(20, 55, 40, 0.06);
    background: linear-gradient(180deg, #fbfcfd, #f6f8fb);
}

.pas-talent-card-associated {
    border: 1px solid rgba(20, 55, 40, 0.08);
    background: rgba(248, 250, 253, 0.96);
}

.pas-course-detail-page .pas-marketplace-shell {
    gap: 26px;
}

.pas-course-detail-hero-premium {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.72fr);
    gap: 24px;
    align-items: stretch;
}

.pas-course-detail-cover-premium {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, #dcebe6, #f5f8fb);
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.12);
}

.pas-course-detail-cover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    padding: 28px;
    background: linear-gradient(180deg, rgba(10, 18, 30, 0.02) 0%, rgba(10, 18, 30, 0.74) 100%);
}

.pas-course-detail-cover-copy {
    display: grid;
    gap: 14px;
    max-width: 700px;
}

.pas-course-detail-cover-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 62px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.pas-course-detail-cover-copy p {
    margin: 0;
    max-width: 640px;
    color: rgba(255,255,255,0.88);
    font-size: 17px;
    line-height: 1.72;
}

.pas-course-detail-sidebar-premium {
    display: grid;
    gap: 18px;
    align-content: start;
}

.pas-course-detail-instructor-card,
.pas-course-detail-rating-card {
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
}

.pas-course-detail-instructor-card {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
}

.pas-course-detail-instructor-copy {
    display: grid;
    gap: 6px;
}

.pas-course-detail-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7690;
}

.pas-course-detail-instructor-copy strong,
.pas-course-detail-instructor-copy strong a {
    color: #182033;
    text-decoration: none;
}

.pas-course-detail-body-premium {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.88fr);
}

.pas-course-detail-kpis,
.pas-course-detail-outline-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.pas-course-detail-learning-list {
    gap: 12px;
}

.pas-course-detail-learning-list li,
.pas-course-curriculum-item ul li {
    position: relative;
}

.pas-course-curriculum-list {
    display: grid;
    gap: 16px;
}

.pas-course-curriculum-item {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(20, 55, 40, 0.08);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.pas-course-curriculum-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.pas-course-curriculum-item p {
    margin: 0 0 10px;
    color: #63708a;
}

.pas-course-curriculum-item ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pas-course-curriculum-item li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.pas-course-curriculum-item li:first-child {
    border-top: 0;
}

.pas-course-curriculum-item li small {
    color: #7b869d;
}

@media screen and (max-width: 1180px) {
    .pas-marketplace-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pas-course-detail-hero-premium,
    .pas-talent-search-shell {
        grid-template-columns: 1fr;
    }

    .pas-talent-filters-sidebar {
        position: static;
        top: auto;
    }
}

@media screen and (max-width: 900px) {
    .pas-marketplace-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pas-course-promo-banner,
    .pas-talent-promo-banner,
    .pas-course-section-head,
    .pas-marketplace-section-head {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: start;
    }

    .pas-course-detail-body-premium,
    .pas-course-detail-kpis,
    .pas-course-detail-outline-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .pas-course-promo-banner,
    .pas-talent-promo-banner,
    .pas-course-toolbar-panel,
    .pas-talent-search-shell {
        padding: 18px;
        border-radius: 22px;
    }

    .pas-marketplace-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pas-course-card-footer,
    .pas-talent-card-top,
    .pas-talent-card-footer,
    .pas-course-curriculum-head,
    .pas-course-curriculum-item li {
        display: grid;
        justify-content: stretch;
    }

    .pas-course-card-footer .pas-marketplace-button,
    .pas-talent-card-cta .pas-marketplace-button,
    .pas-marketplace-detail-actions .pas-marketplace-button {
        width: 100%;
    }

    .pas-course-detail-cover-premium {
        min-height: 360px;
        border-radius: 24px;
    }

    .pas-course-detail-cover-overlay {
        padding: 18px;
    }

    .pas-course-detail-cover-copy h1 {
        font-size: 34px;
    }

    .pas-course-detail-instructor-card {
        grid-template-columns: 56px minmax(0, 1fr);
    }
}

/* Codex Marketplace Simplified Final */
.page-formations .pas-marketplace-shell,
.page-freelancers .pas-marketplace-shell {
    gap: 24px;
}

.page-formations .pas-marketplace-highlight,
.page-formations .pas-marketplace-highlight--courses,
.page-formations .pas-course-editorial-head {
    display: none !important;
}

.page-formations .page-banner {
    min-height: 240px;
    margin: 0 0 8px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-formations .pas-marketplace-panel,
.page-formations .pas-marketplace-empty,
.page-formations .pas-marketplace-card,
.page-formations .pas-marketplace-card-media,
.page-formations .pas-marketplace-detail-panel,
.page-formations .pas-marketplace-detail-cover,
.page-formations .pas-marketplace-detail-summary,
.page-formations .pas-marketplace-detail-body > section,
.page-formations .pas-marketplace-page-button,
.page-formations .pas-marketplace-field input,
.page-formations .pas-marketplace-field select,
.page-formations .pas-marketplace-button,
.page-formations .pas-marketplace-badge,
.page-formations .pas-marketplace-tag,
.page-formations .pas-course-promo-banner,
.page-freelancers .pas-marketplace-panel,
.page-freelancers .pas-marketplace-empty,
.page-freelancers .pas-marketplace-card,
.page-freelancers .pas-marketplace-card-media,
.page-freelancers .pas-marketplace-detail-panel,
.page-freelancers .pas-marketplace-detail-cover,
.page-freelancers .pas-marketplace-detail-summary,
.page-freelancers .pas-marketplace-detail-body > section,
.page-freelancers .pas-marketplace-page-button,
.page-freelancers .pas-marketplace-field input,
.page-freelancers .pas-marketplace-field select,
.page-freelancers .pas-marketplace-button,
.page-freelancers .pas-marketplace-badge,
.page-freelancers .pas-marketplace-tag,
.page-freelancers .pas-talent-filter-card,
.page-freelancers .pas-talent-promo-banner,
.page-freelancers .pas-talent-results-toolbar,
.page-freelancers .pas-talent-results-list article,
.page-freelancers .pas-talent-insights,
.page-freelancers .pas-talent-associated {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.page-formations .pas-marketplace-panel,
.page-formations .pas-marketplace-empty,
.page-formations .pas-marketplace-card,
.page-formations .pas-marketplace-detail-panel,
.page-formations .pas-marketplace-detail-body > section,
.page-freelancers .pas-marketplace-panel,
.page-freelancers .pas-marketplace-empty,
.page-freelancers .pas-marketplace-card,
.page-freelancers .pas-marketplace-detail-panel,
.page-freelancers .pas-marketplace-detail-body > section,
.page-freelancers .pas-talent-filter-card,
.page-freelancers .pas-talent-results-toolbar,
.page-freelancers .pas-talent-results-list article,
.page-freelancers .pas-talent-insights,
.page-freelancers .pas-talent-associated {
    border: 1px solid rgba(17, 36, 51, 0.08);
    background: #ffffff;
}

.page-formations .pas-marketplace-main,
.page-freelancers .pas-marketplace-main {
    background: #f8fafc;
}

.page-formations .pas-marketplace-card,
.page-freelancers .pas-marketplace-card {
    padding: 18px;
    gap: 14px;
}

.page-formations .pas-marketplace-card-media,
.page-freelancers .pas-marketplace-card-media {
    aspect-ratio: 16 / 9;
    background: #eef3f7;
}

.page-formations .pas-marketplace-button,
.page-freelancers .pas-marketplace-button {
    min-height: 44px;
    border: 1px solid rgba(20, 55, 40, 0.14);
}

.page-formations .pas-marketplace-button.is-secondary,
.page-freelancers .pas-marketplace-button.is-secondary {
    background: #f4f6f8;
    color: #143728;
}

.page-freelancers .pas-talent-promo-banner {
    position: relative;
    overflow: hidden;
    margin-top: 14px;
    min-height: 230px;
    padding: 28px 28px 18px;
    border: 1px solid rgba(17, 36, 51, 0.08);
    background:
        linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.84) 34%, rgba(255,255,255,0.30) 68%, rgba(255,255,255,0.12) 100%),
        url('../img/content/freelance-promo-banner.jpg') center center / cover no-repeat;
}

.page-freelancers .pas-talent-promo-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(12,20,26,0.08) 100%);
    pointer-events: none;
}

.page-freelancers .pas-talent-promo-copy,
.page-freelancers .pas-talent-promo-actions,
.page-freelancers .pas-talent-promo-banner .breadcrumbs {
    position: relative;
    z-index: 1;
}

.page-freelancers .pas-talent-promo-copy {
    max-width: 560px;
}

.page-freelancers .pas-talent-promo-copy strong {
    display: block;
    max-width: 520px;
    color: #102233;
}

.page-freelancers .pas-talent-promo-copy p {
    display: none !important;
}

.page-freelancers .pas-talent-filters {
    top: 0;
}

.page-freelancers .pas-talent-filter-card summary,
.page-freelancers .pas-talent-results-summary strong,
.page-formations .pas-course-section-head h2,
.page-formations .pas-marketplace-card h3,
.page-freelancers .pas-marketplace-card h3 {
    color: #102233;
}

@media (max-width: 1024px) {
    .page-freelancers .pas-talent-promo-banner {
        min-height: 200px;
        padding: 24px 18px 16px;
    }
}

@media (max-width: 767px) {
    .page-formations .page-banner {
        min-height: 180px;
    }

    .page-freelancers .pas-talent-promo-banner {
        min-height: 180px;
        margin-top: 10px;
        padding: 18px 14px 14px;
        background-position: 72% center;
    }

    .page-formations .pas-marketplace-grid,
    .page-freelancers .pas-marketplace-grid {
        gap: 16px;
    }
}

/* Codex Marketplace Buttons Clean Final */
.page-formations .pas-marketplace-button,
.page-formations .pas-marketplace-button:visited,
.page-formations .pas-marketplace-page-button,
.page-formations .pas-marketplace-page-button:visited,
.page-formations .cta-accueil-small,
.page-formations .cta-accueil-small:visited,
.page-freelancers .pas-marketplace-button,
.page-freelancers .pas-marketplace-button:visited,
.page-freelancers .pas-marketplace-page-button,
.page-freelancers .pas-marketplace-page-button:visited,
.page-freelancers .cta-accueil-small,
.page-freelancers .cta-accueil-small:visited {
    text-decoration: none !important;
}

.page-formations .pas-marketplace-button,
.page-formations .pas-marketplace-page-button,
.page-freelancers .pas-marketplace-button,
.page-freelancers .pas-marketplace-page-button {
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-width: 1px;
    border-style: solid;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.page-formations .pas-marketplace-button:hover,
.page-formations .pas-marketplace-button:focus-visible,
.page-formations .pas-marketplace-page-button:hover,
.page-formations .pas-marketplace-page-button:focus-visible,
.page-freelancers .pas-marketplace-button:hover,
.page-freelancers .pas-marketplace-button:focus-visible,
.page-freelancers .pas-marketplace-page-button:hover,
.page-freelancers .pas-marketplace-page-button:focus-visible {
    text-decoration: none !important;
    transform: translateY(-1px);
}

.page-formations .pas-marketplace-button.is-secondary,
.page-formations .pas-marketplace-button.is-secondary:visited,
.page-freelancers .pas-marketplace-button.is-secondary,
.page-freelancers .pas-marketplace-button.is-secondary:visited {
    background: #eef3f8 !important;
    border-color: #d3dce8 !important;
    color: #102233 !important;
    box-shadow: none !important;
}

.page-formations .pas-marketplace-button.is-secondary:hover,
.page-formations .pas-marketplace-button.is-secondary:focus-visible,
.page-freelancers .pas-marketplace-button.is-secondary:hover,
.page-freelancers .pas-marketplace-button.is-secondary:focus-visible {
    background: #dde7f0 !important;
    border-color: #c3cfdd !important;
    color: #0b1a2b !important;
    text-decoration: none !important;
}

.page-formations .cta-accueil-small,
.page-freelancers .cta-accueil-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.page-formations .cta-accueil-small:hover,
.page-formations .cta-accueil-small:focus-visible,
.page-freelancers .cta-accueil-small:hover,
.page-freelancers .cta-accueil-small:focus-visible {
    text-decoration: none !important;
    transform: translateY(-1px);
}
/* Codex Marketplace Badges Tags Links Final */
.page-formations .pas-marketplace-card a,
.page-formations .pas-marketplace-card a:visited,
.page-formations .pas-marketplace-detail-panel a,
.page-formations .pas-marketplace-detail-panel a:visited,
.page-freelancers .pas-marketplace-card a,
.page-freelancers .pas-marketplace-card a:visited,
.page-freelancers .pas-marketplace-detail-panel a,
.page-freelancers .pas-marketplace-detail-panel a:visited {
    text-decoration: none;
}

.page-formations .pas-course-card-title,
.page-formations .pas-course-card-title:visited,
.page-formations .pas-course-card-trainer a,
.page-formations .pas-course-card-trainer a:visited,
.page-freelancers .pas-talent-card-name,
.page-freelancers .pas-talent-card-name:visited,
.page-freelancers .pas-marketplace-detail-head a,
.page-freelancers .pas-marketplace-detail-head a:visited {
    transition: color 0.18s ease, opacity 0.18s ease;
}

.page-formations .pas-course-card-title:hover,
.page-formations .pas-course-card-title:focus-visible,
.page-formations .pas-course-card-trainer a:hover,
.page-formations .pas-course-card-trainer a:focus-visible,
.page-freelancers .pas-talent-card-name:hover,
.page-freelancers .pas-talent-card-name:focus-visible,
.page-freelancers .pas-marketplace-detail-head a:hover,
.page-freelancers .pas-marketplace-detail-head a:focus-visible {
    text-decoration: none !important;
    opacity: 0.88;
}

.page-formations .pas-marketplace-badge,
.page-freelancers .pas-marketplace-badge,
.page-freelancers .pas-talent-badge {
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.page-formations .pas-marketplace-tag,
.page-freelancers .pas-marketplace-tag {
    text-decoration: none !important;
    border: 1px solid rgba(20, 55, 40, 0.10);
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.page-formations .pas-marketplace-badge:hover,
.page-formations .pas-marketplace-badge:focus-visible,
.page-freelancers .pas-marketplace-badge:hover,
.page-freelancers .pas-marketplace-badge:focus-visible,
.page-freelancers .pas-talent-badge:hover,
.page-freelancers .pas-talent-badge:focus-visible,
.page-formations .pas-marketplace-tag:hover,
.page-formations .pas-marketplace-tag:focus-visible,
.page-freelancers .pas-marketplace-tag:hover,
.page-freelancers .pas-marketplace-tag:focus-visible {
    text-decoration: none !important;
    transform: translateY(-1px);
}

.page-formations .pas-marketplace-tag:hover,
.page-formations .pas-marketplace-tag:focus-visible,
.page-freelancers .pas-marketplace-tag:hover,
.page-freelancers .pas-marketplace-tag:focus-visible {
    background: rgba(20, 55, 40, 0.12);
    border-color: rgba(20, 55, 40, 0.18);
    color: #102c22;
}

.page-formations .pas-marketplace-card-tags,
.page-freelancers .pas-marketplace-card-tags,
.page-freelancers .pas-talent-card-tags,
.page-freelancers .pas-talent-card-badges,
.page-formations .pas-course-card-badges {
    align-items: center;
}
.page-freelancers .pas-talent-promo-banner {
    background:
        linear-gradient(90deg, rgba(9, 14, 24, 0.74) 0%, rgba(9, 14, 24, 0.52) 36%, rgba(9, 14, 24, 0.18) 72%, rgba(9, 14, 24, 0.10) 100%),
        url('../../img/photos/slider-image3.jpg') center center / cover no-repeat !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

.page-freelancers .pas-talent-promo-copy,
.page-freelancers .pas-talent-promo-actions,
.page-freelancers .pas-talent-promo-banner .breadcrumbs {
    position: relative;
    z-index: 1;
}

.page-freelancers .pas-talent-promo-copy strong,
.page-freelancers .pas-talent-promo-copy p,
.page-freelancers .pas-talent-promo-kicker,
.page-freelancers .pas-talent-promo-banner .nav-breadcrumbs,
.page-freelancers .pas-talent-promo-banner .nav-breadcrumbs a,
.page-freelancers .pas-talent-promo-banner .breadcrumb_last {
    color: #ffffff;
}

.page-freelancers .pas-talent-promo-banner::after {
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.02) 0%, rgba(8, 12, 20, 0.24) 100%);
}

@media (max-width: 767px) {
    .page-freelancers .pas-talent-promo-banner {
        background-position: center center !important;
        background-size: cover !important;
    }
}

.page-freelancers .pas-talent-card-insights {
    display: none !important;
}

.page-freelancers .pas-talent-card-name,
.page-freelancers .pas-talent-card-name:link,
.page-freelancers .pas-talent-card-name:visited,
.page-freelancers .pas-talent-card-name:hover,
.page-freelancers .pas-talent-card-name:focus,
.page-freelancers .pas-talent-card-top a,
.page-freelancers .pas-talent-card-top a:link,
.page-freelancers .pas-talent-card-top a:visited,
.page-freelancers .pas-talent-card-top a:hover,
.page-freelancers .pas-talent-card-top a:focus {
    text-decoration: none !important;
}

/* Codex Freelancer CTA Size Final */
.page-freelancers .pas-talent-card-cta {
    min-width: 132px;
    gap: 8px;
}

.page-freelancers .pas-talent-card-cta .pas-marketplace-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .page-freelancers .pas-talent-card-cta .pas-marketplace-button {
        min-height: 36px;
        font-size: 12px;
    }
}

/* Codex Freelancer Filters And CTA Polish Final */
.page-freelancers .pas-talent-filter-row select {
    min-height: 44px;
    padding: 0 40px 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(16, 24, 40, 0.10);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,251,0.98));
    color: #102233;
    font-size: 14px;
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #506074 50%),
        linear-gradient(135deg, #506074 50%, transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0));
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px),
        100% 0;
    background-size: 6px 6px, 6px 6px, 2.5em 100%;
    background-repeat: no-repeat;
}

.page-freelancers .pas-talent-filter-row select:hover {
    border-color: rgba(20, 55, 40, 0.18);
    background:
        linear-gradient(180deg, rgba(255,255,255,1), rgba(242,246,249,1));
}

.page-freelancers .pas-talent-filter-row select:focus {
    outline: none;
    border-color: rgba(57, 184, 157, 0.52);
    box-shadow: 0 0 0 4px rgba(57, 184, 157, 0.10), inset 0 1px 0 rgba(255,255,255,0.72);
}

.page-freelancers .pas-talent-card-avatar {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.92);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
    background: linear-gradient(135deg, #dfe7f4, #edf4ef);
}

.page-freelancers .pas-talent-card-avatar img,
.page-freelancers .pas-talent-card-avatar .pas-marketplace-avatar-fallback {
    border-radius: 999px;
}

.page-freelancers .pas-talent-card-cta {
    min-width: 118px;
    gap: 6px;
}

.page-freelancers .pas-talent-card-cta .pas-marketplace-button {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: none !important;
}

.page-freelancers .pas-talent-card-cta .pas-marketplace-button:first-child {
    background: #e9eef5;
    border-color: #d7dee8;
    color: #102233;
}

.page-freelancers .pas-talent-card-cta .pas-marketplace-button:first-child:hover,
.page-freelancers .pas-talent-card-cta .pas-marketplace-button:first-child:focus-visible {
    background: #dde6f1;
    border-color: #c9d4e1;
    color: #081526;
}

.page-freelancers .pas-talent-card-cta .pas-marketplace-button.is-secondary {
    background: linear-gradient(180deg, #d9ecff, #c4e1ff);
    border-color: #b7d9ff;
    color: #0b2340 !important;
}

.page-freelancers .pas-talent-card-cta .pas-marketplace-button.is-secondary:hover,
.page-freelancers .pas-talent-card-cta .pas-marketplace-button.is-secondary:focus-visible {
    background: linear-gradient(180deg, #cde5ff, #b8dbff);
    border-color: #a8d1ff;
    color: #081a31 !important;
}

@media (max-width: 900px) {
    .page-freelancers .pas-talent-card-avatar {
        width: 60px;
        height: 60px;
    }

    .page-freelancers .pas-talent-card-cta .pas-marketplace-button {
        min-height: 32px;
        font-size: 13px;
    }
}


/* Freelancer Admin Badge Blue Instagram Pass */
.pas-talent-badge.is-admin-pro,
.pas-talent-badge.is-admin-standard,
.pas-talent-badge.is-admin-expert,
.pas-talent-badge.is-admin-debutant,
.pas-marketplace-badge.is-admin-pro,
.pas-marketplace-badge.is-admin-standard,
.pas-marketplace-badge.is-admin-expert,
.pas-marketplace-badge.is-admin-debutant {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(99, 102, 241, 0.16));
    color: #1d4ed8;
    border-color: rgba(59, 130, 246, 0.24);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

/* Freelancer Card Pixel Pass */
.page-freelancers .pas-talent-card--upworkish {
    gap: 16px;
    padding: 30px 36px 24px;
    border-radius: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.page-freelancers .pas-talent-card--upworkish:hover {
    border-color: rgba(22, 163, 74, 0.34);
    box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.08);
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-top {
    align-items: flex-start;
    gap: 20px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-identity {
    gap: 18px;
    align-items: flex-start;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-avatar {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(16, 24, 40, 0.06);
    box-shadow: none;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-status-dot {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #6ad15f;
    border: 2px solid #ffffff;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-head {
    gap: 6px;
    padding-top: 1px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-name-row {
    gap: 12px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-name {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
    text-decoration: none !important;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-title {
    max-width: 940px;
    font-size: 19px;
    line-height: 1.14;
    font-weight: 500;
    color: #111827;
    letter-spacing: -0.01em;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-location {
    font-size: 13px;
    line-height: 1.3;
    color: #6b7280;
}

.page-freelancers .pas-talent-social-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.10), rgba(59, 130, 246, 0.10));
    border: 1px solid rgba(59, 130, 246, 0.16);
    color: #4f46e5;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.page-freelancers .pas-talent-social-badge i {
    font-size: 12px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 228px;
    padding-top: 2px;
}

.page-freelancers .pas-talent-like-button,
.page-freelancers .pas-talent-invite-button {
    appearance: none;
    border: 0;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.page-freelancers .pas-talent-like-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 60px;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 2px solid #16a34a;
    background: #ffffff;
    color: #16a34a;
    font-size: 16px;
    font-weight: 700;
}

.page-freelancers .pas-talent-like-button span {
    font-size: 14px;
    line-height: 1;
}

.page-freelancers .pas-talent-like-button:hover,
.page-freelancers .pas-talent-like-button:focus-visible {
    outline: none;
    background: rgba(22, 163, 74, 0.06);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.page-freelancers .pas-talent-like-button.is-active {
    background: #16a34a;
    color: #ffffff;
}

.page-freelancers .pas-talent-invite-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 44px;
    padding: 0 22px;
    border-radius: 12px;
    background: #14a800;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    box-shadow: none;
}

.page-freelancers .pas-talent-invite-button:hover,
.page-freelancers .pas-talent-invite-button:focus-visible {
    outline: none;
    background: #118f00;
    box-shadow: 0 0 0 3px rgba(20, 168, 0, 0.14);
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metrics {
    align-items: center;
    gap: 18px 28px;
    padding-top: 2px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #4b5563;
    font-size: 16px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric strong {
    font-size: 16px;
    font-weight: 500;
    color: #4b5563;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category i {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border: 3px solid #2f7df6;
    color: #2f7df6;
    font-size: 15px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category strong {
    color: #374151;
    font-size: 17px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-availability {
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f4ecff;
    color: #6d28d9;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-availability strong,
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-availability i {
    color: #6d28d9;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-tags {
    gap: 10px;
}

.page-freelancers .pas-talent-card--upworkish .pas-marketplace-tag {
    min-height: 32px;
    padding: 0 16px;
    border-radius: 999px;
    background: #eef0f3;
    border: 0;
    color: #1f2937;
    font-size: 13px;
    font-weight: 500;
}

.page-freelancers .pas-talent-card--upworkish .pas-marketplace-tag.is-count {
    color: #111827;
    font-weight: 700;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-insights {
    display: block !important;
    padding: 18px 22px 16px;
    border-radius: 14px;
    background: #f7f7f8;
    border: 0;
}

.page-freelancers .pas-talent-card-insights-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #667085;
    font-size: 13px;
    font-weight: 500;
}

.page-freelancers .pas-talent-card-insights-label i {
    font-size: 14px;
    color: #80889a;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-insights ul {
    gap: 8px;
    padding-left: 18px;
    color: #111827;
    font-size: 15px;
    line-height: 1.5;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-footer,
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-secondary,
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-badges {
    display: none !important;
}

@media (max-width: 1080px) {
    .page-freelancers .pas-talent-card--upworkish {
        padding: 24px 24px 20px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-top {
        flex-direction: column;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-cta {
        width: 100%;
        justify-content: flex-start;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .page-freelancers .pas-talent-card--upworkish {
        padding: 20px 18px 18px;
        gap: 14px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-identity {
        gap: 14px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-avatar {
        width: 52px;
        height: 52px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-title {
        font-size: 17px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-metrics {
        gap: 12px 16px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric,
    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric strong {
        font-size: 14px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category i {
        width: 34px;
        height: 34px;
        font-size: 13px;
        border-width: 2px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-cta {
        gap: 10px;
        flex-wrap: wrap;
    }

    .page-freelancers .pas-talent-like-button,
    .page-freelancers .pas-talent-invite-button {
        min-width: 0;
    }

    .page-freelancers .pas-talent-invite-button {
        padding: 0 18px;
    }
}
/* Freelancer Card Pixel Pass Refinement */
.page-freelancers .pas-talent-card--upworkish {
    gap: 15px;
    padding: 28px 34px 22px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-top {
    gap: 18px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-head {
    gap: 5px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-name {
    font-size: 16px;
    letter-spacing: -0.01em;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-title {
    max-width: 980px;
    font-size: 18px;
    line-height: 1.12;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-location {
    font-size: 12px;
}

.page-freelancers .pas-talent-social-badge {
    min-height: 28px;
    padding: 0 11px;
    font-size: 11px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-cta {
    gap: 12px;
    min-width: 214px;
}

.page-freelancers .pas-talent-like-button {
    min-width: 58px;
    height: 42px;
    padding: 0 13px;
}

.page-freelancers .pas-talent-invite-button {
    min-width: 144px;
    height: 42px;
    border-radius: 11px;
    font-size: 14px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metrics {
    gap: 16px 26px;
    margin-top: 1px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric,
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric strong {
    font-size: 15px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category i {
    width: 38px;
    height: 38px;
    font-size: 14px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category strong {
    font-size: 16px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-availability {
    min-height: 30px;
    padding: 0 13px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-tags {
    gap: 9px;
}

.page-freelancers .pas-talent-card--upworkish .pas-marketplace-tag {
    min-height: 30px;
    padding: 0 14px;
    font-size: 12px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-insights {
    padding: 17px 21px 15px;
    border-radius: 13px;
}

.page-freelancers .pas-talent-card-insights-label {
    margin-bottom: 9px;
    font-size: 12px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-insights ul {
    gap: 7px;
    font-size: 14px;
    line-height: 1.45;
}

@media (max-width: 767px) {
    .page-freelancers .pas-talent-card--upworkish {
        padding: 18px 16px 16px;
        gap: 13px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-name {
        font-size: 15px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-title {
        font-size: 16px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-location {
        font-size: 12px;
    }

    .page-freelancers .pas-talent-social-badge {
        min-height: 26px;
        padding: 0 10px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric,
    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric strong {
        font-size: 13px;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-marketplace-tag {
        min-height: 28px;
        font-size: 12px;
    }

    .page-freelancers .pas-talent-like-button,
    .page-freelancers .pas-talent-invite-button {
        height: 40px;
    }
}

/* Freelancer Status And Category Tone Pass */
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-status-dot {
    top: 2px;
    left: 2px;
    right: auto;
    bottom: auto;
    width: 11px;
    height: 11px;
    transform: translate(-24%, -24%);
    box-shadow: 0 0 0 3px #ffffff, 0 3px 8px rgba(15, 23, 42, 0.18);
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-status-dot.is-online {
    background: #59c54b;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-status-dot.is-offline {
    background: #d65b5b;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category {
    gap: 7px;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category i {
    width: auto;
    height: auto;
    display: inline-block;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 16px;
    line-height: 1;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category.is-category-level-debutant i,
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category.is-category-level-debutant strong {
    color: #ea580c;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category.is-category-level-standard i,
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category.is-category-level-standard strong {
    color: #ca8a04;
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category.is-category-level-pro i,
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category.is-category-level-pro strong,
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category.is-category-level-expert i,
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category.is-category-level-expert strong {
    color: #2563eb;
}

@media (max-width: 767px) {
    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-status-dot {
        width: 12px;
        height: 12px;
        box-shadow: 0 0 0 2px #ffffff;
    }

    .page-freelancers .pas-talent-card--upworkish .pas-talent-card-metric.is-category i {
        font-size: 14px;
    }
}

.page-freelancers .pas-talent-card--upworkish .pas-talent-card-avatar { z-index: 0; isolation: isolate; overflow: visible; }
.page-freelancers .pas-talent-card--upworkish .pas-talent-card-status-dot { z-index: 4; }




/* Freelancer Public Profile Detail Page */
.page-freelancers .pas-talent-card--upworkish[data-detail-url] {
    cursor: pointer;
}

.page-freelancers .pas-talent-card--upworkish[data-detail-url]:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.16);
}

.page-freelancers .pas-talent-card-title-link,
.page-freelancers .pas-talent-card-title-link:visited {
    color: inherit;
    text-decoration: none !important;
}

.page-freelancers .pas-freelancer-profile-page-shell {
    display: grid;
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 44px;
}

.page-freelancers .pas-freelancer-profile-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.page-freelancers .pas-freelancer-profile-sidebar {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.page-freelancers .pas-freelancer-profile-sidebar-card,
.page-freelancers .pas-freelancer-profile-main,
.page-freelancers .pas-freelancer-profile-panel,
.page-freelancers .pas-freelancer-gallery-panel {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.page-freelancers .pas-freelancer-profile-sidebar-card {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.page-freelancers .pas-freelancer-profile-sidebar-avatar {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    overflow: visible;
    isolation: isolate;
    background: linear-gradient(135deg, #dfe7f4, #edf4ef);
}

.page-freelancers .pas-freelancer-profile-sidebar-avatar img {
    position: relative;
    z-index: 1;
    border-radius: inherit;
}

.page-freelancers .pas-freelancer-profile-sidebar-avatar .pas-marketplace-avatar-fallback {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.page-freelancers .pas-freelancer-profile-status-dot {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #ffffff, 0 2px 6px rgba(15, 23, 42, 0.16);
    z-index: 4;
}

.page-freelancers .pas-freelancer-profile-status-dot.is-online {
    background: #59c54b;
}

.page-freelancers .pas-freelancer-profile-status-dot.is-offline {
    background: #d65b5b;
}

.page-freelancers .pas-freelancer-profile-sidebar-avatar img,
.page-freelancers .pas-freelancer-profile-gallery-media img,
.page-freelancers .pas-freelancer-gallery-stage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.page-freelancers .pas-freelancer-profile-sidebar-copy {
    display: grid;
    gap: 10px;
}

.page-freelancers .pas-freelancer-profile-sidebar-topline,
.page-freelancers .pas-freelancer-profile-socials,
.page-freelancers .pas-freelancer-profile-payment-list,
.page-freelancers .pas-freelancer-profile-pill-row,
.page-freelancers .pas-freelancer-profile-service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-freelancers .pas-freelancer-profile-sidebar-copy h1,
.page-freelancers .pas-freelancer-profile-panel-head h2,
.page-freelancers .pas-freelancer-gallery-copy h3 {
    margin: 0;
    color: #0f172a;
}

.page-freelancers .pas-freelancer-profile-sidebar-copy h1 {
    font-size: clamp(28px, 3vw, 34px);
    line-height: 1.05;
}

.page-freelancers .pas-freelancer-profile-sidebar-copy p,
.page-freelancers .pas-freelancer-profile-copy-card p,
.page-freelancers .pas-freelancer-profile-service-card p,
.page-freelancers .pas-freelancer-profile-gallery-copy p,
.page-freelancers .pas-freelancer-profile-livechat-card p,
.page-freelancers .pas-freelancer-profile-document-copy p {
    margin: 0;
    color: #536277;
    line-height: 1.7;
}

.page-freelancers .pas-freelancer-profile-socials a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    background: #f4f7fb;
    text-decoration: none !important;
    transition: transform 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.page-freelancers .pas-freelancer-profile-socials a:hover,
.page-freelancers .pas-freelancer-profile-socials a:focus-visible {
    background: #e8f3eb;
    color: #12803a;
    transform: translateY(-1px);
    outline: 0;
}

.page-freelancers .pas-freelancer-profile-socials a.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.page-freelancers .pas-freelancer-profile-nav {
    display: grid;
    gap: 8px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.page-freelancers .pas-freelancer-profile-nav-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.page-freelancers .pas-freelancer-profile-nav-item:hover,
.page-freelancers .pas-freelancer-profile-nav-item:focus-visible,
.page-freelancers .pas-freelancer-profile-nav-item.is-active {
    background: rgba(22, 163, 74, 0.08);
    color: #137333;
    outline: 0;
}

.page-freelancers .pas-freelancer-profile-main {
    display: grid;
    padding: 24px;
}

.page-freelancers .pas-freelancer-profile-panel {
    display: none;
    gap: 20px;
    animation: pasFreelancerPanelIn 0.22s ease;
}

.page-freelancers .pas-freelancer-profile-panel.is-active {
    display: grid;
}

.page-freelancers .pas-freelancer-profile-panel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.page-freelancers .pas-freelancer-profile-panel-head span,
.page-freelancers .pas-freelancer-profile-block-head span,
.page-freelancers .pas-freelancer-gallery-copy span,
.page-freelancers .pas-freelancer-profile-summary-card span,
.page-freelancers .pas-freelancer-profile-contact-card span {
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-freelancers .pas-freelancer-profile-summary-grid,
.page-freelancers .pas-freelancer-profile-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.page-freelancers .pas-freelancer-profile-summary-card,
.page-freelancers .pas-freelancer-profile-info-card,
.page-freelancers .pas-freelancer-profile-block-card,
.page-freelancers .pas-freelancer-profile-payment-card,
.page-freelancers .pas-freelancer-profile-livechat-card,
.page-freelancers .pas-freelancer-profile-contact-card,
.page-freelancers .pas-freelancer-profile-service-card,
.page-freelancers .pas-freelancer-profile-document-card,
.page-freelancers .pas-freelancer-profile-copy-card {
    display: grid;
    gap: 12px;
    padding: 18px 20px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.page-freelancers .pas-freelancer-profile-summary-card strong,
.page-freelancers .pas-freelancer-profile-contact-card strong {
    color: #0f172a;
    font-size: 16px;
    line-height: 1.4;
}

.page-freelancers .pas-freelancer-profile-section-grid,
.page-freelancers .pas-freelancer-profile-hire-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.page-freelancers .pas-freelancer-profile-bullet-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: #334155;
}

.page-freelancers .pas-freelancer-profile-language-list,
.page-freelancers .pas-freelancer-profile-stack {
    display: grid;
    gap: 14px;
}

.page-freelancers .pas-freelancer-profile-language-item,
.page-freelancers .pas-freelancer-profile-service-head,
.page-freelancers .pas-freelancer-profile-document-actions,
.page-freelancers .pas-freelancer-profile-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.page-freelancers .pas-freelancer-profile-language-item span,
.page-freelancers .pas-freelancer-profile-service-head span,
.page-freelancers .pas-freelancer-profile-document-copy small {
    color: #64748b;
    font-size: 14px;
}

.page-freelancers .pas-freelancer-profile-document-grid,
.page-freelancers .pas-freelancer-profile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.page-freelancers .pas-freelancer-profile-gallery-card {
    border: 0;
    padding: 0;
    background: #f8fafc;
    text-align: left;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.page-freelancers .pas-freelancer-profile-gallery-card:hover,
.page-freelancers .pas-freelancer-profile-gallery-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    outline: 0;
}

.page-freelancers .pas-freelancer-profile-gallery-media {
    aspect-ratio: 1.18;
    background: #e5ebf3;
    overflow: hidden;
}

.page-freelancers .pas-freelancer-profile-gallery-copy {
    display: grid;
    gap: 8px;
    padding: 16px 18px 18px;
}

.page-freelancers .pas-freelancer-profile-gallery-copy strong,
.page-freelancers .pas-freelancer-profile-service-head strong,
.page-freelancers .pas-freelancer-profile-document-copy strong {
    color: #0f172a;
    font-size: 18px;
    line-height: 1.3;
}

.page-freelancers .pas-freelancer-empty-inline {
    color: #64748b;
    font-size: 14px;
}

.page-freelancers .pas-freelancer-profile-empty-state {
    min-height: 180px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
    color: #64748b;
    background: #f8fafc;
    border: 1px dashed rgba(15, 23, 42, 0.16);
}

.page-freelancers .pas-freelancer-profile-empty-state i {
    font-size: 24px;
    color: #16a34a;
}

.page-freelancers .pas-freelancer-profile-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-freelancers .pas-freelancer-profile-livechat-card {
    align-items: center;
}

.page-freelancers .pas-freelancer-gallery-modal[hidden] {
    display: none !important;
}

.page-freelancers .pas-freelancer-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 24px;
}

.page-freelancers .pas-freelancer-gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 28, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-freelancers .pas-freelancer-gallery-panel {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
}

.page-freelancers .pas-freelancer-gallery-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 18px;
    align-items: stretch;
}

.page-freelancers .pas-freelancer-gallery-stage {
    min-height: 520px;
    background: #eef2f7;
}

.page-freelancers .pas-freelancer-gallery-copy {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px;
    background: #f8fafc;
}

.page-freelancers .pas-freelancer-gallery-close,
.page-freelancers .pas-freelancer-gallery-arrow {
    width: 44px;
    height: 44px;
    border: 0;
    background: rgba(15, 23, 42, 0.08);
    color: #111827;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.page-freelancers .pas-freelancer-gallery-close:hover,
.page-freelancers .pas-freelancer-gallery-close:focus-visible {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
    outline: 0;
}

.page-freelancers .pas-freelancer-gallery-arrow:hover,
.page-freelancers .pas-freelancer-gallery-arrow:focus-visible {
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
    outline: 0;
}

@keyframes pasFreelancerPanelIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .page-freelancers .pas-freelancer-profile-summary-grid,
    .page-freelancers .pas-freelancer-profile-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-freelancers .pas-freelancer-profile-document-grid,
    .page-freelancers .pas-freelancer-profile-gallery-grid,
    .page-freelancers .pas-freelancer-gallery-content {
        grid-template-columns: 1fr;
    }

    .page-freelancers .pas-freelancer-gallery-stage {
        min-height: 420px;
    }
}

@media (max-width: 991px) {
    .page-freelancers .pas-freelancer-profile-layout,
    .page-freelancers .pas-freelancer-profile-section-grid,
    .page-freelancers .pas-freelancer-profile-hire-grid {
        grid-template-columns: 1fr;
    }

    .page-freelancers .pas-freelancer-profile-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 767px) {
    .page-freelancers .pas-freelancer-profile-page-shell {
        padding-top: 22px;
        gap: 18px;
    }

    .page-freelancers .pas-freelancer-profile-sidebar-card,
    .page-freelancers .pas-freelancer-profile-main,
    .page-freelancers .pas-freelancer-profile-summary-card,
    .page-freelancers .pas-freelancer-profile-info-card,
    .page-freelancers .pas-freelancer-profile-block-card,
    .page-freelancers .pas-freelancer-profile-payment-card,
    .page-freelancers .pas-freelancer-profile-livechat-card,
    .page-freelancers .pas-freelancer-profile-contact-card,
    .page-freelancers .pas-freelancer-profile-service-card,
    .page-freelancers .pas-freelancer-profile-document-card,
    .page-freelancers .pas-freelancer-profile-copy-card {
        padding: 16px;
    }

    .page-freelancers .pas-freelancer-profile-summary-grid,
    .page-freelancers .pas-freelancer-profile-contact-grid,
    .page-freelancers .pas-freelancer-profile-document-grid,
    .page-freelancers .pas-freelancer-profile-gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-freelancers .pas-freelancer-profile-nav-item {
        min-height: 44px;
        font-size: 14px;
    }

    .page-freelancers .pas-freelancer-profile-language-item,
    .page-freelancers .pas-freelancer-profile-service-head,
    .page-freelancers .pas-freelancer-profile-document-actions,
    .page-freelancers .pas-freelancer-profile-block-head,
    .page-freelancers .pas-freelancer-gallery-panel {
        grid-template-columns: 1fr;
        display: grid;
    }

    .page-freelancers .pas-freelancer-gallery-modal[hidden] {
    display: none !important;
}

.page-freelancers .pas-freelancer-gallery-modal {
        padding: 8px;
        align-items: flex-end;
    }

    .page-freelancers .pas-freelancer-gallery-panel {
        width: 100%;
        gap: 12px;
        padding: 12px;
        max-height: calc(100vh - 8px);
        overflow: auto;
    }

    .page-freelancers .pas-freelancer-gallery-stage {
        min-height: 280px;
    }
}
/* Freelancer Sidebar Premium Pass */
.page-freelancers .pas-freelancer-profile-sidebar {
    gap: 14px;
}

.page-freelancers .pas-freelancer-profile-sidebar-card {
    position: relative;
    gap: 16px;
    padding: 26px 24px 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.page-freelancers .pas-freelancer-profile-sidebar-card::after {
    content: '';
    position: absolute;
    inset: auto 24px 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.10), rgba(15, 23, 42, 0));
}

.page-freelancers .pas-freelancer-profile-sidebar-avatar {
    width: 104px;
    height: 104px;
    border: 4px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.page-freelancers .pas-freelancer-profile-sidebar-copy {
    gap: 8px;
}

.page-freelancers .pas-freelancer-profile-sidebar-topline {
    gap: 8px;
}

.page-freelancers .pas-freelancer-profile-sidebar-copy h1 {
    font-size: clamp(30px, 3.2vw, 36px);
    letter-spacing: -0.03em;
}

.page-freelancers .pas-freelancer-profile-sidebar-copy p {
    max-width: 24ch;
    font-size: 15px;
    line-height: 1.55;
    color: #4b5563;
}

.page-freelancers .pas-freelancer-profile-socials {
    padding-top: 8px;
}

.page-freelancers .pas-freelancer-profile-socials a {
    width: 42px;
    height: 42px;
    background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
}

.page-freelancers .pas-freelancer-profile-nav {
    position: relative;
    gap: 6px;
    padding: 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.page-freelancers .pas-freelancer-profile-nav-item {
    min-height: 50px;
    padding: 0 15px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    border-left: 2px solid transparent;
}

.page-freelancers .pas-freelancer-profile-nav-item i {
    width: 18px;
    text-align: center;
    color: #64748b;
    transition: color 0.18s ease;
}

.page-freelancers .pas-freelancer-profile-nav-item:hover,
.page-freelancers .pas-freelancer-profile-nav-item:focus-visible,
.page-freelancers .pas-freelancer-profile-nav-item.is-active {
    background: linear-gradient(90deg, rgba(22, 163, 74, 0.10), rgba(22, 163, 74, 0.03));
    border-left-color: #16a34a;
    transform: translateX(1px);
}

.page-freelancers .pas-freelancer-profile-nav-item:hover i,
.page-freelancers .pas-freelancer-profile-nav-item:focus-visible i,
.page-freelancers .pas-freelancer-profile-nav-item.is-active i {
    color: #15803d;
}

@media (max-width: 991px) {
    .page-freelancers .pas-freelancer-profile-sidebar-card,
    .page-freelancers .pas-freelancer-profile-nav {
        box-shadow: none;
    }

    .page-freelancers .pas-freelancer-profile-sidebar-copy p {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .page-freelancers .pas-freelancer-profile-sidebar-card {
        padding: 18px 16px 16px;
        gap: 14px;
    }

    .page-freelancers .pas-freelancer-profile-sidebar-avatar {
        width: 88px;
        height: 88px;
    }

    .page-freelancers .pas-freelancer-profile-sidebar-copy h1 {
        font-size: 28px;
    }

    .page-freelancers .pas-freelancer-profile-nav {
        padding: 10px;
    }

    .page-freelancers .pas-freelancer-profile-nav-item {
        min-height: 46px;
        padding: 0 12px;
    }
}
.page-freelancers .pas-freelancer-profile-admin-badge {
    min-width: 92px;
    justify-content: center;
}

.page-freelancers .pas-freelancer-profile-verified-badge {
    min-width: 92px;
    justify-content: center;
}

.page-freelancers .pas-freelancer-profile-admin-badge.is-empty {
    visibility: hidden;
}

.page-freelancers .pas-freelancer-profile-level-badge {
    border: 1px solid transparent;
}

.page-freelancers .pas-freelancer-profile-level-badge.is-category-level-debutant {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.16);
    color: #ea580c;
}

.page-freelancers .pas-freelancer-profile-level-badge.is-category-level-standard {
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.18);
    color: #ca8a04;
}

.page-freelancers .pas-freelancer-profile-level-badge.is-category-level-pro,
.page-freelancers .pas-freelancer-profile-level-badge.is-category-level-expert {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.16);
    color: #2563eb;
}

@media (max-width: 767px) {
    .page-freelancers .pas-freelancer-profile-status-dot {
        top: 3px;
        left: 3px;
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 2px #ffffff;
    }

    .page-freelancers .pas-freelancer-profile-admin-badge,
    .page-freelancers .pas-freelancer-profile-verified-badge {
        min-width: 78px;
    }
}
.page-freelancers .pas-freelancer-profile-contact-list {
    display: grid;
    gap: 12px;
}

.page-freelancers .pas-freelancer-profile-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
}

.page-freelancers .pas-freelancer-profile-contact-row i {
    width: 16px;
    margin-top: 2px;
    color: #64748b;
    font-size: 14px;
    text-align: center;
    flex: 0 0 16px;
}

.page-freelancers .pas-freelancer-profile-contact-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.page-freelancers .pas-freelancer-profile-contact-copy span {
    color: #64748b;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-freelancers .pas-freelancer-profile-contact-copy strong {
    color: #0f172a;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
    word-break: break-word;
}

.page-freelancers .pas-freelancer-profile-sidebar-card,
.page-freelancers .pas-freelancer-profile-sidebar-avatar {
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.page-freelancers .pas-freelancer-profile-sidebar-card:hover {
    border-color: rgba(22, 163, 74, 0.28);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(22, 163, 74, 0.12);
}

.page-freelancers .pas-freelancer-profile-sidebar-card:hover .pas-freelancer-profile-sidebar-avatar {
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14), 0 0 0 2px rgba(22, 163, 74, 0.2);
    border-color: rgba(34, 197, 94, 0.7);
}

@media (max-width: 767px) {
    .page-freelancers .pas-freelancer-profile-contact-list {
        gap: 10px;
    }

    .page-freelancers .pas-freelancer-profile-contact-copy strong {
        font-size: 12px;
    }
}

.page-freelancers .pas-freelancer-profile-nav-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.page-freelancers .pas-freelancer-profile-text-flow {
    display: grid;
    gap: 24px;
}

.page-freelancers .pas-freelancer-profile-text-block {
    display: grid;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.page-freelancers .pas-freelancer-profile-text-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.page-freelancers .pas-freelancer-profile-text-block h3 {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.3;
}

.page-freelancers .pas-freelancer-profile-text-block p,
.page-freelancers .pas-freelancer-profile-text-block li {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
}

.page-freelancers .pas-freelancer-profile-language-list.is-textual {
    gap: 10px;
}

.page-freelancers .pas-freelancer-profile-language-list.is-textual .pas-freelancer-profile-language-item {
    justify-content: flex-start;
}

.page-freelancers .pas-freelancer-profile-language-list.is-textual .pas-freelancer-profile-language-item span {
    font-size: 13px;
}

.page-freelancers .pas-freelancer-profile-text-flow .pas-freelancer-empty-inline {
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .page-freelancers .pas-freelancer-profile-nav-card {
        box-shadow: none;
    }
}
.page-freelancers .pas-freelancer-profile-inline-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.page-freelancers .pas-freelancer-profile-inline-head span {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-freelancers .pas-freelancer-profile-record-list,
.page-freelancers .pas-freelancer-profile-project-list {
    display: grid;
    gap: 16px;
}

.page-freelancers .pas-freelancer-profile-record-item,
.page-freelancers .pas-freelancer-profile-project-row {
    display: grid;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.page-freelancers .pas-freelancer-profile-record-item:last-child,
.page-freelancers .pas-freelancer-profile-project-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.page-freelancers .pas-freelancer-profile-record-copy,
.page-freelancers .pas-freelancer-profile-project-copy {
    display: grid;
    gap: 4px;
}

.page-freelancers .pas-freelancer-profile-record-copy strong,
.page-freelancers .pas-freelancer-profile-project-copy strong {
    color: #0f172a;
    font-size: 17px;
    line-height: 1.35;
}

.page-freelancers .pas-freelancer-profile-record-copy p,
.page-freelancers .pas-freelancer-profile-project-copy p,
.page-freelancers .pas-freelancer-profile-record-copy small {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.page-freelancers .pas-freelancer-profile-record-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.page-freelancers .pas-freelancer-profile-project-row {
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: transform 0.16s ease, opacity 0.16s ease;
}

.page-freelancers .pas-freelancer-profile-project-row:hover,
.page-freelancers .pas-freelancer-profile-project-row:focus-visible {
    transform: translateY(-1px);
    opacity: 0.96;
    outline: 0;
}

.page-freelancers .pas-freelancer-profile-project-thumb {
    width: 120px;
    aspect-ratio: 1.1;
    overflow: hidden;
    background: #e5ebf3;
}

.page-freelancers .pas-freelancer-profile-project-thumb img,
.page-freelancers .pas-freelancer-profile-project-thumb .pas-marketplace-avatar-fallback {
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .page-freelancers .pas-freelancer-profile-inline-head {
        display: grid;
        justify-content: start;
    }

    .page-freelancers .pas-freelancer-profile-project-row {
        grid-template-columns: 1fr;
    }

    .page-freelancers .pas-freelancer-profile-project-thumb {
        width: 100%;
    }
}
.page-freelancers .pas-freelancer-profile-level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-left: 12px;
    padding-right: 14px;
}

.page-freelancers .pas-freelancer-profile-level-badge i {
    font-size: 13px;
    line-height: 1;
}

.page-freelancers .pas-freelancer-profile-level-badge span {
    line-height: 1;
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-hire-grid {
    grid-template-columns: 1fr;
    gap: 28px;
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-service-card,
.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-payment-card {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-stack {
    gap: 18px;
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-service-card {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-service-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-service-head {
    align-items: flex-start;
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-service-head strong,
.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-payment-card h3 {
    font-size: 20px;
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-service-meta {
    gap: 10px 12px;
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-payment-card {
    justify-items: start;
    gap: 14px;
    padding-top: 6px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-freelancer-profile-payment-list {
    gap: 10px;
}

.page-freelancers .pas-freelancer-profile-panel[data-profile-tab-panel="engager"] .pas-marketplace-button {
    justify-self: center;
    margin-top: 8px;
}
.page-freelancers .pas-freelancer-profile-level-badge {
    padding: 0;
    min-height: 0;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    justify-content: flex-start;
    box-shadow: none;
}
.page-freelancers .pas-freelancer-profile-sidebar-topline {
    justify-content: flex-start;
    align-items: center;
}

.page-freelancers .pas-freelancer-profile-admin-badge.is-empty {
    display: none;
    min-width: 0;
    width: 0;
    margin: 0;
    padding: 0;
}

.page-freelancers .pas-freelancer-profile-level-badge {
    margin-left: 0;
    align-self: flex-start;
}
/* Freelancer Pagination Final */
.page-freelancers .pas-marketplace-pagination {
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 6px;
}

.page-freelancers .pas-marketplace-page-button.is-next {
    width: auto;
    min-width: 72px;
    padding: 0 18px;
}

.page-freelancers .pas-marketplace-page-button.is-disabled {
    opacity: 0.45;
    cursor: default;
}

@media (max-width: 767px) {
    .page-freelancers .pas-marketplace-pagination {
        gap: 8px;
        padding-top: 14px;
        flex-wrap: wrap;
    }

    .page-freelancers .pas-marketplace-page-button {
        min-width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .page-freelancers .pas-marketplace-page-button.is-next {
        min-width: 68px;
        padding: 0 14px;
    }
}
/* Freelancer Gallery Modal Premium Final */
.page-freelancers .pas-freelancer-gallery-modal[hidden] {
    display: none !important;
}
.page-freelancers .pas-freelancer-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 20px;
}
.page-freelancers .pas-freelancer-gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.56);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
}
.page-freelancers .pas-freelancer-gallery-panel {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100vw - 40px));
    max-height: min(860px, calc(100vh - 40px));
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(17, 25, 40, 0.74), rgba(10, 16, 28, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    color: #f8fafc;
    overflow: hidden;
    animation: pasFreelancerGalleryIn 0.22s ease;
    outline: none;
}
.page-freelancers .pas-freelancer-gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.page-freelancers .pas-freelancer-gallery-toolbar-copy {
    display: grid;
    gap: 4px;
}
.page-freelancers .pas-freelancer-gallery-toolbar-copy span {
    margin: 0;
    color: rgba(226, 232, 240, 0.7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.page-freelancers .pas-freelancer-gallery-toolbar-copy strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}
.page-freelancers .pas-freelancer-gallery-toolbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.page-freelancers .pas-freelancer-gallery-control,
.page-freelancers .pas-freelancer-gallery-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #f8fafc;
    cursor: pointer;
    transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.page-freelancers .pas-freelancer-gallery-control:hover,
.page-freelancers .pas-freelancer-gallery-control:focus-visible,
.page-freelancers .pas-freelancer-gallery-arrow:hover,
.page-freelancers .pas-freelancer-gallery-arrow:focus-visible {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
}
.page-freelancers .pas-freelancer-gallery-control.is-close:hover,
.page-freelancers .pas-freelancer-gallery-control.is-close:focus-visible {
    background: rgba(220, 38, 38, 0.16);
    border-color: rgba(248, 113, 113, 0.22);
    color: #fca5a5;
}
.page-freelancers .pas-freelancer-gallery-control.is-zoom:hover,
.page-freelancers .pas-freelancer-gallery-control.is-zoom:focus-visible,
.page-freelancers .pas-freelancer-gallery-control.is-zoom.is-active,
.page-freelancers .pas-freelancer-gallery-arrow:hover,
.page-freelancers .pas-freelancer-gallery-arrow:focus-visible {
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(74, 222, 128, 0.22);
    color: #bbf7d0;
}
.page-freelancers .pas-freelancer-gallery-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    gap: 18px;
    min-height: 0;
    align-items: stretch;
}
.page-freelancers .pas-freelancer-gallery-stage-shell {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 0;
}
.page-freelancers .pas-freelancer-gallery-stage {
    position: relative;
    min-height: min(66vh, 620px);
    height: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.10);
}
.page-freelancers .pas-freelancer-gallery-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}
.page-freelancers .pas-freelancer-gallery-stage.is-zoomed img {
    transform: scale(1.35);
    cursor: zoom-out;
}
.page-freelancers .pas-freelancer-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.page-freelancers .pas-freelancer-gallery-arrow.is-prev { left: 14px; }
.page-freelancers .pas-freelancer-gallery-arrow.is-next { right: 14px; }
.page-freelancers .pas-freelancer-gallery-copy {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 0;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.10);
    overflow: auto;
}
.page-freelancers .pas-freelancer-gallery-copy span {
    color: rgba(226, 232, 240, 0.76);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.page-freelancers .pas-freelancer-gallery-copy h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.1;
}
.page-freelancers .pas-freelancer-gallery-copy p {
    margin: 0;
    color: rgba(226, 232, 240, 0.92);
    font-size: 15px;
    line-height: 1.75;
}
@keyframes pasFreelancerGalleryIn {
    from { opacity: 0; transform: translateY(10px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 991px) {
    .page-freelancers .pas-freelancer-gallery-modal { padding: 14px; }
    .page-freelancers .pas-freelancer-gallery-panel { width: min(900px, calc(100vw - 28px)); max-height: calc(100vh - 28px); }
    .page-freelancers .pas-freelancer-gallery-content { grid-template-columns: 1fr; }
    .page-freelancers .pas-freelancer-gallery-copy { max-height: 220px; }
    .page-freelancers .pas-freelancer-gallery-stage { min-height: min(54vh, 460px); }
}
@media (max-width: 767px) {
    .page-freelancers .pas-freelancer-gallery-modal { padding: 8px; }
    .page-freelancers .pas-freelancer-gallery-panel { width: calc(100vw - 16px); max-height: calc(100vh - 16px); gap: 14px; padding: 14px; border-radius: 22px; }
    .page-freelancers .pas-freelancer-gallery-toolbar { gap: 10px; }
    .page-freelancers .pas-freelancer-gallery-toolbar-copy strong { font-size: 13px; }
    .page-freelancers .pas-freelancer-gallery-control,
    .page-freelancers .pas-freelancer-gallery-arrow { width: 42px; height: 42px; }
    .page-freelancers .pas-freelancer-gallery-stage { min-height: min(42vh, 320px); border-radius: 20px; }
    .page-freelancers .pas-freelancer-gallery-arrow.is-prev { left: 10px; }
    .page-freelancers .pas-freelancer-gallery-arrow.is-next { right: 10px; }
    .page-freelancers .pas-freelancer-gallery-copy { padding: 16px; border-radius: 20px; max-height: 190px; }
    .page-freelancers .pas-freelancer-gallery-copy h3 { font-size: 22px; }
    .page-freelancers .pas-freelancer-gallery-copy p { font-size: 14px; line-height: 1.65; }
}
/* Courses Toolbar Compact And Trainer Avatar Final */
.page-formations .pas-course-toolbar-panel {
    gap: 12px;
    padding: 14px 16px;
}

.page-formations .pas-course-toolbar-panel .pas-marketplace-toolbar {
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(150px, 0.64fr));
}

.page-formations .pas-course-toolbar-panel .pas-marketplace-field {
    gap: 4px;
}

.page-formations .pas-course-toolbar-panel .pas-marketplace-field span {
    font-size: 9px;
}

.page-formations .pas-course-toolbar-panel .pas-marketplace-field input,
.page-formations .pas-course-toolbar-panel .pas-marketplace-field select {
    min-height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 12.5px;
}

.page-formations .pas-course-card-trainer-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.page-formations .pas-course-card-trainer-avatar {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    overflow: hidden;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dfe8f4, #eef4fa);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.page-formations .pas-course-card-trainer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-formations .pas-course-card-trainer-avatar-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #334155;
    font-size: 11px;
    font-weight: 700;
}

.page-formations .pas-course-card-trainer {
    margin: 0;
    min-width: 0;
    font-size: 13px;
    line-height: 1.35;
}

.page-formations .pas-course-card-trainer a {
    display: inline-block;
}

@media (max-width: 1024px) {
    .page-formations .pas-course-toolbar-panel .pas-marketplace-toolbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .page-formations .pas-course-toolbar-panel {
        padding: 12px;
    }

    .page-formations .pas-course-toolbar-panel .pas-marketplace-toolbar {
        grid-template-columns: 1fr;
        padding: 8px;
        gap: 8px;
    }

    .page-formations .pas-course-toolbar-panel .pas-marketplace-field input,
    .page-formations .pas-course-toolbar-panel .pas-marketplace-field select {
        min-height: 34px;
        font-size: 12px;
    }

    .page-formations .pas-course-card-trainer-avatar {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }
}
/* Courses Card Pixel Match Final */
.page-formations .pas-course-card--editorial {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 20px 20px 24px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #dfe4ef;
    box-shadow: none;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.page-formations .pas-course-card--editorial:hover {
    transform: translateY(-1px);
    border-color: #cfd8ea;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.page-formations .pas-course-card--editorial .pas-course-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #eef2f9;
}

.page-formations .pas-course-card--editorial .pas-course-card-media img,
.page-formations .pas-course-card--editorial .pas-course-card-media .pas-marketplace-avatar-fallback {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.page-formations .pas-course-card--editorial .pas-course-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
    padding: 18px 2px 0;
}

.page-formations .pas-course-card--editorial h3 {
    margin: 0;
}

.page-formations .pas-course-card--editorial .pas-course-card-title,
.page-formations .pas-course-card--editorial .pas-course-card-title:visited {
    color: #262b45;
    text-decoration: none;
    font-size: clamp(19px, 1.45vw, 24px);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.page-formations .pas-course-card--editorial .pas-course-card-trainer,
.page-formations .pas-course-card--editorial .pas-course-card-trainer a,
.page-formations .pas-course-card--editorial .pas-course-card-trainer a:visited {
    margin: 0;
    color: #737a92;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

.page-formations .pas-course-card--editorial .pas-course-card-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 2px;
}

.page-formations .pas-course-card--editorial .pas-course-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #d8dfeb;
    background: #ffffff;
    color: #6e758d;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.page-formations .pas-course-card--editorial .pas-course-card-pill.is-primary {
    background: #d7f2f1;
    border-color: #d7f2f1;
    color: #166779;
    font-weight: 800;
}

.page-formations .pas-course-card--editorial .pas-course-card-pill.is-rating {
    color: #5f667d;
}

.page-formations .pas-course-card--editorial .pas-course-card-pill.is-rating i {
    color: #d88613;
    font-size: 12px;
}

.page-formations .pas-course-card--editorial .pas-course-card-pill.is-count {
    color: #7b8198;
    font-weight: 500;
}

.page-formations .pas-course-card--editorial .pas-course-card-pricing {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.page-formations .pas-course-card--editorial .pas-course-card-pricing strong {
    font-size: clamp(20px, 1.6vw, 30px);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #242947;
}

.page-formations .pas-course-card--editorial .pas-course-card-pricing span {
    font-size: 15px;
    color: #8a92a7;
    text-decoration: line-through;
}

@media (max-width: 1024px) {
    .page-formations .pas-course-card--editorial {
        padding: 18px 18px 20px;
        border-radius: 24px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-body {
        padding-top: 16px;
    }
}

@media (max-width: 767px) {
    .page-formations .pas-course-card--editorial {
        padding: 16px 16px 18px;
        border-radius: 22px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-media {
        border-radius: 14px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-body {
        gap: 9px;
        padding-top: 14px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-pill {
        min-height: 34px;
        padding: 0 12px;
        font-size: 12px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-pricing {
        padding-top: 6px;
    }
}


.page-freelancers .pas-talent-social-badge.is-certified-icon {
    width: 22px;
    min-width: 22px;
    min-height: 22px;
    height: 22px;
    padding: 0;
    justify-content: center;
    gap: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #3b82f6, #2563eb);
    border-color: rgba(37, 99, 235, 0.38);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.18);
}

.page-freelancers .pas-talent-social-badge.is-certified-icon i {
    font-size: 11px;
    color: #ffffff;
}

.page-freelancers .pas-freelancer-profile-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-freelancers .pas-freelancer-profile-name-row h1 {
    margin: 0;
}

.page-freelancers .pas-freelancer-profile-verified-badge.is-certified-icon {
    width: 22px;
    min-width: 22px;
    min-height: 22px;
    height: 22px;
    padding: 0;
    justify-content: center;
    gap: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #3b82f6, #2563eb);
    border: 1px solid rgba(37, 99, 235, 0.38);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.18);
}

.page-freelancers .pas-freelancer-profile-verified-badge.is-certified-icon i {
    font-size: 11px;
    color: #ffffff;
}

/* Formations cards compact pass */
.page-formations .pas-course-card--editorial {
    padding: 16px 16px 18px;
    border-radius: 22px;
}

.page-formations .pas-course-card--editorial .pas-course-card-media {
    border-radius: 14px;
}

.page-formations .pas-course-card--editorial .pas-course-card-body {
    gap: 8px;
    padding: 14px 1px 0;
}

.page-formations .pas-course-card--editorial .pas-course-card-title,
.page-formations .pas-course-card--editorial .pas-course-card-title:visited {
    font-size: clamp(17px, 1.15vw, 21px);
    line-height: 1.18;
}

.page-formations .pas-course-card--editorial .pas-course-card-trainer,
.page-formations .pas-course-card--editorial .pas-course-card-trainer a,
.page-formations .pas-course-card--editorial .pas-course-card-trainer a:visited {
    font-size: 12px;
}

.page-formations .pas-course-card--editorial .pas-course-card-badge-row {
    gap: 7px;
    margin-top: 0;
}

.page-formations .pas-course-card--editorial .pas-course-card-pill {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 9px;
    font-size: 12px;
}

.page-formations .pas-course-card--editorial .pas-course-card-pricing {
    padding-top: 4px;
}

.page-formations .pas-course-card--editorial .pas-course-card-pricing strong {
    font-size: clamp(18px, 1.35vw, 26px);
}

.page-formations .pas-course-card--editorial .pas-course-card-pricing span {
    font-size: 13px;
}

@media (max-width: 1024px) {
    .page-formations .pas-course-card--editorial {
        padding: 15px 15px 17px;
        border-radius: 20px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-media {
        border-radius: 13px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-body {
        padding-top: 13px;
    }
}

@media (max-width: 767px) {
    .page-formations .pas-course-card--editorial {
        padding: 14px 14px 16px;
        border-radius: 18px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-media {
        border-radius: 12px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-body {
        gap: 7px;
        padding-top: 12px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-title,
    .page-formations .pas-course-card--editorial .pas-course-card-title:visited {
        font-size: 16px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-pill {
        min-height: 32px;
        padding: 0 10px;
        border-radius: 8px;
        font-size: 11px;
    }

    .page-formations .pas-course-card--editorial .pas-course-card-pricing strong {
        font-size: 20px;
    }
}
