.hero {
    background-color: #5b0b99;
    padding: 1rem 0;
    margin-bottom:1rem;
}
.hero .container {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
}
@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
    }
}
.hero .hero-image {
    flex: 1;
    min-height: 300px;
    background-image: url("/artwork/home/hero_img.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media (min-width: 768px) {
    .hero .hero-image {
        min-height: 400px;
    }
}
.hero .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.hero .hero-content h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 80%;
    color: #fff;
}
.hero .hero-content h3 {
    color: #fff;
}
@media (max-width: 768px) {
    .hero .hero-content h1 {
        font-size: 2rem;
        max-width: 100%;
    }
}
.hero .hero-content p {
    margin-bottom: 1.5rem;
    max-width: 80%;
}
@media (max-width: 768px) {
    .hero .hero-content p {
        max-width: 100%;
    }
}
.hero .hero-content a.underline {
    color: #fff;
    position: relative;
    text-decoration: none;
}
.hero .hero-content a.underline::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #30d5c8;
}
.hero .hero-content .cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0;
}
.hero .hero-content .cta li {
    list-style: none;
}
.hero .hero-content .cta .button {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 10rem;
    background-color: #30d5c8;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (max-width: 767px) {
    .hero .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero .hero-content .cta {
        justify-content: center;
    }
}
