    /* RESET เล็กน้อย */
        .blog-hero,
        .blog-section,
        .blog-card,
        .blog-header,
        .blog-list {
            box-sizing: border-box;
        }
        .blog-hero * ,
        .blog-section * {
            box-sizing: inherit;
        }

        

        a {
            color: inherit;
            text-decoration: none;
        }
        a:hover {
            text-decoration: none;
        }

        /* HERO SECTION */
        .blog-hero {
            position: relative;
            width: 100%;
            height: 420px;
            overflow: hidden;
        }
        .blog-hero__image {
    height: 100%;
}
        @media (min-width: 1200px) {
            .blog-hero {
                height: 480px;
            }
        }

        .blog-hero__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.03);
        }

        .blog-hero__overlay {
            position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(0, 0, 0, 0.05) 100%, transparent 100%);
    display: flex;
    align-items: flex-end;
        }

        .blog-hero__content {
            max-width: 1080px;
            margin: 0 auto 72px auto;
            padding: 0 24px;
            color: #fff;
        }

        .blog-hero__title {
            line-height: 1.3;
            font-weight: 600;
            margin: 0 0 12px 0;
                font-size: 34px;
            color: #FFF;
        }
    

        .blog-hero__title a{
                font-size: 38px;
    color: #FFF;
    line-height: 40px;
    font-weight: 500;
        }

        .blog-hero__title a:hover {
            opacity: .85;
            color: #FFF!important;
        }

        .blog-hero__excerpt {
        max-width: 95%;
    font-size: 18px;
    line-height: 1.7;
    color: #f1f1f1;
        }

        /* MAIN BLOG WRAPPER */
        .blog-section {
            padding: 64px 0 80px 0;
            background-color: #fff;
        }

        .blog-section__inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* BLOG HEADER */
        .blog-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
        }

        .blog-header__title {
            font-size: 52px !important;
    font-weight: 600 !important;
    letter-spacing: 0!important;
    margin: 0;
    padding: 0;
        }

        .blog-header__search {
            width: 260px;
            max-width: 100%;
        }

        .blog-search-form {
            position: relative;
            display: flex;
            align-items: center;
        }

        .blog-search-form__field {
            height: 40px;
    border-radius: 20px !important;
    border: 0 !important;
    padding: 0 40px 0 18px !important;
    font-size: 14px;
    outline: none;
    background-color: #f3f3f3!important;
    transition: all 0.3s ease;
        }

        .blog-search-form__field:focus {
            /* background-color: #fff; */
            border-color: #1b3bf1!important;
            /* box-shadow: 0 2px 8px rgba(27, 59, 241, 0.1); */
        }

        .blog-search-form__field::placeholder {
            color: #bbb;
            font-weight: 400;
        }

        .blog-search-form__button {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            border: none;
            background: transparent !important;
            padding: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            margin-top: -2px;
            margin-right: 2px;
        }

        .blog-search-form__button:hover {
            opacity: 0.7;
        }

        .blog-search-form__icon {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid #999;
            display: block;
            position: relative;
            transition: all 0.2s ease;
        }

        .blog-search-form__button:hover .blog-search-form__icon {
            border-color: #1b3bf1;
        }

        .blog-search-form__icon::after {
            content: "";
            position: absolute;
            width: 7px;
            height: 2px;
            background: #999;
            border-radius: 2px;
            right: -5px;
            bottom: -2px;
            transform: rotate(45deg);
            transition: all 0.2s ease;
        }

        .blog-search-form__button:hover .blog-search-form__icon::after {
            background: #1b3bf1;
        }

        /* CATEGORY TABS */
        .blog-tabs {
            margin-bottom: 40px;
            border-bottom: 1px solid #eee;
        }

        .blog-tabs__list {
            display: flex;
            gap: 28px;
            list-style: none;
            padding: 0;
            margin: 0 0 10px 0;
            font-size: 14px;
        }

        .blog-tabs__item a {
            position: relative;
            padding-bottom: 10px;
            color: #444;
        }

        .blog-tabs__item a:hover {
            color: #000;
        }

        .blog-tabs__item--active a {
            font-weight: 600;
        }

        .blog-tabs__item--active a::after {
        content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #1b3bf1;
        }

        /* BLOG LIST */
        .blog-list {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .blog-card {
            display: grid;
            grid-template-columns: 470px 1fr;
            gap: 40px;
            align-items: stretch;
        }

        @media (max-width: 768px) {
            .blog-card {
                        gap: 10px;
                grid-template-columns: 1fr;
            }
        }

        .blog-card__thumb a{
            display: block;
            border-radius: 4px;
    padding-bottom: calc(0.55 * 100%);
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    overflow: hidden;
        }

        .blog-card__thumb img {
            margin-bottom: 0;
    display: block;
    -o-transition: all .6s;
    -webkit-transition: all .6s;
    transition: all .6s;
    height: 100%;
    max-height: 100%!important;
    width: 100%;
    position: absolute;
    top: calc(50%);
    left: calc(50%);
    -webkit-transform: scale(1) translate(-50%, -50%);
    -ms-transform: scale(1) translate(-50%,-50%);
    transform: scale(1) translate(-50%, -50%);
    object-fit: cover;
        }

        .blog-card__thumb:hover img {
    width: 110%;
    height: 110%;
    max-height: 110% !important;
}


        .blog-card__body {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .blog-card__title {
    line-height: 20px!important;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 5px;
}

        .blog-card__title a {
        font-size: 24px !important;
            line-height: 1.1 !important;
            font-weight: 600 !important;
            margin: 0 0 10px 0;
            color: #000 !important;
                -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
        }

        .blog-card__title a:hover {
    color: #1b3bf1 !important;
}

        .blog-card__excerpt {
            font-size: 16px;
    line-height: 25px;
    color: #2f2f2f;
    max-width: 100%;
    margin-bottom: 12px;
        }

        .blog-card__meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 11px;
            margin: 8px 0 14px 0;
        }

        .blog-card__tags {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
        }

        .blog-card__tag {
        display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 4px;
    background: #000;
    color: #fff !important;
    font-size: 11px !important;
    text-transform: capitalize !important;
        -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
        }
            .blog-card__tag:hover {
    background: #333;    
            }

        .blog-card__date {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #999;
        }

        .blog-card__date-iconx {
            position: relative;
                width: 12px;
            height: 21px;
        }
        .blog-card__date-iconx svg {
            width: 12px;
            height: 12px;
            stroke: #999;
        }


        .blog-card__date-text {
            font-size: 11px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .blog-card__readmore {
            margin-bottom: 0;
            font-size: 12px;
            text-align: right;
        }

        .blog-card__readmore-link {
            font-weight: 600 !important;
    color: #EE3238 !important;
    font-size: 14px !important;
        }
        .blog-card__readmore-link:hover {
            text-decoration: underline;
        }

        .blog-card__divider {
            width: 100%;
            height: 1px;
            background: #000000;
            margin-top: 4px;
        }

        /* PAGINATION */
        .blog-pagination {
            margin-top: 40px;
    text-align: center;
    display: flex;
    font-size: 14px;
    justify-content: center;
    align-items: center;
        }

        .blog-pagination .page-numbers {
                margin: 0 4px;
    padding: 6px 10px;
    border-radius: 50%;
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
        }

        .blog-pagination .page-numbers.current {
            background: #000;
            color: #fff;
            border-color: #000;
        }

        .blog-pagination .page-numbers:hover {
            border-color: #ccc;
        }
.blog-pagination .prev.page-numbers, .blog-pagination .next.page-numbers {
    padding: 7px;
}
        .blog-empty {
            text-align: center;
            color: #777;
            font-size: 14px;
        }



/*for Mobile*/
@media (max-width: 767px) {
    .blog-header__title {
    font-size: 42px !important;
}
    .blog-header {
    flex-direction: column;
    align-items: start;
    gap: 11px;
}
    .blog-hero__title a,
    .blog-hero__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
    overflow: hidden;
}
.blog-hero__title a {
    font-size: 24px;
    line-height: 34px;
}
.blog-hero__content {
    padding-top: 119px !important;
}

}
/* end for Mobile */

/*for tabletV*/
@media (min-width: 768px) and (max-width: 991px) {
    .blog-card {
    grid-template-columns: 350px 1fr;
}
.blog-card__title a {
    font-size: 20px !important;
}
        .blog-hero__title a,
    .blog-hero__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
    overflow: hidden;
}
}
/* end for tabletV */

/*for tabletH*/
@media (min-width: 992px) and (max-width: 1199px) {
}
/* end for tabletH */