﻿.blog-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

    .blog-container h1 {
        font-size: 28px;
        line-height: 32px;
        margin: 0;
        padding: 0;
        color: #004990;
        font-family: Ubuntu;
    }

    .blog-container h2 {
        font-size: 24px;
        margin: 0px 0px 16px 0px;
        padding: 0;
        color: #004990;
        line-height: 28px;
        font-family: Ubuntu;
    }

    .blog-container h3 {
        font-size: 22px;
        margin: 0px 0px 4px 0px;
        padding: 0;
        color: #004990;
        line-height: 26px;
        font-family: Ubuntu;
    }

    .blog-container h4 {
        font-size: 20px;
        margin: 0px 0px 2px 0px;
        padding: 0;
        color: #004990;
        line-height: 24px;
        font-family: Ubuntu;
    }

    .blog-container p {
        font-size: 14px;
        margin: 0px 0px 24px 0px;
        padding: 0;
        line-height: 18px;
        font-family: Ubuntu;
    }

    .blog-container .content a {
        color: #004990;
    }

@media(max-width:1200px) {
    .blog-container {
        margin-top: 60px;
    }
}

.blog-wrapper {
    max-width: 1248px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-top: 36px;
    margin-bottom: 8px;
}

@media(max-width:1248px) {
    .blog-wrapper {
        padding: 0px 16px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    height: 570px; /* adjust as needed */
    overflow: hidden;
    background: #3C86C8;
}

/* Wrapper */
.slider-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
    touch-action: pan-y;
    height: 100%;
}

/* Slides */
.slide {
    min-width: 100%;
    display: flex;
    padding: 0px 90px 0px 90px;
    justify-content: flex-start;
    align-items: center;
}

@media(max-width:768px) {
    .slide {
        padding: 0px 16px 0px 16px;
    }
}

.slide .card {
    display: flex;
    width: 692px;
    padding: 24px;
    border-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 8px;
    background: #004587B2;
}

    .slide .card .card-title {
        align-self: stretch;
        color: #FFF;
        /* Headline/Bold/H5 */
        font-family: "Ubuntu";
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 36px; /* 128.571% */
    }

@media(max-width:768px) {
    .slide .card .card-title {
        margin: 0px;
    }
}

.slide .card .card-description {
    align-self: stretch;
    color: #FFF;
    /* Subtitle/Regular/S3 */
    font-family: "Ubuntu";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}

.slide .card .card-date {
    display: flex;
    gap: 10px;
    color: #FFF;
    /* Subtitle/Regular/S2 */
    font-family: "Ubuntu";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
}



.slide .card .card-btn {
    display: flex;
    width: fit-content;
    padding: 13px 62px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border-width: 0;
    background: #FFF;
    text-decoration: none;
    word-wrap: break-word;
    color: #004587;
    text-align: center;
    /* Button/Large */
    font-family: "Ubuntu";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 137.5% */
    gap: 8px;
}


.slide-content h2 {
    font-size: 2rem;
}

.slide-content p {
    margin: 10px 0;
}

.slide-content .btn {
    padding: 10px 20px;
    border: none;
    background: #0078d7;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    background: transparent;
    border: 0px solid transparent;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
}

@media(max-width:768px) {
    .arrow {
        display: none;
    }

    .slide {
        align-items: flex-start;
        padding-top: 40px;
    }
}

.arrow.left {
    left: 0px;
    padding: 8px 9px 8px 37px;
}

.arrow.right {
    right: 0px;
    padding: 8px 37px 8px 9px;
}

.inner-arrow {
    display: flex;
    width: 42px;
    height: 42px;
    border: 0px solid transparent;
    justify-content: center;
    background-color: #00000033;
    border-radius: 16px;
    align-items: center;
}

/* Pagination */
.pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    gap: 16px;
    border-radius: 20px;
    height: 30px;
    background: rgba(0, 0, 0, 0.30);
}

    .pagination .bullet {
        width: 12px;
        height: 12px;
        background-color: white;
        border-radius: 50%;
        border: 0px solid #b2b7bb;
        position: relative;
        transform: rotate(45deg);
        box-sizing: border-box;
    }

        .pagination .bullet::before {
            width: 20px;
            height: 20px;
            content: "";
            position: absolute;
            box-sizing: border-box;
            inset: -4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 0px solid #b2b7bb;
            animation: none;
        }

        .pagination .bullet.active {
            width: 20px;
            height: 20px;
            border: 4px solid #b2b7bb;
        }

        .pagination .bullet:first-child {
            margin-left: 12px;
        }

        .pagination .bullet:last-child {
            margin-right: 12px;
        }

        .pagination .bullet.active::before {
            width: 20px;
            height: 20px;
            border: 4px solid #525e65;
            animation: prixClipFix 8s linear forwards;
        }

/* Clockwise Border Fill Animation */
@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }

    25% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }

    50% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)
    }

    100% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)
    }
}

.blog-social-container {
    display: flex;
    padding: 60px 96px;
    align-items: flex-start;
    gap: 10px;
    justify-content: center;
    align-self: stretch;
    background: #F4F7FB;
    margin-top: 60px;
}

.blog-social-wrapper {
    display: flex;
    align-items: flex-start;
    max-width: 1248px;
    flex-wrap: wrap;
    gap: 24px;
    align-self: stretch;
}

@media(max-width:1200px) {
    .blog-social-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}



.blog-social-wrapper .blog-social-card {
    display: flex;
    padding: 40px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: #FFF;
}

    .blog-social-wrapper .blog-social-card .social-card-icon {
        display: flex;
        width: 92px;
        height: 92px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 99999px;
        background: var(--Primary-50, #F3F7FB);
    }

    .blog-social-wrapper .blog-social-card .social-card-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        flex: 1 0 0;
        align-self: stretch;
    }

        .blog-social-wrapper .blog-social-card .social-card-content .social-card-text-wrap {
            display: flex;
            width: 100%;
            padding-bottom: 6px;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

            .blog-social-wrapper .blog-social-card .social-card-content .social-card-text-wrap .card-title {
                color: #004587;
                /* Subtitle/Bold/S1 */
                font-family: "Ubuntu";
                font-size: 20px;
                font-style: normal;
                font-weight: 700;
                line-height: 28px; /* 140% */
            }

            .blog-social-wrapper .blog-social-card .social-card-content .social-card-text-wrap .card-description {
                color: var(--Neutral-Black, #000);
                /* Paragraph/Regular/P2 */
                font-family: "Ubuntu";
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 20px; /* 142.857% */
            }

        .blog-social-wrapper .blog-social-card .social-card-content .social-card-button {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            color: #004587;
            text-decoration: none;
            text-align: center;
            /* Button/Large */
            font-family: "Ubuntu";
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 22px; /* 137.5% */
        }



.blog-category-row {
    display: flex;
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
}

.blog-category-wrapper {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    align-self: stretch;
}

    .blog-category-wrapper .blog-category-card {
        display: flex;
        padding: 13px 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        height: 40px;
        cursor: pointer;
        text-decoration: none;
        flex: 1 0 0;
        border-radius: 8px;
        border: 1px solid #D9D9D9;
    }

        .blog-category-wrapper .blog-category-card.selected {
            display: flex;
            padding: 13px 16px;
            justify-content: center;
            text-decoration: none;
            cursor: pointer;
            height: 40px;
            align-items: center;
            gap: 8px;
            flex: 1 0 0;
            border-radius: 8px;
            background: #237BCB;
        }

        .blog-category-wrapper .blog-category-card .card-title {
            color: #004587;
            text-align: center;
            /* Button/Large */
            font-family: "Ubuntu";
            font-size: 16px;
            white-space: nowrap;
            text-wrap: nowrap;
            font-style: normal;
            font-weight: 500;
            line-height: 22px; /* 137.5% */
        }

        .blog-category-wrapper .blog-category-card.selected .card-title {
            color: #FFF;
            text-align: center;
            /* Button/Large */
            font-family: "Ubuntu";
            font-size: 16px;
            text-decoration: none;
            white-space: nowrap;
            text-wrap: nowrap;
            font-style: normal;
            font-weight: 500;
            line-height: 22px; /* 137.5% */
        }

.blog-preview-component {
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

    .blog-preview-component .grid-title {
        color: #004990;
        font-family: "Ubuntu";
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px; /* 128.571% */
    }

    .blog-preview-component .show-all {
        white-space: nowrap;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        color: #004990;
        text-align: center;
        /* Button/Large */
        font-family: "Ubuntu";
        text-decoration: none;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px; /* 137.5% */
    }

@media(max-width:768px) {
    .blog-social-wrapper .blog-social-card {
        flex-direction: column;
        padding: 40px 20px;
    }

    .blog-social-container {
        padding: 24px 14px;
        margin-top: 24px;
    }

    .blog-preview-component .grid-title {
        font-size: 24px;
    }
}

.blog-preview-component .card-grid {
}

    .blog-preview-component .card-grid .card {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        height: -webkit-fill-available;
        border-radius: 16px;
        background: #FFF;
        box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.10);
    }

@media(max-width:1200px) {
    .blog-preview-component .card-grid .card {
        border: none;
    }

    .blog-preview-component {
        margin-bottom: 24px;
    }
}

.blog-preview-component .card-grid .card .image-wrapper {
    display: flex;
    height: 210px;
    min-height: 210px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    border-radius: 16px 16px 0 0;
}

    .blog-preview-component .card-grid .card .image-wrapper .background-image {
        flex: 1 0 0;
        align-self: stretch;
        border-radius: 16px 16px 0 0;
    }

.blog-preview-component .card-grid .card .content {
    display: flex;
    padding: 16px 24px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: -webkit-fill-available;
    gap: 16px;
    align-self: stretch;
}

    .blog-preview-component .card-grid .card .content .top-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        align-self: stretch;
    }

        .blog-preview-component .card-grid .card .content .top-row .date-duration-wrap {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            align-self: stretch;
        }

            .blog-preview-component .card-grid .card .content .top-row .date-duration-wrap .date {
                color: #212121;
                /* Subtitle/Regular/S2 */
                display: flex;
                align-items: flex-start;
                gap: 10px;
                font-family: "Ubuntu";
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px; /* 133.333% */
            }

                .blog-preview-component .card-grid .card .content .top-row .date-duration-wrap .date .top-row-icon {
                    width: 24px;
                    height: 24px;
                }

            .blog-preview-component .card-grid .card .content .top-row .date-duration-wrap .duration {
                color: #212121;
                /* Subtitle/Regular/S2 */
                display: flex;
                align-items: flex-start;
                gap: 10px;
                font-family: "Ubuntu";
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px; /* 133.333% */
            }

                .blog-preview-component .card-grid .card .content .top-row .date-duration-wrap .duration .top-row-icon {
                    width: 24px;
                    height: 24px;
                }

    .blog-preview-component .card-grid .card .content .card-title {
        color: #004587;
        /* Subtitle/Medium/S2 */
        font-family: "Ubuntu";
        margin: 0;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-height: 24px; /* 133.333% */
        align-self: stretch;
    }

    .blog-preview-component .card-grid .card .content .card-description {
        color: #212121;
        /* Paragraph/Regular/P2 */
        font-family: "Ubuntu";
        font-size: 14px;
        align-self: stretch;
        font-style: normal;
        font-weight: 400;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        line-height: 20px; /* 142.857% */
    }

    .blog-preview-component .card-grid .card .content .bottom-row {
        display: flex;
        align-items: flex-end;
        gap: 16px;
        align-self: stretch;
    }

        .blog-preview-component .card-grid .card .content .bottom-row .show-detail {
            display: flex;
            padding: 10px 16px;
            justify-content: center;
            align-items: center;
            gap: 8px;
            border-radius: 8px;
            background: #3C86C8;
            text-decoration: none;
            color: #FFF;
            text-align: center;
            /* Button/Medium */
            font-family: "Ubuntu";
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 20px; /* 142.857% */
        }

.filter-container {
    display: flex;
    gap: 12px;
    align-items: center;
}


    /* Search input */
    .filter-container input[type="text"] {
        width: 100%;
        color: #212121;
        font-family: Ubuntu;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; /* 138.462% */
        border-width: 0;
        outline: none;
    }

/* Custom dropdown base */
.custom-select {
    position: relative;
    width: 200px;
    cursor: pointer;
    font-size: 14px;
}

/* Trigger (selected value + arrow) */
.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
}

    .custom-select-trigger span {
        color: #616161;
        font-family: Ubuntu;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; /* 138.462% */
    }
/* Arrow styling */
.arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.custom-select.open .arrow-icon {
    transform: rotate(180deg);
}

/* Dropdown options */
.custom-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 999;
    width: 100%;
    background: #fff;
    border: 0px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

/* Expand menu smoothly */
.custom-select.open .custom-options {
    max-height: 300px; /* enough space for items */
    border: 1px solid #ccc;
}

/* Option items */
.custom-options span {
    display: block;
    padding: 8px 12px;
    cursor: pointer;
    color: #212121;
    font-family: Ubuntu;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 138.462% */
}

    .custom-options span:hover {
        background: #f0f0f0;
    }

.filter-container .searchbox-wrap {
    display: flex;
    width: 200px;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 5px 8px;
    border-radius: 8px;
    border: 1px solid #BDBDBD;
    align-self: stretch;
}

@media(max-width:425px) {
    .filter-container {
        margin-top: 12px;
        align-items: flex-start;
        flex-direction: column-reverse;
    }

        .filter-container .searchbox-wrap {
            width: 100%;
        }

    .custom-select {
        width: 100%;
    }
}

.blog-breadcrumb-row {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FBFD;
    width: 100%;
}

.blog-breadcrumb-wrapper {
    max-width: 1248px;
    width: 100%;
    display: flex;
    padding: 12px 14px;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    align-self: stretch;
}

.blog-breadcrumb-row span {
    color: #004587;
    font-family: "Ubuntu";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

    .blog-breadcrumb-row span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .blog-breadcrumb-row span a {
        color: #BDBDBD;
        text-decoration: none;
        cursor: pointer;
    }

.blog-breadcrumb-row .breadcrumb-divider {
    width: 20px;
    height: 1px;
    border: 0 solid #EEE;
    background: #DDE3EE;
}

.pagination-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.blog-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.page-item {
    margin: 0 3px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.blog-page-link {
    width: 100%;
    height: 100%;
    padding: 8px;
    justify-content: center;
    align-items: center;
    display: flex;
    text-decoration: none;
    cursor: pointer;
    color: #616161;
    text-align: center;
    font-family: "Ubuntu";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 138.462% */
}

.page-item.disabled .blog-page-link {
    pointer-events: none;
    opacity: 0.5;
}

.page-item.active {
    background-color: #3C86C8;
    color: #fff;
}

    .page-item.active .blog-page-link {
        color: #fff;
    }

.dots {
    display: block;
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
}

.blog-detail-banner-wrapper {
    /*    background-image: url('/assets/images/blog-slider-bg.png');
*/ background-size: cover;
    background-position: center;
    width: 100%;
    padding: 52px 0px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.blog-detail-banner {
    display: flex;
    width: 100%;
    max-width: 692px;
    padding: 24px;
    border-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 8px;
    background: #004587B2;
}

    .blog-detail-banner .banner-title {
        align-self: stretch;
        color: #FFF;
        /* Headline/Bold/H5 */
        font-family: "Ubuntu";
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 36px; /* 128.571% */
    }


    .blog-detail-banner .banner-date {
        display: flex;
        gap: 10px;
        color: #FFF;
        /* Subtitle/Regular/S2 */
        font-family: "Ubuntu";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 133.333% */
    }

.blog-detail-component {
    width: 100%;
    align-items: flex-start;
    align-self: stretch;
}

    .blog-detail-component:first-child {
        margin-top: 6px;
    }

    .blog-detail-component:last-child {
        margin-bottom: 60px;
    }

    .blog-detail-component.text-first {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

@media(max-width:1199px) {
    .blog-detail-component:first-child {
        margin-top: 24px;
    }

    .blog-detail-component:last-child {
        margin-bottom: 24px;
    }

    .blog-detail-component {
        flex-direction: column;
    }

        .blog-detail-component.text-first {
            flex-direction: column-reverse;
        }
}

.blog-detail-component .media-wrapper {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 12px;
}

    .blog-detail-component .media-wrapper img {
        border-radius: 8px;
        max-width: 372px;
        height: auto;
        object-fit: cover;
    }

    .blog-detail-component .media-wrapper video {
        border-radius: 8px;
        max-width: 506px;
        height: auto;
        object-fit: cover;
    }

    .blog-detail-component .media-wrapper iframe {
        border-radius: 8px;
        max-width: 506px;
        min-width: 506px;
        height: 284px;
        object-fit: cover;
    }

@media(max-width:1199px) {
    .blog-category-wrapper {
        margin-top: 24px;
        margin-bottom: 24px;
        gap: 8px;
    }

    .blog-detail-component .media-wrapper {
        width: 100%;
    }

        .blog-detail-component .media-wrapper img {
            max-width: 100%;
        }

        .blog-detail-component .media-wrapper video {
            max-width: 100%;
        }

        .blog-detail-component .media-wrapper iframe {
            max-width: 100%;
            min-width: 0px;
        }
}

.blog-detail-component:only-child,
.blog-detail-component > :only-child {
    width: 100%;
}

.blog-detail-component .media-wrapper .media-description {
    color: #212121;
    /* Paragraph/Regular/P4 */
    font-family: Ubuntu;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
}

.blog-detail-text-wrapper {
    align-items: flex-start;
    align-self: stretch;
}

    .blog-detail-text-wrapper .section-wrap {
        margin-bottom: 24px;
        align-items: flex-start;
        align-self: stretch;
    }

        .blog-detail-text-wrapper .section-wrap:last-child {
            margin-bottom: 24px;
        }

        .blog-detail-text-wrapper .section-wrap .content-title {
            color: #004990;
            /* Headline/Medium/H6 */
            font-family: Ubuntu;
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: 32px; /* 133.333% */
            margin-top: 0px;
            margin-bottom: 16px;
        }

        .blog-detail-text-wrapper .section-wrap .content {
            color: #212121;
            /* Paragraph/Regular/P2 */
            font-family: Ubuntu;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; /* 142.857% */
            white-space: normal;
            text-wrap: pretty;
            word-wrap: break-word;
        }

.blog-detail-component .media-wrapper .audio-player {
    display: flex;
    align-items: center;
    background: #3C86C8;
    border-radius: 16px;
    padding: 20px 24px;
    gap: 24px;
    margin: 12px 0px 0px 0px;
    width: 100%;
    max-width: 1248px;
    color: white;
}

.blog-detail-component .media-wrapper .play-btn {
    width: 48px;
    height: 48px;
    background: #3C86C8;
    flex-shrink: 0;
    border-radius: 99px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
}

    .blog-detail-component .media-wrapper .play-btn:focus {
        outline: none;
    }

.blog-detail-component .media-wrapper .audio-info {
    flex: 1;
}

.blog-detail-component .media-wrapper .audio-title {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
    margin-bottom: 6px;
}

.blog-detail-component .media-wrapper .time-row {
    display: flex;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.blog-detail-component .media-wrapper .time {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    width: fit-content;
}

.blog-detail-component .media-wrapper .progress-bar {
    flex: 1;
    height: 10px;
    border-radius: 99px;
    background: #c7d7ea;
    margin: 0 8px;
    position: relative;
}

.blog-detail-component .media-wrapper .progress {
    background: white;
    height: 100%;
    width: 20%;
    border-radius: 99px;
    box-shadow: 2px 0 4px 0 rgba(0, 0, 0, 0.15);
}

.blog-detail-component .media-wrapper .duration {
    display: flex;
    padding: 6px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #FFF;
    color: #004587;
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.audio-info-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    width: 100%;
}

.audio-info-link {
    font-family: Ubuntu;
    font-size: 18px;
    display: flex;
    gap: 4px;
    align-items: center;
    width: fit-content;
    line-height: 24px;
    font-style: normal;
    text-decoration: none;
    font-weight: 500;
    color: #3C86C8;
}

#indexAccordion {
    margin-top: 40px;
}

    #indexAccordion .content-title {
        color: #004990;
        /* Headline/Medium/H6 */
        font-family: Ubuntu;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px; /* 133.333% */
        padding: 16px 24px 16px 32px;
        border-radius: 16px;
        background: #fff;
        border-color: transparent;
        box-shadow: none;
    }

@media(max-width:1200px) {
    #indexAccordion {
        margin-top: 24px;
    }

        #indexAccordion .content-title {
            padding: 16px 24px 16px 24px;
        }
}

#indexAccordion .accordion-item {
    border-radius: 16px;
    border: 1px solid #D9E0EC;
    background: #FFF;
}

#indexAccordion .accordion-body {
    display: flex;
    padding: 0px 24px 32px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

#indexAccordion .index-text {
    color: #212121;
    /* Paragraph/Medium/P2 */
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    cursor: pointer;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 1px;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

    #indexAccordion .index-text:hover {
        color: #004990;
    }

.blog-next-previous-page-banner {
    background: #F4F7FB;
    width: 100%;
    padding: 52px 0px;
    justify-content: center;
    display: flex;
    align-items: center;
}

    .blog-next-previous-page-banner .blog-next-previous-page-wrapper {
        display: flex;
        padding: 16px 24px;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        align-self: stretch;
        border-radius: 16px;
        border: 1px solid #D9E0EC;
        background: #FFF;
    }



        .blog-next-previous-page-banner .blog-next-previous-page-wrapper .inspect-text {
            color: #3C86C8;
            /* Paragraph/Medium/P2 */
            font-family: Ubuntu;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            margin-bottom: 8px;
            line-height: 20px; /* 142.857% */
        }

        .blog-next-previous-page-banner .blog-next-previous-page-wrapper .title {
            color: #004587;
            /* Subtitle/Medium/S1 */
            font-family: Ubuntu;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 28px; /* 140% */
            margin-top: 0px;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            display: -webkit-box;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .blog-next-previous-page-banner .blog-next-previous-page-wrapper .next-previous-button {
            display: flex;
            text-decoration: none;
            align-items: center;
            gap: 20px;
        }

            .blog-next-previous-page-banner .blog-next-previous-page-wrapper .next-previous-button.next {
                display: flex;
                align-items: center;
                gap: 20px;
            }

            .blog-next-previous-page-banner .blog-next-previous-page-wrapper .next-previous-button.previous {
                display: flex;
                align-items: center;
                gap: 20px;
            }



.feature-interest-wrapper {
    display: flex;
    width: 100%;
    align-items: flex-start;
    align-content: flex-start;
    gap: 24px;
}

    .feature-interest-wrapper .feature-interest-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 24px;
    }

        .feature-interest-wrapper .feature-interest-box .title {
            color: #004990;
            /* Headline/Medium/H6 */
            font-family: Ubuntu;
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: 32px; /* 133.333% */
            margin: 0px;
        }

        .feature-interest-wrapper .feature-interest-box .feature-interest-button {
            display: flex;
            padding: 13px 16px;
            justify-content: space-between;
            text-decoration: none;
            gap: 16px;
            align-items: center;
            width: 100%;
            border-radius: 8px;
            border: 1px solid #E0E0E0;
        }

            .feature-interest-wrapper .feature-interest-box .feature-interest-button img {
                width: 20px;
                height: 20px;
            }

            .feature-interest-wrapper .feature-interest-box .feature-interest-button .card-title {
                color: #212121;
                /* Paragraph/Medium/P2 */
                font-family: Ubuntu;
                font-size: 14px;
                font-style: normal;
                font-weight: 500;
                line-height: 20px; /* 142.857% */
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
            }



.blog-social-media-wrapper {
    display: flex;
    padding: 32px 0px;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

    .blog-social-media-wrapper .content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 16px;
        align-self: stretch;
    }

        .blog-social-media-wrapper .content .title {
            color: #004990;
            /* Headline/Medium/H6 */
            font-family: Ubuntu;
            margin: 0px;
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: 32px; /* 133.333% */
        }

        .blog-social-media-wrapper .content p {
            color: #212121;
            /* Paragraph/Regular/P2 */
            margin: 0px;
            font-family: Ubuntu;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; /* 142.857% */
        }

    .blog-social-media-wrapper .social-buttons {
        display: flex;
        align-items: flex-start;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        align-self: stretch;
    }

        .blog-social-media-wrapper .social-buttons a {
            display: flex;
            padding: 16px 24px;
            justify-content: center;
            align-items: center;
            gap: 12px;
            min-width: 150px;
            flex: 1 0 0;
            max-height: 56px;
            text-decoration: none;
            align-self: stretch;
            border-radius: 99px;
            border: 1px solid #D9E0EC;
            background: #FFF;
        }

            .blog-social-media-wrapper .social-buttons a img {
                max-height: 54px;
                width: auto;
                object-fit: cover;
            }


@media(max-width:640px) {
    .blog-next-previous-page-banner .blog-next-previous-page-wrapper {
        flex-direction: column;
        gap: 24px;
    }

        .blog-next-previous-page-banner .blog-next-previous-page-wrapper .next-previous-button {
            max-width: 640px;
            width: 100%;
        }

            .blog-next-previous-page-banner .blog-next-previous-page-wrapper .next-previous-button.previous {
                justify-content: flex-start;
            }

            .blog-next-previous-page-banner .blog-next-previous-page-wrapper .next-previous-button.next {
                justify-content: flex-end;
            }

        .blog-next-previous-page-banner .blog-next-previous-page-wrapper .show-640 {
            display: block !important;
        }

    .feature-interest-wrapper {
        flex-direction: column;
    }
}
