﻿/* ==============================
   Home Banner
============================== */

.home-banner {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #111;
}

/* 单个 banner */
.home-banner-slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 520px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity .8s ease, visibility .8s ease;
}

.home-banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* 图片区域 */
.home-banner-pic {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-banner-pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 内容容器：对应 HTML 里的 container mar0 home-banner-container */
.home-banner-container {
    position: relative;
    height: 100%;
    z-index: 3;
}

/* 文字内容 */
.home-banner-text {
    position: absolute;
    left: 0;
    top: 50%;
    max-width: 620px;
    transform: translateY(-50%);
    color: #fff;
}

.home-banner-text h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.28;
    font-weight: 500;
    letter-spacing: .3px;
    color: #fff;
}

.home-banner-text h2 strong {
    font-weight: 700;
    color: #fff;
}

.home-banner-text p {
    margin: 24px 0 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.95);
}

/* 按钮 */
.home-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 48px;
    margin-top: 36px;
    padding: 0 28px;
    box-sizing: border-box;
    background: #e886ae;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    border: none;
    transition: all .3s ease;
}

.home-banner-btn span {
    display: inline-block;
    margin-left: 8px;
    font-size: 22px;
    line-height: 1;
    transition: transform .3s ease;
}

.home-banner-btn:hover {
    background: #d8759e;
    color: #fff;
    text-decoration: none;
}

.home-banner-btn:hover span {
    transform: translateX(4px);
}

/* 圆点切换 */
.home-banner-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-banner-dots span {
    display: block;
    width: 80px;
    height: 6px;
    border-radius: 10px;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: all .3s ease;
}

.home-banner-dots span.active {
    background: #fff;
}

/* 文字入场动画 */
.home-banner-slide.active .home-banner-text h2,
.home-banner-slide.active .home-banner-text p,
.home-banner-slide.active .home-banner-btn {
    animation: bannerTextUp .75s ease both;
}

.home-banner-slide.active .home-banner-text p {
    animation-delay: .12s;
}

.home-banner-slide.active .home-banner-btn {
    animation-delay: .24s;
}

@keyframes bannerTextUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==============================
   Home Services
============================== */

.home-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    padding: 38px 0 42px;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.home-service-item {
    display: flex;
    align-items: flex-start;
}

.home-service-icon {
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    margin-right: 16px;
}

.home-service-icon img {
    display: block;
    width: 66px;
    height: 66px; border-radius: 6px;
    object-fit: contain;
}

.home-service-text {
    flex: 1;
    padding-top: 2px;
}

.home-service-text h3 {
    margin: 0 0 5px;
    color: #111;
    font-size: 18px;
    line-height: 1.35;
}

.home-service-text p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.65;
}


/* ==============================
   Home Title
============================== */

.home-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:60px 0 35px;
    box-sizing: border-box;
}

.home-title-left {
    position: relative;
}

.home-title-left h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #111;
    font-size: 36px;
    line-height: 1.25;
}

/* 标题后面的圈圈 */
.home-title-left:after {
    content: "";
    position: absolute;
    right: -36px;
    top: -8px;
    width: 44px;
    height: 44px;
    background: url("../images/hometitlebg.png") no-repeat center;
    background-size: contain;
    z-index: 1;
}

/* View More 按钮 */
.home-title-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 50px;
    padding: 0 28px;
    box-sizing: border-box;
    border-radius: 50px;
    background: #f5f5f5;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}

.home-title-more span {
    display: block;
    width: 0;
    height: 0;
    margin-right: 18px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #e886ae;
    transition: all .3s ease;
}

.home-title-more:hover {
    background: #e886ae;
    color: #fff;
    text-decoration: none;
}

.home-title-more:hover span {
    border-left-color: #fff;
    transform: translateX(4px);
}

/* View More1 按钮 */
.home-title-more1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 50px;
    padding: 0 28px;
    box-sizing: border-box;
    border-radius: 50px;
    background: #fff;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}

.home-title-more1 span {
    display: block;
    width: 0;
    height: 0;
    margin-right: 18px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #e886ae;
    transition: all .3s ease;
}

.home-title-more1:hover {
    background: #e886ae;
    color: #fff;
    text-decoration: none;
}

.home-title-more1:hover span {
    border-left-color: #fff;
    transform: translateX(4px);
}

/* ==============================
   Home Selected Products
============================== */

.home-selected {
    position: relative;
    padding: 0 0 60px;
    box-sizing: border-box;
    overflow: visible;
}

/* 产品横向区域 */
.home-selected-list {
    display: flex;
    gap: 20px;

    /* 这里保留横向滚动能力 */
    overflow-x: hidden;
    overflow-y: visible;

    /* 重点：给阴影留空间，避免被切掉 */
    padding: 18px 6px 24px;
    margin: -18px -6px -24px;

    box-sizing: border-box;

    /* 不要和 JS animate 同时 smooth，否则会卡顿 */
    scroll-behavior: auto;
}

/* 隐藏滚动条 */
.home-selected-list::-webkit-scrollbar {
    display: none;
}

.home-selected-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 产品卡片 */
.home-product-card {
    flex: 0 0 calc((100% - 80px) / 5);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(0, 0, 0, .08);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.home-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .13);
}

/* 图片 */
.home-product-img {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 20px 10px;
    box-sizing: border-box;
}

.home-product-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.home-product-img img {
    display: block;
    max-width: 100%;
    max-height: 190px;
    object-fit: contain;
    transition: transform .3s ease;
}

.home-product-card:hover .home-product-img img {
    transform: scale(1.04);
}

/* 文字 */
.home-product-info {
    padding: 8px 30px 20px;
    box-sizing: border-box;
}

.home-product-info h3 {
    margin: 0 0 8px;
    text-align: center;
    font-size: 18px;
    line-height: 28px; height: 28px; overflow: hidden;
}

.home-product-info h3 a {
    text-decoration: none;
    transition: all .3s ease;
}


.home-product-info h3 a:hover {
    color: #e886ae;
}

.home-product-info p {
    margin: 0 0 22px;
    text-align: center;
    color: #666;
    font-size: 15px;
    line-height: 1.4;
}

/* Quick Add */
.home-product-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 36px;
    padding: 0 16px;
    box-sizing: border-box;
    border-radius: 30px;
    background: #f3f3f3;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all .3s ease;
}

.home-product-btn i {
    font-size: 17px;
    color: #333;
    transition: all .3s ease;
}

.home-product-card:hover h3 a{ color: #e886ae;}
.home-product-card:hover .home-product-btn {
    background: #e886ae;
    color: #fff;
}


.home-product-card:hover .home-product-btn i {
    color: #fff;
}

/* 左右箭头 */
.home-selected-arrow {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    border: 1px solid #e886ae;
    border-radius: 50%;
    background: #fff;
    color: #e886ae;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.home-selected-arrow:hover {
    background: #e886ae;
    color: #fff;
}

.home-selected-arrow.disabled {
    opacity: .35;
    cursor: not-allowed;
}

.home-selected-prev {
    left: -70px;
}

.home-selected-next {
    right: -70px;
}

/* ==============================
   Home Manufacturer
============================== */

.home-manu {
    padding-bottom: 60px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.home-manu-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    will-change: transform;
}

.home-manu-item {
    flex: 0 0 200px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    text-decoration: none;
    overflow: hidden;
    transition: all .3s ease;
}

.home-manu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.home-manu-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .3s ease;
}

.home-manu-item:hover img {
    transform: scale(1.05);
}


/* ==============================
   Home About
============================== */

.home-about {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
    box-sizing: border-box;
}

/* 左侧图片 */
.home-about-img {
    position: relative;
}

.home-about-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 右侧文字 */
.home-about-text {
    padding-top: 5px;
}

.home-about-text h2 {
    margin: 0 0 24px;
    color: #111;
    font-size: 32px;
    line-height: 1.35;
    font-weight: 700;
}

.home-about-text p {
    margin: 0 0 22px;
    color: #666;
    font-size: 16px;
    line-height: 1.65;
}

/* 按钮 */
.home-about-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 60px;
    margin-top: 12px;
    padding: 0 32px;
    box-sizing: border-box;
    border-radius: 60px;
    background: #e886ae;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}

.home-about-more span {
    display: block;
    width: 0;
    height: 0;
    margin-right: 22px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 13px solid #fff;
    transition: all .3s ease;
}

.home-about-more:hover {
    background: #d8709b;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(232, 134, 174, .35);
}

.home-about-more:hover span {
    transform: translateX(4px);
}




/* ==============================
   Home Application
============================== */

.home-application {
    position: relative;
    padding: 10px 0 50px;
    box-sizing: border-box;
    overflow: visible;
}

.home-app-list {
    display: flex;
    gap: 12px;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 0;
    scroll-behavior: auto;
}

.home-app-list::-webkit-scrollbar {
    display: none;
}

.home-app-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-app-item {
    flex: 0 0 calc((100% - 24px) / 3);
    background: #fff;
    overflow: hidden;
}

.home-app-img {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    text-decoration: none;
}

.home-app-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .35s ease;
}

.home-app-item:hover .home-app-img img {
    transform: scale(1.04);
}

.home-app-info {
    padding: 12px 0 0;
    box-sizing: border-box;
}

.home-app-info h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}

.home-app-info h3 a {
    position: relative;
    display: inline-block;
    color: #111;
    text-decoration: none;
    transition: all .3s ease;
}

/* 默认不要粉色和下划线 */
.home-app-info h3 a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #e886ae;
    transition: width .3s ease;
}

/* 鼠标经过才变粉色和下划线 */
.home-app-item:hover .home-app-info h3 a {
    color: #e886ae;
}

.home-app-item:hover .home-app-info h3 a:after {
    width: 100%;
}

.home-app-info p {
    margin: 0;
    color: #444;
    font-size: 16px;
    line-height: 1.55;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 左右箭头 */
.home-app-arrow {
    position: absolute;
    top: 38%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    border: 1px solid #e886ae;
    border-radius: 50%;
    background: #fff;
    color: #e886ae;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.home-app-arrow:hover {
    background: #e886ae;
    color: #fff;
}

.home-app-arrow.disabled {
    opacity: .35;
    cursor: not-allowed;
}

.home-app-prev {
    left: -70px;
}

.home-app-next {
    right: -70px;
}


/* ==============================
   Home Support
============================== */

.home-support {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.home-support-item {
    display: block;
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px 38px;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
}

.home-support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    text-decoration: none;
}

.home-support-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
}

.home-support-icon img {
    display: block;
    width: 66px;
    height: 66px;
    object-fit: contain;
    border-radius: 6px;
}

.home-support-item h3 {
    margin: 0 0 16px;
    color: #111;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    transition: all .3s ease;
}

.home-support-item p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    transition: all .3s ease;
}

.home-support-item:hover h3 {
    color: #e886ae;
}

.home-support-item:hover p {
    color: #555;
}

/* ==============================
   Home Blogs
============================== */

.home-blogs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  padding-bottom: 60px;
    box-sizing: border-box;
}

.home-blog-item {
    display: block;
    padding: 22px 20px 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(0, 0, 0, .08);
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
}

.home-blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
    text-decoration: none;
}

/* 日期 */
.home-blog-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    color: #666;
    font-size: 16px;
    line-height: 1.4;
}

.home-blog-date i {
    color: #e886ae;
    font-size: 15px;
}

/* 标题 */
.home-blog-item h3 {
    height: 48px;
    margin: 0 0 20px;
    color: #111;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
    overflow: hidden;
    transition: all .3s ease;
}

.home-blog-item:hover h3 {
    color: #e886ae;
}

/* 图片 */
.home-blog-img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
}

.home-blog-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .35s ease;
}

.home-blog-item:hover .home-blog-img img {
    transform: scale(1.05);
}






/* ==============================
   Mobile <= 768px
============================== */

@media screen and (max-width: 768px) {

    .home-banner {
        height: 420px;
    }

    .home-banner-slide {
        height: 420px;
    }

    .home-banner-pic {
        height: 100%;
    }

    .home-banner-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-banner-container {
        width: 100%;
        height: 100%;
        padding: 0 22px;
        box-sizing: border-box;
    }

    .home-banner-text {
        left: 22px;
        right: 22px;
        top: 50%;
        max-width: none;
    }

    .home-banner-text h2 {
        font-size: 28px;
        line-height: 1.35;
        letter-spacing: 0;
    }

    .home-banner-text p {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.7;
    }

    .home-banner-btn {
        min-width: 138px;
        height: 42px;
        margin-top: 26px;
        padding: 0 22px;
        font-size: 14px;
    }

    .home-banner-btn span {
        font-size: 20px;
        margin-left: 6px;
    }

    .home-banner-dots {
        bottom: 14px;
        gap: 8px;
    }

    .home-banner-dots span {
        width: 42px;
        height: 5px;
    }
	
	 .home-services {
	        display: block;
	        padding: 20px 0;
	    }
	
	    .home-service-item {
	        margin-bottom: 22px;
	    }
	
	    .home-service-item:last-child {
	        margin-bottom: 0;
	    }
	
	    .home-service-icon {
	        flex: 0 0 58px;
	        width: 58px;
	        height: 58px;
	        margin-right: 14px;
	    }
	
	    .home-service-icon img {
	        width: 58px;
	        height: 58px;
	    }
	
	    .home-service-text h3 {
	        margin-bottom: 3px;
	        font-size: 16px;
	    }
	
	    .home-service-text p {
	        font-size: 14px;
	        line-height: 1.55;
	    }
	
	
	 .home-title {
	        padding: 20px 0;
	    }
	
	    .home-title-left h2 {
	        font-size: 1.1rem;
	    }
	
	    .home-title-left:after {
	        right: -28px;
	        top: -6px;
	        width: 34px;
	        height: 34px;
	    }
	
	    .home-title-more {
	        min-width: 126px;
	        height: 40px;
	        padding: 0 16px;
	        font-size: 14px;
	    }
	
	    .home-title-more span {
	        margin-right: 10px;
	        border-top-width: 6px;
	        border-bottom-width: 6px;
	        border-left-width: 9px;
	    }
		.home-title-more1 {
		    min-width: 126px;
		    height: 40px;
		    padding: 0 16px;
		    font-size: 14px;
		}
			
		.home-title-more1 span {
		    margin-right: 10px;
		    border-top-width: 6px;
		    border-bottom-width: 6px;
		    border-left-width: 9px;
		}
		.home-selected {
		        padding: 0 15px 38px;
		    }
		
		    .home-selected-list {
		        gap: 15px;
		        padding: 16px 5px 22px;
		        margin: -16px -5px -22px;
		    }
		
		    .home-product-card {
		        flex: 0 0 calc((100% - 15px) / 2);
		    }
		
		    .home-product-img {
		        height: 170px;
		        padding: 18px 15px 8px;
		    }
		
		    .home-product-img img {
		        max-height: 145px;
		    }
		
		    .home-product-info {
		        padding: 5px 14px 16px;
		    }
		
		    .home-product-info h3 {
		        font-size: 15px;
		        min-height: 40px;
		        display: flex;
		        align-items: center;
		        justify-content: center;
		    }
		
		    .home-product-info p {
		        font-size: 13px;
		        margin-bottom: 15px;
		    }
		
		    .home-product-btn {
		        height: 34px;
		        padding: 0 12px;
		        font-size: 13px;
		    }
		
		    .home-product-btn i {
		        font-size: 15px;
		    }
		
		    .home-selected-arrow {
		        width: 38px;
		        height: 38px;
		        margin-top: -19px;
		        font-size: 22px;
		        background: rgba(255, 255, 255, .95);
		    }
		
		    .home-selected-prev {
		        left: 3px;
		    }
		
		    .home-selected-next {
		        right: 3px;
		    }
		
		.home-manu {
        padding-bottom: 36px;
    }

    .home-manu-track {
        gap: 10px;
    }

    .home-manu-item {
        flex: 0 0 150px;
        height: 68px;
        padding: 8px;
        border-radius: 4px;
    }

    .home-manu-item:hover {
        transform: none;
        box-shadow: none;
    }

    .home-manu-item:hover img {
        transform: none;
    }
			
		 .home-about {
		        display: block;
		    }
		
		    .home-about-img {
		        margin-bottom: 20px;
		    }
		
		    .home-about-text h2 {
		        margin-bottom: 18px;
		        font-size: 24px;
		        line-height: 1.35;
		    }
		
		    .home-about-text p {
		        margin-bottom: 16px;
		        font-size: 14px;
		        line-height: 1.7;
		    }
		
		    .home-about-more {
		        min-width: 150px;
		        height: 46px;
		        margin-top: 8px;
		        padding: 0 24px;
		        font-size: 15px;
		    }
		
		    .home-about-more span {
		        margin-right: 12px;
		        border-top-width: 7px;
		        border-bottom-width: 7px;
		        border-left-width: 10px;
		    }	
			
 .home-application {
        padding: 5px 15px 38px;
    }

    .home-app-list {
        gap: 15px;
    }

    .home-app-item {
        flex: 0 0 82%;
    }

    .home-app-img {
        height: 190px;
    }

    .home-app-info {
        padding-top: 10px;
    }

    .home-app-info h3 {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .home-app-info p {
        font-size: 14px;
        line-height: 1.55;
    }

    .home-app-arrow {
        width: 38px;
        height: 38px;
        margin-top: -19px;
        font-size: 22px;
        background: rgba(255, 255, 255, .95);
    }

    .home-app-prev {
        left: 3px;
    }

    .home-app-next {
        right: 3px;
    }			
			
	.home-support {
	        display: block;
	      padding-bottom: 30px;
	    }
	
	    .home-support-item {
	        padding: 28px 22px 26px;
	        margin-bottom: 18px;
	        border-radius: 8px;
	    }
	
	    .home-support-item:last-child {
	        margin-bottom: 0;
	    }
	
	    .home-support-icon {
	        width: 58px;
	        height: 58px;
	        margin-bottom: 18px;
	    }
	
	    .home-support-icon img {
	        width: 58px;
	        height: 58px;
	        border-radius: 6px;
	    }
	
	    .home-support-item h3 {
	        margin-bottom: 12px;
	        font-size: 17px;
	        line-height: 1.4;
	    }
	
	    .home-support-item p {
	        font-size: 14px;
	        line-height: 1.65;
	    }		
		
	 .home-blogs {
	        grid-template-columns: 1fr;
	        gap: 16px;
	        padding-bottom: 30px;
	    }
	
	    .home-blog-item {
	        padding: 18px 16px 12px;
	        border-radius: 8px;
	    }
	
	    .home-blog-date {
	        margin-bottom: 16px;
	        font-size: 14px;
	    }
	
	    .home-blog-item h3 {
	        height: auto;
	        margin-bottom: 16px;
	        font-size: 15px;
	        line-height: 1.5;
	    }
	
	    .home-blog-img {
	        height: 190px;
	    }	
		
		
}





