.hero {
    padding: 34px 24px 50px;
    background: var(--paper);
}

.hero-frame {
    max-width: 1280px;
    margin: auto;
}

.hero-art {
    display: block;
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(30, 34, 34, .08);
    box-shadow: 0 20px 50px rgba(30, 34, 34, .06);
}

.hero-bottom {
    max-width: 1180px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.hero-bottom p {
    margin: 0;
    color: var(--muted);
    max-width: none;
    font-size: 16px;
}

.pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--green);
    color: var(--green);
    padding: 11px 17px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: .2s;
}

.pill:hover {
    background: var(--green);
    color: var(--white);
}



.brand-line {
    height: 1px;
    background: var(--green);
    position: relative;
    margin: 0;
}

.brand-line:after {
    content: "";
    position: absolute;
    right: 17%;
    top: -7px;
    width: 18px;
    height: 14px;
    background: var(--terracotta);
    border-radius: 44% 56% 52% 48%;
    transform: rotate(-11deg);
}
