.profile {
    width: 250px;
}
.profile-content {
    grid-column: 1;
    padding: 1.5rem;
    display: flex;
    justify-content: flex-end;
    text-align: left;
    min-width: 0;

}

.profile h1 {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    color: #365327;
}
.profile h2 {
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}




.profile-item{
    display: flex;
    align-items: center;
    width: 100%;
    height: 20px;
    margin : 0.75rem 0;
    
}
.profile-item p {
    margin-left: 0.5rem;
    overflow-wrap: anywhere;
}

.profile-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.profile a:hover {
    color: var(--accent-hover);
    text-decoration: none;
}

.avatar {
    --size: 200px;
}

@media (max-width: 768px) {
    .profile-content {
        justify-content: center;
        text-align: center;
    }

    .profile {
        text-align: center;
    }

    .profile h1,
    .profile h2 {
        text-align: center;
    }

    .profile-item {
        justify-content: center;
    }

    .profile-item a {
        justify-content: center;
    }
}
