header .hero {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

header .hero .hero-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

header .hero .hero-logo {
    display: block;
    width: 72px;
    height: auto;
}

header .hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

header .hero .hero-content h1 {
    margin: 0;
}

header .hero .hero-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    header .hero {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    header .hero .hero-logo {
        width: 60px;
    }

    header .hero .hero-content h1,
    header .hero .hero-content p {
        text-align: left;
    }
}
