.product-hero {
    background-color: #6c6d71;
    padding: 60px 0;
    color: white;
}

.product-hero .site-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .product-hero .site-container {
        grid-template-columns: 1.3fr 1fr;
    }
}

.product-hero h2 {
    text-align: center;
    line-height: 1.4;
    max-width: 500px;
}

@media (min-width: 768px) {
    .product-hero h2 {
        text-align: left;
    }
}

.product-hero .column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    min-height: 100%;
}

.product-hero .column:last-child {
    justify-content: space-between;
}

.product-hero .column:last-child h2 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 62px;
    line-height: 0.95em;
    margin-top: 30px;
    text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
}

.product-hero__buttons {
    display: flex;
    gap: 20px;
}