.banner-single {
    height: 320px;
    width: 100%;
    position: relative;
}

.banner-single::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            #098b43 -4.12%,
            rgba(9, 139, 67, 0.6) 47.06%,
            #098b43 100%);
}

.banner-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-page {
    padding-top: 40px;
    display: flex;
    gap: 40px;
    padding-bottom: 80px;
}

.single-page .single-content {
    flex: 1;
}

.single-page .single-content .single-heading {
    color: var(--text, #101857);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    /* 150% */
    margin-bottom: 12px;
}

.single-page .single-content .single-infor {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.single-page .single-content .single-infor-date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-page .single-content .single-infor-date img {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.single-page .single-content .single-infor-date p {
    color: var(--text, #101857);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    /* 150% */
}

.single-page .single-content .single-infor-line {
    width: 1px;
    height: 15px;
    background: #101857;
}

.single-page .single-content .single-infor-auth {
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-page .single-content .single-infor-auth .single-infor-auth-dots {
    width: 12px;
    height: 12px;
    aspect-ratio: 1/1;
    background: var(--Green, #098b43);
    border-radius: 100%;
}

.single-page .single-content .single-infor-auth p {
    color: var(--Green, #098b43);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    /* 150% */
}

.single-page .single-content .single-infor-rate {
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-page .single-content .single-infor-rate .single-rate-label {
    color: #9b9a9a;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42;
    /* 142.857% */
}

.single-page .single-content .single-infor-rate p {
    color: var(--text, #101857);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42;
    /* 142.857% */
}

.single-page .single-content .single-infor-rate .single-rate-sao {
    display: flex;
    align-items: center;
}

.single-page .single-content .single-infor-rate .single-rate-sao svg {
    width: 13.5px;
    height: 13.5px;
}

.single-page .single-excerpt {
    color: rgba(16, 24, 87, 0.8);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75;
    /* 175% */
    margin-bottom: 40px;
}

.post-toc {
    position: sticky;
    top: 0;
    background: white;
    transition: all 0.3s;
    width: 100%;
    height: 65px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);

    .post-toc-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 13px;
        padding: 16px;
        cursor: pointer;
        position: relative;

        svg {
            width: 44px;
            height: 33px;
            flex-shrink: 0;
        }

        strong {
            color: #333;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 1.33;
        }

        .post-toc-heading-drop {
            position: absolute;
            width: 8px;
            height: 14px;
            flex-shrink: 0;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
    }

    ul {
        padding: 16px;
        padding-left: 34px;
        margin-bottom: 0;

        .toc-item a {
            color: rgba(51, 51, 51, 0.6);
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 1.57;
            /* 157.143% */
        }
    }
}

.single-page .single-detail {
    margin-top: 40px;
    color: #393939;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;

    h5,
    h4,
    h3,
    h2 {
        margin-top: 28px;
        margin-bottom: 24px;
        color: #393939;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.5;
        /* 150% */
    }

    img {
        display: block;
        margin: 40px auto;
    }

    ol,
    ul {
        padding-left: 20px;
    }

    ol ul,
    ol ol,
    ul ol,
    ul ul {
        margin: 12px 0 12px 16px;
    }
}

.single-page .single-aside {
    width: 350px;
    height: max-content;
    position: sticky;
    top: 60px;
    padding-bottom: 20px;
}

.single-page .single-aside .single-aside-form {
    width: 100%;
    height: 396px;
    padding: 40px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
}

.single-page .single-aside .single-aside-form .single-form-heading {
    color: var(--text, #101857);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.28;
    width: 100%;
    margin-bottom: 20px;
}

.single-page .single-aside {
    display: flex;
    width: 350px;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.single-page .single-aside .single-form {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
    padding: 40px;
}

.single-page .single-aside .single-form .single-form-title {
    font-weight: 700;
    font-size: 28px;
    color: #101857;
    text-align: center;
}

.single-page .single-aside .single-form .btn-global {
    margin-top: 40px;
    width: 100%;
}

.single-page .single-aside .single-form-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
}

.single-page .single-aside .single-form-input label {
    display: flex;
    color: var(--text, #101857);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42;
    /* 142.857% */
}

.single-page .single-aside .single-form-input label sub {
    color: #ff2b2b;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.57;
    /* 157.143% */
}

.single-page .single-aside .single-form-input input {
    display: flex;
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    align-items: center;
    border-radius: 38px;
    background: #f3f3f3;
    color: var(--text, #101857);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42;
    transition: all 0.3s;
}

.single-page .single-aside .single-form-input input::placeholder {
    color: #9ca3af;
}

.single-page .single-aside .single-form-input input:focus {
    outline: none;
    /* bỏ viền xanh mặc định */
    border-radius: 40px;
    border: 1px solid var(--Green, #098b43);
    background: #f8f9fa;
}

.single-page .single-aside .single-form-btn {
    margin-top: 40px;
    border-radius: 38px;
    border: 1px solid #07b86b;
    background: linear-gradient(90deg,
            #2db04a -9.74%,
            #2b8670 54.2%,
            #2e398b 130.49%);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
    display: flex;
    padding: 19px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.single-page .single-aside .single-form-btn p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.single-page .single-aside .single-form-btn svg {
    width: 20.686px;
    height: 10.2px;
}

.single-page .single-aside .single-aside-post {
    margin-top: 28px;
    width: 100%;
    height: 298px;
    border-radius: 20px;
    border: 1px solid rgba(42, 42, 42, 0.04);
    background: #fcfcfc;
    padding: 20px;
    overflow: hidden;
}

.single-page .single-aside .single-aside-post .single-post-label {
    color: var(--text, #101857);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    /* 150% */
    margin-bottom: 20px;
}

.single-page .single-aside .single-aside-post .single-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-page .single-aside .single-aside-post .single-post-item img {
    width: 44px;
    height: 44px;
    aspect-ratio: 1/1;
    border-radius: 8px;
}

.single-page .single-aside .single-aside-post .single-post-item p {
    color: var(--text, #101857);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.42;
    /* 142.857% */
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.single-page .single-aside .single-aside-post .single-post-line {
    background: #f4f1f3;
    height: 1px;
    width: 100%;
    margin: 20px 0;
}

/*  */
.our-blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-bottom: 20px;
}

.our-blog .our-blog-heading {
    color: var(--text, #101857);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.27;
    /* 127.273% */
    text-transform: capitalize;
}

.our-blog .our-blog-swiper {
    width: 100%;
    position: relative;
}

.our-blog .our-blog-swiper .ourblogswiper {
    height: 438px;
}

.our-blog .ourblogswiper .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}

.our-blog .ourblogswiper .swiper-slide img {
    height: 220px;
    width: 100%;
    margin-bottom: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

.our-blog .ourblogswiper .swiper-slide .swiper-slide-title {
    color: var(--text, #101857);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.our-blog .ourblogswiper .swiper-slide .swiper-slide-excerpt {
    color: rgba(16, 24, 87, 0.8);
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.37;
    /* 137.5% */
    margin-bottom: 20px;
    -webkit-line-clamp: 4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.our-blog .ourblogswiper .swiper-slide .swiper-slide-more {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
}

.our-blog .ourblogswiper .swiper-slide .swiper-slide-more p {
    color: var(--Green, #098b43);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.22;
    /* 122.222% */
}

.our-blog .ourblogswiper .swiper-slide .swiper-slide-more svg {
    width: 16px;
    height: 16px;
}

.our-blog .ourblogswiper-button-next {
    position: absolute;
    z-index: 50;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: 1px solid var(--Green, #098b43);
}

.our-blog .ourblogswiper-button-prev {
    position: absolute;
    z-index: 50;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: 1px solid var(--Green, #098b43);
}

.hidden-fields-container {
    display: none;
}

@media (max-width: 639px) {
    .single-page {
        flex-direction: column;
        padding: 40px 16px;
    }

    .our-blog {
        gap: 20px;
    }

    .our-blog .our-blog-swiper {
        width: 100%;
    }

    .our-blog .our-blog-heading {
        padding: 0 16px;
    }

    .our-blog .our-blog-swiper .ourblogswiper {
        width: 100%;
        padding: 0 16px;
    }

    .our-blog .ourblogswiper-button-next,
    .our-blog .ourblogswiper-button-prev {
        display: none;
    }

    .single-page .single-content .single-infor {
        flex-direction: column;
        align-items: start;
    }

    .single-page .single-content .single-infor-line {
        display: none;
    }
}