.call-to-action-widget {
    max-width: 946px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    font-family: "Hanken Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    color: var(--Gray-Gray-700, #DDD);
}

.call-to-action-widget p{
    margin: 0;
    align-self: center;
    padding: 0 15px 0 0;
    opacity: 0.7;
    transition: 0.3s;
}

.call-to-action-widget:hover p{
    padding: 0 0 0 15px;
    opacity: 1;
    transition: 0.3s;
}

.call-to-action-widget .button {
    display: flex;
    flex-direction: row;
    gap: 24px;
    color: var(--Color-Palette-Yellow-Yellow-500, #FFC432);
    align-items: center;
    white-space: nowrap;
    transition: color 0.3s;
}

.call-to-action-widget:hover .button {
    color: var(--Color-Palette-Blue-Blue-500, #25B1E1);
    transition: color 0.3s;
}

.call-to-action-widget .button:after {
    content: "";
    width: 40px;
    height: 40px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background-image: url(assets/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    transition: 0.3s;
}

.call-to-action-widget:hover .button:after {
    background-image: url(assets/arrow-hover.svg);
    transition: 0.3s;
}

@media (max-width: 600px) {
    .call-to-action-widget {
        max-width: 100%;
        flex-direction: column;
        gap: 16px;
        font-size: 18px;
    }
    .call-to-action-widget .button {
        gap: 16px;
    }
    .call-to-action-widget .button:after {
        width: 36px;
        height: 36px;
        background-size: 12px 12px;
    }
    .call-to-action-widget p {
        color: grey;
        opacity: 1;
        padding: 0;
    }
    .call-to-action-widget:hover p {
        padding: 0;
    }
}