.profile-page {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.profile-header {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.profile-header img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    padding: 4px;
    background: linear-gradient(45deg, orange, deeppink, purple);
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.story-card img,
.story-card video {
    width: 100%;
    /*height: 420px;*/
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/*.avatar {*/
/*    width: 140px;*/
/*    height: 140px;*/
/*    border-radius: 50%;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*}*/
