.profile-page .profile {
    max-width: 700px;
    margin: auto;
}
.profile-header {
    display: flex;
    justify-content: center;
    column-gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-direction: row-reverse;
}
.profile-avatar .avatar-img {
    border-radius: 100%;
}
.profile-info {
    text-align: right;
}
.profile-info .profile-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.profile-socials .icon::part(base) {
    border-color: transparent;
    color: inherit;
}
.profile-socials .icon:hover::part(base) {
    --blox-button-hover: var(--blox-gray-300);
}
.profile-socials .icon:active::part(base) {
    --blox-button-active: var(--blox-gray-300);
}
.profile-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    column-gap: 0.5rem;
}
.profile-summary {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}
.profile-section {
    width: 100%;
    padding: 1rem;
    border-top: 4px solid var(--blox-border-color);
}
.profile-section-title {
    font-size: 1.25rem;
}
.profile-section > :last-child {
    margin-bottom: 0;
}
@media (min-width: 576px) {
    .profile-section {
        flex: 50%;
    }
    .profile-section:not(.profile-about) {
        border: 0;
    }
}
.profile-about {
    flex: 0 0 100%;
}
.profile-content-divider {
    display: block;
    margin-bottom: 1.5rem;
}
.profile-posts {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}
@media (min-width: 768px) {
    .profile-posts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}