.terract-hero-v3 {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 26px;
    margin: 0 0 38px;
}

.terract-hero-card {
    min-height: 520px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    padding: 42px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .16);
}

.terract-hero-card h1,
.terract-hero-card h2 {
    color: #ffffff;
    margin: 18px 0 14px;
    font-weight: 900;
    line-height: 1.05;
}

.terract-hero-card h1 {
    font-size: 48px;
    max-width: 780px;
}

.terract-hero-card h2 {
    font-size: 36px;
    max-width: 620px;
}

.terract-hero-card p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .95);
    margin: 0 0 22px;
}

.terract-hero-badge {
    width: max-content;
    background: #0b8f45;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
    border-radius: 10px;
    padding: 10px 14px;
}

.terract-hero-badge-project {
    background: #f5a400;
}

.terract-hero-btn {
    width: max-content;
    background: #ffffff;
    color: #064527;
    text-decoration: none;
    font-weight: 900;
    border-radius: 12px;
    padding: 14px 22px;
    transition: .25s ease;
}

.terract-hero-btn:hover {
    background: #f3f7f5;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .terract-hero-v3 {
        grid-template-columns: 1fr;
    }

    .terract-hero-card {
        min-height: 390px;
        padding: 32px;
    }

    .terract-hero-card h1 {
        font-size: 36px;
    }

    .terract-hero-card h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .terract-hero-card {
        min-height: 330px;
        padding: 24px;
        border-radius: 22px;
    }

    .terract-hero-card h1,
    .terract-hero-card h2 {
        font-size: 28px;
    }

    .terract-hero-card p {
        font-size: 15px;
    }
}