.cpd-hero {
    background-color: #26282a;
    display: flex;
    flex-direction: column;
    position: relative;
}

.cpd-hero__content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-bottom: 4rem;
    padding-top: 12rem;
}

.cpd-hero__title-container {
    width: 100%;
    max-width: 604px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.cpd-hero__title {
    color: #fff;
    font-family: Aeonik;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.05;
    text-wrap: balance;
    margin: 0;
}

.cpd-hero__highlight {
    color: #f25d21;
}

.cpd-hero__description-container {
    width: 100%;
    max-width: 571px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 2rem;
}

.cpd-hero__description {
    color: #e8e8e8;
    font-family: var(--font-aeonik);
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-wrap: pretty;
    margin: 0;
    text-decoration: none;
}

.cpd-hero__cta,
.cpd-hero__cta:hover,
.cpd-hero__cta:focus,
.cpd-hero__cta:active {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 1.5rem;
    background-color: #f25d21;
    color: #fff;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 1px 0 rgba(242, 93, 33, 0.5) inset, 0 0 1px 0 rgba(242, 93, 33, 0.5);
}

.cpd-hero__cta:hover {
    background-color: #d94d17;
    border-color: #d94d17;
}

.cpd-hero__image {
    width: 100%;
    height: 100%;
    max-height: 484px;
    position: relative;
    object-fit: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cpd-hero__image-img {
    width: 100%;
    object-position: center;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cpd-hero__content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cpd-hero__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .cpd-hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .cpd-hero__title {
        font-size: 2.5rem;
    }

    .cpd-hero__content-container {
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .cpd-hero__title {
        font-size: 2rem;
    }
}
