.hero-card-1 > h3 {
    font-weight: bold;
    font-size: 50px;
    color: var(--site-color-900);
}

.hero-card-1 > ul {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-card-1 > ul > li {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 0px;
    background-image: linear-gradient(90deg, transparent,var(--site-color-100));
    margin-bottom: 10px;
    border-radius: 0px 10px 10px 0px;
    position: relative;
}

.hero-card-1-meta > span {
    font-size: 30px;
    font-weight: bold;
    color: var(--site-color-1000);
}

.hero-card-1-meta > p {
    font-size: 20px;
    margin: 0px;
}

.hero-card-1-image {
    max-width: 150px;
    margin-left: auto;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.hero-card-1-image > img {
    width: 100%;
}

@media only screen and (max-width: 600px) {
    .hero-card-1 > h3 {
        font-size: 35px;
    }

    .hero-card-1 > ul > li {
        flex-direction: column-reverse;
        background-image: linear-gradient(180deg, transparent, var(--site-color-100));
        border-radius: 10px;
        padding: 10px;
    }

    .hero-card-1-meta {
        text-align: center;
    }

    .hero-card-1-image {
        max-width: 150px;
        margin: auto;
    }

    .hero-card-1-meta > span {
        font-size: 25px;
        font-weight: bold;
        color: var(--site-color-1000);
    }

    .hero-card-1-meta > p {
        font-size: 16px;
        margin: 0px;
    }
}
