.global-profile-card {
    --page-bg: #f4fbf6;
    --card-bg: #ffffff;
    --card-bg-2: #f7fff9;
    --panel: #ffffff;
    --panel-2: #f2fbf5;
    --line: rgba(22, 163, 74, .12);
    --line-2: rgba(22, 163, 74, .22);
    --text: #132016;
    --soft: #607466;
    --muted: #7b8d82;
    --green: #188d43;
    --gold: #12733a;
    --orange: #22c55e;
    --radius: 19px;
    --radius-sm: 11px;
    --shadow: 0 22px 58px rgba(22, 163, 74, .18), 0 8px 24px rgba(15, 118, 54, .12);
}

.global-profile-card,
.global-profile-card * {
    box-sizing: border-box;
}

.global-profile-card {
    margin: 0;
    display: grid;
    place-items: center;
    color: var(--text);
}

.global-profile-card .gpc-card {
    position: relative;
    width: min(386px, 100%);
    overflow: hidden;
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    background: var(--card-bg); 
}

.global-profile-card .gpc-cover {
    position: relative;
    height: 138px;
    overflow: hidden;
    isolation: isolate;
    z-index: 2;
}


.global-profile-card .gpc-cover-layer {
    position: absolute;
    inset: 0;
    opacity: .30;
    background-image:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, .6) 0 1px, transparent 1.5px),
        radial-gradient(circle at 68% 80%, rgba(255, 255, 255, .5) 0 1px, transparent 1.5px),
        linear-gradient(115deg, transparent 0 39%, rgba(255, 255, 255, .08) 39% 40%, transparent 40% 100%);
}

.global-profile-card .gpc-brand {
    position: absolute;
    left: 14px;
    top: 10px;
    color: #dfeee2;
    font-weight: 1000;
    font-style: italic;
    letter-spacing: -.35px;
    line-height: .78;
    text-transform: uppercase;
}

.global-profile-card .gpc-brand span {
    display: block;
    color: #fff;
}

.global-profile-card .gpc-emblem {
    position: absolute;
    left: 50%;
    top: 16px;
    width: 56px;
    height: 42px;
    transform: translateX(-50%) rotate(-4deg);
    filter: drop-shadow(0 7px 7px rgba(0, 0, 0, .36));
}

.global-profile-card .gpc-cover-title {
    position: absolute;
    inset: 54px 0 auto;
    margin: 0;
    text-align: center;
    color: #fff;
    font-weight: 1000;
    letter-spacing: .8px;
    line-height: .81;
    text-transform: uppercase;
    text-shadow: 0 5px 1px rgba(0, 0, 0, .18), 0 0 18px rgba(22, 163, 74, .12);
}

.global-profile-card .gpc-cover-title span {
    display: block;
}

.global-profile-card .gpc-avatar {
    position: absolute;
    left: 16px;
    top: 108px;
    z-index: 5;
    width: 64px;
    height: 64px;
    padding: 3px;
    border-radius: 16px;
    border: 1px solid rgba(22, 163, 74, .22);
    background: #ffffff;
    box-shadow: 0 15px 28px rgba(22, 163, 74, .22), 0 5px 14px rgba(15, 118, 54, .12);
}

.global-profile-card .gpc-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: #f4fbf6;
}

.global-profile-card .gpc-decor {
    position: absolute;
    right: 22px;
    bottom: -2px;
    color: rgba(255, 255, 255, .10);
    font-weight: 1000;
    letter-spacing: -11px;
    transform: skew(-8deg);
}

.global-profile-card .gpc-content {
    position: relative;
    z-index: 1;
    padding: 36px 13px 13px;
}

.global-profile-card .gpc-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: start;
    padding-left: 76px;
    margin-bottom: 0.5rem;
}

.global-profile-card .gpc-title {
    margin: 0;
    color: #132016;
    line-height: 1.08;
    letter-spacing: -.28px;
    font-weight: 900;
}

.global-profile-card .gpc-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 26px;
    padding: 5px 9px;
    border: 1px solid rgba(22, 163, 74, .16);
    border-radius: 999px;
    background: #f5fff8;
    color: #1f5130;
    font-weight: 850;
    white-space: nowrap;
}

.global-profile-card .gpc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.global-profile-card .gpc-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    border: 1px solid rgba(22, 163, 74, .14);
    border-radius: 8px;
    background: linear-gradient(180deg, #fbfffc, #f3fbf5);
    color: #274632;
    line-height: 1;
    font-weight: 800;
}

.global-profile-card .gpc-tag.is-featured {
    border-color: rgba(22, 163, 74, .30);
    background: linear-gradient(180deg, #eaf8ee, #f6fff8);
    color: #14532d;
}

.global-profile-card .gpc-summary-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 8px;
    margin-bottom: 8px;
}

.global-profile-card .gpc-summary-item {
    min-height: 58px;
    padding: 10px 11px;
    border: 1px solid rgba(22, 163, 74, .13);
    border-radius: 13px;
    background:
        radial-gradient(circle at 100% 0%, rgba(22, 163, 74, .08), transparent 34%),
        linear-gradient(180deg, #ffffff, #f8fffa);
    box-shadow: 0 10px 24px rgba(22, 163, 74, .08), inset 0 1px 0 rgba(255, 255, 255, .85);
}

.global-profile-card .gpc-label {
    display: block;
    color: #7a9181;
    font-weight: 950;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.global-profile-card .gpc-value {
    display: block;
    margin-top: 5px;
    color: #132016;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.25px;
}

.global-profile-card .gpc-value.is-positive {
    color: var(--green);
}

.global-profile-card .gpc-value.is-accent {
    color: var(--gold);
}

.global-profile-card .gpc-subtext {
    display: block;
    margin-top: 4px;
    color: var(--soft);
    font-weight: 700;
    line-height: 1.1;
}

.global-profile-card .gpc-date-strip {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 9px;
    align-items: center;
    padding: 9px 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(22, 163, 74, .13);
    border-radius: 13px;
    background: linear-gradient(180deg, #ffffff, #f8fffa);
    box-shadow: 0 10px 22px rgba(22, 163, 74, .07);
}

.global-profile-card .gpc-date-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #eaf8ee;
    color: #188d43;
}

.global-profile-card .gpc-date-main {
    min-width: 0;
}

.global-profile-card .gpc-date-main strong {
    display: block;
    overflow: hidden;
    color: #132016;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.global-profile-card .gpc-date-main span {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    color: var(--muted);
    font-weight: 750;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.global-profile-card .gpc-countdown {
    color: var(--green);
    font-weight: 950;
    white-space: nowrap;
}

.global-profile-card .gpc-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.global-profile-card .gpc-info-item {
    min-height: 49px;
    padding: 8px 8px;
    border: 1px solid rgba(22, 163, 74, .12);
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(22, 163, 74, .06);
}

.global-profile-card .gpc-info-item .gpc-label {
    letter-spacing: 1px;
}

.global-profile-card .gpc-info-item strong {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    color: #132016;
    line-height: 1.12;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.global-profile-card .gpc-info-item strong.is-positive {
    color: var(--green);
}

.global-profile-card .gpc-info-item strong.is-accent {
    color: var(--gold);
}

.global-profile-card .gpc-fees {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 8px;
}

.global-profile-card .gpc-fee-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    min-height: 41px;
    padding: 8px 10px;
    border: 1px solid rgba(22, 163, 74, .14);
    border-radius: 11px;
    background:
        radial-gradient(circle at 100% 0%, rgba(22, 163, 74, .08), transparent 36%),
        #ffffff;
    box-shadow: 0 8px 18px rgba(22, 163, 74, .06);
}

.global-profile-card .gpc-fee-item span {
    color: #7a9181;
    font-weight: 950;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.global-profile-card .gpc-fee-item strong {
    color: #12733a;
    font-weight: 950;
    white-space: nowrap;
}

.global-profile-card .gpc-awards-panel {
    padding: 10px;
    border: 1px solid rgba(22, 163, 74, .13);
    border-radius: 13px;
    background: linear-gradient(180deg, #ffffff, #f8fffa);
    box-shadow: 0 10px 24px rgba(22, 163, 74, .07);
}

.global-profile-card .gpc-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
}

.global-profile-card .gpc-section-head strong {
    color: #7a9181;
    font-weight: 950;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.global-profile-card .gpc-section-head span {
    color: #8b9a90;
    font-weight: 800;
}

.global-profile-card .gpc-awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.global-profile-card .gpc-award-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 7px;
    align-items: center;
    min-height: 38px;
    padding: 7px;
    border: 1px solid rgba(22, 163, 74, .11);
    border-radius: 10px;
    background: #ffffff;
}

.global-profile-card .gpc-award-item i:not(.innerIco) {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: #eaf8ee;
    color: var(--gold);
    font-style: normal;
}

.global-profile-card .gpc-award-item strong {
    display: block;
    overflow: hidden;
    color: #132016;
    line-height: 1.1;
    font-weight: 900;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.global-profile-card .gpc-award-item span {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    color: #6f8476;
    line-height: 1.1;
    font-weight: 850;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 420px) {
    .global-profile-card {
        place-items: start center;
    }

    .global-profile-card .gpc-card {
        border-radius: 18px;
    }

    .global-profile-card .gpc-cover {
        height: 90px;
    }

    .global-profile-card .gpc-cover-title {
        top: 54px;
    }

    .global-profile-card .gpc-emblem {
        top: 17px;
        width: 52px;
    }

    .global-profile-card .gpc-content {
        padding: 12px 12px 12px;
    }

    .global-profile-card .gpc-heading {
        padding-left: 74px;
    }

    .global-profile-card .gpc-avatar {
        left: 14px;
        top: 60px;
        width: 62px;
        height: 62px;
    }

    .global-profile-card .gpc-title {}

    .global-profile-card .gpc-value {}

    .global-profile-card .gpc-tag {
        padding-inline: 7px;
    }
}

.global-profile-card .gpc-title-area {
    min-width: 0;
}

.global-profile-card .gpc-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    line-height: 1;
}

.global-profile-card .gpc-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: #f5b301;
    white-space: nowrap;
}

.global-profile-card .gpc-stars i {
    font-size: .68rem;
}

.global-profile-card .gpc-rate-value {
    color: #132016;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.global-profile-card .gpc-comment-count {
    color: #7b8d82;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 420px) {
    .global-profile-card .gpc-rating {
        gap: 4px;
        margin-top: 3px;
    }

    .global-profile-card .gpc-stars i {
        font-size: .64rem;
    }
}