/* ============================================================
   HERO SLIDER SECTION
============================================================ */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slider .slide-item {
    outline: none;
}

.hero-slider .slide-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .slide-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-slider .slide-picture {
    display: block;
    width: 100%;
}

.hero-slider .slide-img {
    width: 100%;
    height: auto;
    /* max-height: 650px; */
    object-fit: cover;
    display: block;
    margin: 0 auto;
    aspect-ratio: 1920 / 700;
}

/* Slick Fade & Transition */
.hero-slider .slick-slide {
    outline: none;
}

/* Custom Navigation Arrows (Translucent white circular buttons like sample) */
.hero-slider .slick-prev.hero-arrow,
.hero-slider .slick-next.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ddd8d7cf !important;
    /* backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4); */
    color: var(--color-third);
    font-size: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    opacity: 1;
}

.hero-slider .slick-prev.hero-arrow {
    left: 24px;
}

.hero-slider .slick-next.hero-arrow {
    right: 24px;
}

/* .hero-slider .slick-prev.hero-arrow:hover,
.hero-slider .slick-next.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
} */

.hero-slider .slick-prev.hero-arrow svg,
.hero-slider .slick-next.hero-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Custom Controls Container (Dots Progress + Play/Pause) */
.hero-slider-controls {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
    /* background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2); */
}

.hero-slider-dots-custom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot-item {
    position: relative;
    width: 96px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.hero-dot-item.is-active {
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot-item .hero-dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-third);
    border-radius: 4px;
    will-change: width;
}

/* Play / Pause Toggle Button */
.hero-slider-playpause-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
    outline: none;
}

.hero-slider-playpause-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.hero-slider-playpause-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .hero-slider .slick-prev.hero-arrow,
    .hero-slider .slick-next.hero-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-slider .slick-prev.hero-arrow {
        left: 12px;
    }

    .hero-slider .slick-next.hero-arrow {
        right: 12px;
    }

    .hero-slider .slick-prev.hero-arrow svg,
    .hero-slider .slick-next.hero-arrow svg {
        width: 16px;
        height: 16px;
    }

    .hero-slider-controls {
        gap: 10px;
    }

    .hero-dot-item {
        width: 25px;
    }

}

/* ============================================================
   HOME PREFACE (VỀ CHÚNG TÔI) SECTION
============================================================ */
.home-preface {
    padding: 60px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home-preface__block {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 45px;
    align-items: center;
}

/* --- Left Column: Images --- */
.home-preface__imgs {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-preface__imgs-child {
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #f8fafc;
}

.home-preface__imgs-child img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hover-effect_1:hover img {
    transform: scale(1.03);
}

/* --- Right Column: Info --- */
.home-preface__info {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Decorative Top-Right Icon */
.home-preface__icon {
    position: absolute;
    top: -10px;
    right: 0;
    width: 75px;
    height: 75px;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
}

.home-preface__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Section Title */
.home-preface__ttl {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-preface__ttl-lead {
    display: block;
    line-height: .9;
    font-size: 16px;
    padding-left: 85px;
    color: #333;
    position: relative;
    margin-bottom: 8px;
    font-weight: 400;
}

.home-preface__ttl-lead::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: 4px;
    width: 76px;
    background: var(--color-third);
}

.home-preface__ttl-lead::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 4px;
    height: 6px;
    width: 12px;
    background: #fff;
}

.home-preface__ttl-ttl {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    color: var(--color-third);
    text-transform: uppercase;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

/* Section Description */
.home-preface__desc {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.home-preface__desc p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.home-preface__desc p:last-child {
    margin-bottom: 0;
}

.home-preface__desc strong {
    color: #1a202c;
    font-weight: 700;
}

/* Vision & Mission Values */
.home-preface__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.home-preface__values-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease;
}

.home-preface__values-item:hover {
    transform: translateX(4px);
}

.home-preface__values-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.home-preface__values-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-preface__values-ct {
    flex: 1;
}

.home-preface__values-ttl {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.home-preface__values-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
}

/* Button Component */
.c-btn__01 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background-color: var(--color-third);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.c-btn__01:hover {
    background-color: var(--color-third);
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    color: #ffffff !important;
}

.c-btn__01-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.c-btn__01-icon path {
    fill: #ffffff;
}

.c-btn__01:hover .c-btn__01-icon {
    transform: translateX(4px);
}

/* ============================================================
   HOME PORTFOLIO (SẢN PHẨM & DỊCH VỤ) SECTION
============================================================ */
.home-portfolio {
    position: relative;
    padding: 50px 0 30px;
    background: linear-gradient(180deg, var(--color-third) 0%, var(--color-third) 370px, #ffffff 280px, #ffffff 100%);
}

.home-portfolio .c-ttl__02 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 29px;
}

.home-portfolio .c-ttl__02 .ttl {
    font-size: clamp(26px, 3.5vw, 30px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.home-portfolio .c-ttl__02 .small {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.92;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Slider Track & Cards */
.slider-service .slick-list {
    margin: 0 -7px;
}


.slider-service .slick-slide {
    margin: 0px 7px 15px;
}

.slider-service .slick-track {
    display: flex !important;
}

.slider-service .slick-slide>div {
    height: 100%;
    display: flex;
    width: 100%;
}

.slider-service__wrap {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, .04);
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Card Image */
.slider-service__img {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
    margin: 0;
    background-color: #f8fafc;
}

.slider-service__img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.slider-service__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slider-service__img:hover img {
    transform: scale(1.05);
}

/* Card Content Body */
.slider-service__ct {
    padding: 22px 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.slider-service__cate {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 8px;
}

.slider-service__cate a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.slider-service__cate a:hover {
    color: var(--color-third);
}

.slider-service__ttl {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    height: 48px;
}

.slider-service__ttl a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.slider-service__ttl a:hover {
    color: var(--color-hover, var(--color-third));
    filter: brightness(0.85);
}

.slider-service__desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bottom Action Link */
.slider-service__btn {
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-third);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-top: auto;
    position: relative;
}

.slider-service__btn-svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.slider-service__btn-svg polyline,
.slider-service__btn-svg line {
    stroke: currentColor;
}

.slider-service__wrap:hover .slider-service__btn {
    color: white;
}

.slider-service__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, var(--color-third) 10%, #4eaae2 100%);
    z-index: 0;
    transition: all .3s ease-in;
}

.slider-service__wrap:hover .slider-service__btn::before {
    height: 100%;
}

.slider-service__btn>* {
    z-index: 2;
}

/* Slick Dots Styling */
.slider-service .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    gap: 8px;
}

.slider-service .slick-dots li {
    margin: 0;
    padding: 0;
}

.slider-service .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-service .slick-dots li.slick-active button {
    background: var(--color-third);
    width: 24px;
    border-radius: 6px;
}

/* ============================================================
   HOME ACTIVITIES (HÌNH ẢNH HOẠT ĐỘNG CÔNG TY) SECTION
============================================================ */
.home-activities {
    padding: 50px 0;
    background-color: #f8fafc;
}

.home-activities__head {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.home-activities__ttl {
    font-size: clamp(24px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--color-third);
    text-transform: uppercase;
    margin: 0;
}

.home-activities__more {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-third);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.home-activities__more:hover {
    color: var(--color-hover, var(--color-third));
}

.home-activities__more-icon {
    transition: transform 0.3s ease;
}

.home-activities__more:hover .home-activities__more-icon {
    transform: translateX(3px);
}

/* Grid Layout */
.home-activities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Item Card */
.home-activities__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    background-color: #181818;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-activities__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Image container */
.home-activities__img {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    margin: 0;
}

.home-activities__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-activities__item:hover .home-activities__img img {
    transform: scale(1.06);
}

/* Caption bar at bottom */
.home-activities__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.9);
    padding: 10px 12px;
    text-align: center;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.home-activities__caption span {
    font-size: 14.5px;
    font-weight: 600;
    color: #ffffff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-activities__item:hover .home-activities__caption {
    background-color: var(--color-third);
}

/* ============================================================
   RESPONSIVE DESIGN
============================================================ */
@media (max-width: 991px) {
    .home-preface {
        padding: 45px 0;
    }

    .home-preface__block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .home-preface__imgs {
        max-width: 600px;
        margin: 0 auto;
        order: 1;
    }

    .home-preface__icon {
        width: 60px;
        height: 60px;
        opacity: 0.7;
    }

    .home-portfolio {
        padding: 40px 0;
        background: linear-gradient(180deg, var(--color-third) 0%, var(--color-third) 240px, #ffffff 240px, #ffffff 100%);
    }

    .home-portfolio .c-ttl__02 {
        margin-bottom: 30px;
    }

    .home-activities {
        padding: 45px 0;
    }

    .home-activities__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-slider .slick-prev.hero-arrow,
    .hero-slider .slick-next.hero-arrow {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .home-preface {
        padding: 35px 0;
    }

    .home-preface__ttl-lead {
        font-size: 14px;
    }

    .home-preface__ttl-ttl {
        font-size: 22px;
    }

    .home-preface__icon {
        width: 45px;
        height: 45px;
        top: -5px;
        opacity: 0.5;
    }

    .home-preface__desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .home-preface__values {
        gap: 16px;
        margin-bottom: 24px;
    }

    .home-preface__values-icon {
        width: 42px;
        height: 42px;
    }

    .home-preface__values-ttl {
        font-size: 15px;
    }

    .home-preface__values-desc {
        font-size: 13.5px;
    }

    .c-btn__01 {
        width: 100%;
        padding: 11px 20px;
    }

    .home-portfolio {
        padding: 40px 0 50px;
        background: linear-gradient(180deg, var(--color-third) 0%, var(--color-third) 220px, #ffffff 220px, #ffffff 100%);
    }

    .home-portfolio .c-ttl__02 .ttl {
        font-size: 22px;
    }

    .home-portfolio .c-ttl__02 .small {
        font-size: 13.5px;
    }

    .slider-service__ct {
        padding: 18px 16px 14px;
    }

    .slider-service__ttl {
        font-size: 15.5px;
    }

    .slider-service__btn {
        padding: 14px 16px;
    }

    .home-activities {
        padding: 35px 0;
    }

    .home-activities__head {
        margin-bottom: 20px;
    }

    .home-activities__ttl {
        font-size: 20px;
    }

    .home-activities__more {
        font-size: 13.5px;
    }

    .home-activities__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-activities__caption {
        padding: 8px 6px;
    }

    .home-activities__caption span {
        font-size: 12.5px;
    }
}

/* ============================================================
   SECTION 1: LOGISTICS SHARING (Top Image Card Style)
============================================================ */
.logistics-sharing {
    padding: 50px 0;
    background-color: #ffffff;
}

.logistics-sharing__head {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 20px;
}

.logistics-sharing__ttl {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-third);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.3;
}

.logistics-sharing__sub {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.logistics-sharing__slider {
    margin: 0 -10px;
}

.logistics-sharing__slider .slick-list {
    padding: 10px 0 20px;
}

.logistics-card {
    padding: 0 10px;
    outline: none;
}

.logistics-card__inner {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.logistics-card__inner:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08); */
    border-color: #cbd5e1;
}

.logistics-card__thumb {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.logistics-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.logistics-card__inner:hover .logistics-card__thumb img {
    transform: scale(1.06);
}

.logistics-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.logistics-card__ttl {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 50px;
    transition: color 0.25s ease;
}

.logistics-card__inner:hover .logistics-card__ttl {
    color: var(--color-third, #0284c7);
}

.logistics-card__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 12px;
}

.logistics-card__date svg {
    color: #94a3b8;
}

.logistics-card__desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logistics-sharing__slider .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    /* gap: 8px; */
}

.logistics-sharing__slider .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logistics-sharing__slider .slick-dots li.slick-active button {
    background: var(--color-third, #0284c7);
    width: 26px;
    border-radius: 6px;
}

/* ============================================================
   SECTION 2: NEWS & KNOWLEDGE SHARING (Side-by-side Thumbnail)
============================================================ */
.news-knowledge {
    padding: 50px 0;
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.news-knowledge__head {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.news-knowledge__ttl {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-third);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.3;
}

.news-knowledge__sub {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.news-knowledge__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-knowledge__grid .news-card {
    padding: 0;
    outline: none;
}

.news-card__inner {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.news-card__inner:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08); */
    border-color: #cbd5e1;
}

.news-card__ttl {
    font-size: 16.5px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 46px;
    transition: color 0.25s ease;
}

.news-card__inner:hover .news-card__ttl {
    color: var(--color-third, #0284c7);
}

.news-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 500;
    color: #64748b;
}

.meta-icon {
    width: 14px;
    height: 14px;
    color: #64748b;
    flex-shrink: 0;
}

.news-card__body {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-grow: 1;
}

.news-card__thumb {
    position: relative;
    width: 110px;
    height: 95px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.news-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-card__inner:hover .news-card__thumb img {
    transform: scale(1.08);
}

.news-card__desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-knowledge__slider .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    gap: 8px;
}

.news-knowledge__slider .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-knowledge__slider .slick-dots li.slick-active button {
    background: var(--color-third, #0284c7);
    width: 26px;
    border-radius: 6px;
}

@media (max-width: 991px) {

    .logistics-sharing,
    .news-knowledge {
        padding: 45px 0;
    }

    .logistics-sharing__ttl,
    .news-knowledge__ttl {
        font-size: 24px;
    }

    .logistics-card__thumb {
        height: 200px;
    }
}

@media (max-width: 576px) {

    .logistics-sharing,
    .news-knowledge {
        padding: 35px 0;
    }

    .logistics-sharing__ttl,
    .news-knowledge__ttl {
        font-size: 20px;
    }

    .logistics-sharing__sub,
    .news-knowledge__sub {
        font-size: 13.5px;
    }

    .logistics-card__thumb {
        height: 190px;
    }

    .logistics-card__content,
    .news-card__inner {
        padding: 16px;
    }

    .logistics-card__ttl,
    .news-card__ttl {
        font-size: 15.5px;
        min-height: 44px;
    }

    .news-knowledge__head,
    .logistics-sharing__head {
        margin: 0 auto 20px;
    }
}

@media (max-width: 991px) {
    .news-knowledge__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .news-knowledge__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
