.profile-page__wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px clamp(16px, 4vw, 40px) 56px;
}

.profile-page__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--st-muted);
}

.profile-page__breadcrumb a {
    color: var(--st-accent);
    text-decoration: none;
    font-weight: 600;
}

.profile-page__breadcrumb a:hover {
    text-decoration: underline;
}

.profile-page__card {
    background: var(--st-surface);
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius);
    box-shadow: var(--st-shadow);
    overflow: hidden;
}

.profile-page__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 0;
}

.profile-page__gallery {
    min-height: 420px;
    border-radius: 0;
}

.profile-page__gallery--single {
    border-radius: 0;
}

.profile-page__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.profile-page__gallery .slider-img {
    cursor: zoom-in;
}

.profile-page__bio-wrap.bio {
    margin: 0;
}

.profile-page__bio-wrap .bio-text {
    color: var(--st-text);
    font-size: 15px;
    line-height: 1.6;
}

.profile-page__similar .profiles-grid {
    margin-top: 0;
}

.profile-page__similar .profile-title-link {
    position: relative;
    z-index: 2;
}

.profile-page__info {
    padding: 28px clamp(20px, 4vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-page__platform {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--st-accent);
}

.profile-page__name {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.profile-page__username {
    margin: -6px 0 0;
    color: var(--st-muted);
    font-size: 16px;
}

.profile-page__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.profile-page__stat {
    min-width: 72px;
    padding: 10px 14px;
    border-radius: 14px;
    background: var(--st-input-bg);
    border: 1px solid var(--st-border);
}

.profile-page__stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.profile-page__stat-label {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--st-muted);
    font-weight: 600;
}

.profile-page__badges,
.profile-page__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-page__category {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: var(--st-radius-pill);
    background: var(--st-accent-soft);
    color: var(--st-accent);
    font-size: 13px;
    font-weight: 600;
}

.profile-page__bio {
    color: var(--st-text);
    font-size: 15px;
    line-height: 1.6;
}

.profile-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 4px;
    padding: 14px 24px;
    border-radius: var(--st-radius-pill);
    background: var(--st-accent);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease;
}

.profile-page__cta:hover {
    background: var(--st-accent-hover);
    color: #fff;
}

.profile-page__similar {
    margin-top: 40px;
}

.profile-page__similar-title {
    margin: 0 0 20px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (max-width: 900px) {
    .profile-page__wrap {
        padding-top: 16px;
        padding-bottom: 40px;
    }

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

    .profile-page__gallery {
        min-height: 280px;
        max-height: 55vh;
    }

    .profile-page__info {
        padding: 20px 16px 24px;
    }

    .profile-page__stats {
        gap: 8px;
    }

    .profile-page__stat {
        min-width: 0;
        flex: 1 1 calc(50% - 8px);
    }

    .profile-page__cta {
        width: 100%;
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .profile-page__gallery {
        min-height: 260px;
    }

    .profile-page__similar .image-slider {
        height: 300px;
    }
}
