.two-column-button-v2-empty {
    width: 100%;
    padding: 3rem 0;
    background-color: #003d7c;
    color: white;
    text-align: center;
}

.two-column-button-v2 {
    color: white;
    padding: 1.5rem;

    @media screen and (min-width: 768px) {
        transition: all ease 0.3s;
    }
}

.two-column-button-v2:hover {
    background-color: gray;
}

.two-column-button-v2 .title {
    font-size: 31px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    color: white;
}

@media screen and (min-width: 768px) {
    .two-column-button-v2 .title {
        font-size: 31px;
        font-style: normal;
        font-weight: 500;
        line-height: 49px;
        /* 158.065% */
    }
}

@media screen and (min-width: 1024px) {
    .two-column-button-v2 .title {
        flex-shrink: 0;
    }
}

.two-column-button-v2 .description {
    color: #FFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}

@media screen and (min-width: 768px) {
    .two-column-button-v2 .description {
        font-size: 25px;
        font-weight: 400;
        line-height: 40px;
        /* 160% */
    }
}

.two-column-button-v2__container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 768px) {
    .two-column-button-v2__container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 48px;
    }
}

.two-column-button-v2__link .arrow {

    @media screen and (min-width: 768px) {
        display: block;
    }
}

.two-column-button-v2__link .arrow svg {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.two-column-button-v2__link .arrow svg.rotate-icon {
    transform: rotate(-45deg);
}

.two-column-button-v2__link:hover .arrow svg.rotate-icon {
    transform: rotate(0deg);
}

.two-column-button-v2 .description-arrow {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

.two-column-button-v2 .container {
    padding: 0;
}

@media screen and (min-width: 768px) {
    .two-column-button-v2__container .title {
        min-width: 300px;
    }
    .two-column-button-v2__container .meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
}