.focus-v2 {
    padding: 0;
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.04);
    margin-bottom: 0;
}

.focus-v2-white {
    margin-bottom: 2rem;
}

.focus-v2__wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media screen and (min-width: 768px) {
    .focus-v2__wrapper {
        flex-direction: row;
    }
}

.focus-v2 .container {
    padding: 0;
}

.focus-v2__image {
    min-height: 400px;
}

@media screen and (min-width: 768px) {
    .focus-v2__image {
        min-height: auto;
        flex: 0 0 50%;
    }
}

@media screen and (min-width: 1536px) {
    .focus-v2__image {
        flex: 0 0 45%;
    }

    .focus-v2__image img {
        min-height: 600px;
    }
    
}

.focus-v2__image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.focus-v2__content-wrapper {
    display: flex;
    padding: 64px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

@media screen and (min-width: 768px) {
    .focus-v2__content-wrapper {
        padding: 30px;
        flex: 0 0 50%;
    }
}

@media screen and (min-width: 1024px) {
    .focus-v2__content-wrapper {
        padding: 0 64px;
    }
}

@media screen and (min-width: 1536px) {
    .focus-v2__content-wrapper {
        flex: 0 0 55%;
    }
}

.focus-v2__title {
    color: white;
    font-style: normal;
    font-weight: 700;
    margin: 0;
}

.focus-v2__title.h2,
h2.focus-v2__title {
    font-size: 31px;
    line-height: 39px;
}

.focus-v2__title.h3,
h3.focus-v2__title {
    font-size: 1.3rem;
    line-height: 1.5;
}

.focus-v2__title.h4,
h4.focus-v2__title {
    font-size: 20px;
    line-height: 28px;
}

@media screen and (min-width: 1024px) {
    .focus-v2__title.h2,
    h2.focus-v2__title {
        font-size: 61px;
        line-height: 73px;
    }

    .focus-v2__title.h3,
    h3.focus-v2__title {
        font-size: 31px;
        line-height: 42px;
    }

    .focus-v2__title.h4,
    h4.focus-v2__title {
        font-size: 25px;
        line-height: 42px;
    }
}

.focus-v2__content {
    color: white;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

@media screen and (min-width: 1536px) {
    .focus-v2__content {
        font-size: 25px;
        line-height: 38px;
        /* 152% */
    }
}

.focus-v2__links {
    display: flex;
    flex-direction: column;
}

.focus-v2__link {
    display: inline-flex;
    padding: 12px 0;
    align-items: center;
    color: #EF7C00;
    /* Orange color */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.focus-v2__link svg {
    color: #EF7C00;
    margin-left: .5rem;
}


.focus-v2__link:hover {
    background: transparent;
}

@media screen and (min-width: 1024px) {
    .focus-v2-reverse {
        flex-direction: row-reverse;
    }
    
}