section.hero {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: stretch;

    & > section {
        flex: 1 1 auto;

        &.logo {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        &.contact-card {
            display: flex;
            flex-direction: row;
            padding: 2rem;
            align-items: center;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;

            section.info-text {
                display: flex;
                flex-direction: column;
                gap: 1rem;

                section.social {
                    display: flex;
                    gap: 0.2rem;

                    .social-icons__icon-wrapper {
                        display: inline-flex;
                        align-items: center;
                        line-height: 0;
                        color: var(--color-secondary-link);

                        a {
                            display: inline-flex;
                            align-items: center;
                            justify-content: center;
                            border-radius: 50%;
                            line-height: 0;

                            & > svg {
                                width: 1.25rem;
                                height: 1.25rem;
                                display: block;
                            }
                        }
                    }
                }
            }
        }

    }
}

section.about {
    display: flex;
    flex-direction: column;
    align-items: center;

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr));
        gap: 1rem;
        width: 100%;

        picture {

            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;

            &.jinnie-the-witch {
                img {
                    margin-top: -2rem;

                }
            }
        }
    }
}

section.browse {
    display: flex;
    justify-content: center;
}
