h1 {
    font-size: 1.75em;

    color: var(--text-secondary);
}

h2 {
    font-size: 1.25em;

    color: var(--text-secondary);
}

#hero {
    width: 90%;
    margin: 0 auto;
}

#hero div {
    width: 100%;

    text-align: center;
}

#hero-image {
    max-width: 100%;
    max-height: 700px;

    width: 100%;
    height: auto;

    display: block;

    object-fit: cover;
    border-radius: 1rem;
}

#featured-works-container {
    width: 100%;

    margin-top: 4rem;
    display: flex;

    gap: 1rem;
}

#landscape-featured-works-container {
    display: flex;
    flex-direction: column;

    justify-content: space-between;

    gap: 1rem;
}

#featured-works-container div img {
    width: 100%;

    border-radius: 1rem;
}

.featured-work-container {
    flex: 1;
}

.featured-work {
    max-width: 100%;

    width: 100%;
    height: auto;

    display: block;

    object-fit: cover;

    flex: 1;
}


