.hero {
    min-height: 300px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(36px, 7vw, 100px);
    padding: 42px 0 48px;
}

.eyebrow {
    margin: 0;
    padding-left: 10px;
    border-left: 3px solid var(--coral);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.17em;
}

.hero h1 {
    max-width: 790px;
    margin: 12px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.1rem, 6vw, 5.15rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.064em;
}

.hero h1 em {
    position: relative;
    display: inline-block;
    color: var(--coral);
    font-weight: inherit;
}

.hero h1 em::after {
    content: "";
    position: absolute;
    right: 1%;
    bottom: -8px;
    width: 67%;
    height: 9px;
    border-top: 3px solid currentColor;
    border-radius: 50%;
    transform: rotate(-2deg);
}

.hero__lead {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.hero__actions {
    display: grid;
    gap: 17px;
    justify-items: start;
    padding-bottom: 3px;
}

.primary-link {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 7px 8px 7px 21px;
    border-radius: var(--radius-md);
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 14px 30px rgba(159, 190, 63, 0.25);
    font-size: 0.85rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-link > span {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--lime);
    background: var(--ink);
}

.primary-link svg,
.game-card__link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.primary-link:hover {
    transform: translateY(-3px);
    background: var(--lime-dark);
    box-shadow: 0 18px 34px rgba(159, 190, 63, 0.34);
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero__meta i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--coral);
}
