.section {
    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    > h1, .header > h1 {
        font-size: 24px;
        font-weight: 300;
        margin-bottom: 8px;
    }
    margin-bottom: 15px;
}


.profile-header {
    display: flex;
    align-items: stretch;
    color: white;
    margin-top: 50px;
    margin-bottom: 30px;
    > img {
        height: 260px;
        border-radius: 999px;
    }

    >div {
        display: flex;
        flex-direction: column;
        padding: 30px;
        h1 {
            display: flex;
            font-size: 50px;
            font-weight: 400;
            align-items: center;
            img {
                margin-right: 8px;
                height: 48px;
                border-radius: 400px;
            }
        }
        h4 {
            font-size: 24px;
        }
        >div:last-child {
            margin-top: auto;

            p {
                font-size: 18px;
                font-weight: 400;
                max-width: 600px;
            }
        }
    }

    position: relative;

    &:before, &:after {
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 25%;
        background: #000a;
        position: absolute;
        border-radius: var(--border-radius);
        z-index: -1;
        filter: blur(100px);
        transform: scale(0.8);
    }
    &:after {
        top: auto;
        bottom: 0;
    }
}

.profile-content {
    margin-top: 30px;
    display: flex;
    gap: 40px;
    > * {
        flex: 1;
    }
    .left {
        a.website {
            --mult: 0.2;
            padding: 18px;
            background: var(--brand-accent);
            border-radius: var(--border-radius);
            color: white;
            position: relative;
            display: flex;
            overflow: hidden;
            margin-bottom: 12px;
            &:hover {
                filter: brightness(1.1);
                transform: scale(1.02);
            }
        }
        max-width: 450px;
        .release-grid {
            display: grid;
            gap: 10px;
            grid-template-columns: 1fr 1fr 1fr;
            h1 {
                font-size: 20px;
            }
        }
    }
    .right {
        .release-grid {
            display: grid;
            gap: 10px;
            grid-template-columns: 1fr 1fr 1fr;
            h1 {
                font-size: 20px;
            }
        }
    }
    .links {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 601px) {
    .profile-header, .profile-content {
        display: flex;
        flex-direction: column;
    }
    .profile-header > img {
        width: 70vw;
        height: auto;
    }
    .profile-header {
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 50px;
        &:before, &:after {
            display: none;
        }
        color: #333;
        > div {
            align-items: center;

            padding: 0px;
            margin-top: 20px;
            > div:last-child:has(p) {
                margin-top: 20px;
            }
        }
    }

    .profile-content:has(.section.releases) {
        .section.designs {
            display: none;
        }
    }

    .release-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .profile-content .left {
        width: 100%;
        max-width: 9999px;
    }
    .profile-content .right {
        margin-left: 0px;
    }
}

/*# sourceMappingURL=profile.css.map*/