.article-header {
    margin-top: 10px;
}

.article-header {
    background-image: linear-gradient(to bottom, white, white 25%, var(--color-yellow-light) 25%, var(--color-yellow-light) 30%, #FCE696 30%, #FCE696 50%, var(--color-yellow-light) 50%, var(--color-yellow-light) 95%, white 95%, white 100%);
    height: 300px;
}


.article-header .article-banner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.article-banner-text {
    padding-bottom: 30px;
}

.article-header .article-banner img {
    width: 300px;
    height: 300px;
}

.article-banner {
    position: relative;
}

.article-banner .static {
    position: absolute;
    top: -50px;
    left: 11px;
    right: 47px;
    width: 90% !important;
}

.visa-card-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.visa-card-section p {
    margin-bottom: 0;
}

.visa-card {
    width: 270px;
    padding: 12px;
    border: 1px solid #00215C1A;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.visa-know-more {
    position: absolute;
    background: #255CC1;
    height: 64px;
    bottom: -64px;
    left: 0;
    z-index: 1;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    width: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: bottom 0.3s ease, opacity 0.3s ease;
}

.visa-card:hover .visa-know-more {
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    opacity: 1;
}

.visa-know-more p {
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    display: flex;
    gap: 4px;
    color: #FFFFFF;
}

.visa-card-body {
    position: relative;
}

.visa-name-section {
    margin-top: 12px;
}

.visa-card .visa-name {
    font-weight: 500;
    line-height: 100%;
    color: #111111;
    height: 32px;
    display: flex;
    align-items: center;
}

.visa-fastest-approved {
    color: #111111;
    font-size: 14px;
    line-height: 140%;
    margin-top: 4px;
}

.most-approved-ribbon {
    width: 132px;
    position: absolute;
    top: -12px;
    left: -6px;
    z-index: 1;
}

.visa-card .visa-type {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 16px;
    padding: 4px 8px;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #255CC1;
}

.visa-card .visa-review {
    position: absolute;
    right: 12px;
    top: 12px;
    padding: 4px 8px;
    font-size: 12px;
    background: #FFFFFF;
    border-radius: 16px;
    line-height: 100%;
}

.visa-approved-count {
    position: absolute;
    top: 150px;
    padding: 6px 12px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    background: #255CC1;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #FAFBFF;
}

.visa-card .visa-details {
    margin-top: 12px;
}

.visa-card .visa-details p {
    display: flex;
    gap: 4px;
    font-size: 14px;
    line-height: 140%;
    color: #11111199;
}

.visa-card .gradient-text {
    position: relative;
    background: linear-gradient(84.94deg, rgba(250, 251, 255, 0.7) 16.6%, rgba(37, 92, 193, 0.7) 173.37%);
    padding-right: 20px;
    color: #255CC1;
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    padding-top: 4px;
}

.visa-card .gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 22px;
    border-left: 22px solid transparent;
    border-top: 12px solid white;
    rotate: 90deg;
}

.filter-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.filter-icon-section {
    font-size: 12px;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #00215C99;
}

#countryDropdown,
#visaTypeDropdown {
    border: 1px solid #00215C1A;
    border-radius: 16px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: #111111CC;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
}

.country-option {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.visa-type-option:active,
.country-option:active {
    background-color: #e9ecef !important;
}

.pagination-button-container {
    text-align: end;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.pagination-button-container .summary {
    font-size: 12px;
    line-height: 18px;
    color: #18181B99;
}

.visa-prev-page-btn,
.visa-next-page-btn {
    border: none;
    background: none;
}


@media (max-width: 991px) {
    .article-banner .static {
        top: -30px;
        right: 50px;
        width: 85% !important;
    }
}

@media (max-width: 768px) {

    .article-banner .static {
        display: none;
    }

    .article-header .article-banner img {
        width: 200px;
        height: 200px;
    }

    .article-header {
        height: 200px;
    }

    .article-banner-text {
        padding-bottom: 5px;
    }

    .article-header .article-banner-text p {
        font-size: 14px;
    }

    .filter-icon-section span {
        display: none;
    }
}

@media (max-width: 576px) {
    .visa-card-section {
        justify-content: center;
    }

    .filter-container {
        gap: 8px;
        margin-bottom: 8px;
    }

    #countryDropdown,
    #visaTypeDropdown {
        padding: 6px 8px;
        gap: 4px;
    }

    .visa-card {
        width: unset;
        max-width: 360px;
    }
}