.pole-cta-card {
    background-color: white;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    text-decoration: none;
}

.pole-cta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: 300ms;
}

.pole-cta-card:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transform: translateY(-0.25rem);
}

.pole-cta-card .pole-cta-link {
    color: #437ab9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Aller', 'sans-serif';
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.pole-cta-card .pole-cta-link:hover {
    text-decoration: underline;
}

.pole-cta-card:hover img {
    transform: scale(1.05);
}

.pole-cta-card:hover .pole-cta-link .arrow-right {
    transform: translateX(0.25rem);
}

@media (min-width: 1024px) {
    .pole-card-animation {
        max-width: 400px;
    }
}