.profile-hero {
    position: relative;
    width: 100%;
    max-height: 300px;
    height: min(300px, 56.25vw);
    background-color: #fafbfd;
    padding: 15px 15px;
}

.profile-hero .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-hero .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 90%);
}

.profile-hero .title {
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--fw-white-050);
}

.profile-hero h1 {
    text-transform: uppercase;
}