.hero__container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem;
}

#hero-section {
    display: flex;
    flex-direction: column;
}

.header__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header__name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.header__role {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.header__about-description {
    font-size: 1.25rem;
    padding: 1rem 0;
    text-align: center;
    line-height: 1.4;
}

.header__buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.header__social-link {
    font-size: 1.5rem;
    color: var(--color-on-strong);
    border-radius: 50%;
    padding: 0.5rem;
    background-color: var(--color-strong-surface);
}

.header__social-link:hover,
.header__social-link:focus {
    outline: 2px solid var(--color-focus-ring);
    outline-offset: 4px;
}

.header__name,
.header__role,
.header__about-description {
    color: var(--color-text);
}

@media (min-width: 576px) {
    .header__buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero__container {
        flex-direction: row;
        align-items: center;
        max-width: 1400px;
        margin: auto;
    }

    .header__container {
        width: 55%;
    }

    .header__name {
        font-size: 5rem;
    }
    .header__role {
        font-size: 2rem;
    }
    .header__name, .header__role, .header__about-description {
        text-align: left;
    }

    .header__buttons {
        justify-content: flex-start;
    }
}
