.category-cta-heading {
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 42px;
    text-shadow: 0 2px 4px rgba(0, 91, 147, 0.4);
}

.category-cta-text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    padding-right:56px;
}

@media (max-width:853px) {
    .category-cta-heading {
        text-align: center;
    }

    .category-cta-text {
        text-align: center;
        padding-right:0;
    }
}

.category-cta-button {
    display: inline-flex;
    padding: 16px 36px;
    gap: 16px;
    width: auto;
    height: auto;
    background: #FFFFFF;
    border-radius: 99px;
    text-decoration: none !important;
    font-style: normal;
    font-weight: 500 !important;
    font-size: 16px;
    line-height: 20px;
    color: #005B93 !important;
    border-style: solid;
    border-width: 2px;
    border-color: #ffffff;
}

.category-cta-button:hover {
    background-color: rgba(255, 255, 255, 0);
    color: #ffffff !important;
    border-color: #ffffff;
}

.blog-listing-card.hide {
    opacity: 0;
}

.blog-listing-card {
    transition: opacity .5s ease;
    opacity: 1;
}

.blog-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transition: opacity .5s ease;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.blog-listing-load-button {
    transition: opacity .5s ease;
}

.blog-listing-load-button.hide {
    opacity: 0;
    height: 0;
}

.blog-spinner.hide {
    opacity: 0;
    height: 0;
    animation: none;
}