/* BOX */
.kinh_nghiem {
    background: var(--color-white);
    border-radius: 24px;
    padding: 15px 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

/* ICON */
.kinh_nghiem .icon-box-img {
    width: 55px !important;
    min-width: 55px;
    height: 55px;
    background: #f5f7fb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kinh_nghiem .icon-box-img img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* CONTENT */
.kinh_nghiem .icon-box-text {
    padding-left: 18px;
}

.kinh_nghiem h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
}

.kinh_nghiem h3 {
    margin: 6px 0 2px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
}

.kinh_nghiem p {
    margin: 0;
    font-size: 12px;
    color: #8a8a8a;
    line-height: 1.5;
}

/* MOBILE */
@media (max-width: 549px) {
    .kinh_nghiem {
        padding: 18px;
    }
	
	.kinh_nghiem .icon-box-text {
		padding-left: unset;
	}

    .kinh_nghiem .icon-box-img {
        width: 50px !important;
        min-width: 50px;
        height: 50px;
    }

    .kinh_nghiem .icon-box-img img {
        width: 24px;
        height: 24px;
    }

    .kinh_nghiem h2 {
        font-size: 22px;
    }
	
	.kinh_nghiem h3, .kinh_nghiem p {
		font-size: 10px;
	}
}

/* Câu chuyện */
.cau_chuyen {
    background: var(--color-white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    overflow: hidden;
}

/* Tiêu đề nhỏ */
.cau_chuyen h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 28px;
}

.cau_chuyen h4:before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9d23;
    font-size: 20px;
}

/* Khung quote */
.cau_chuyen .nd {
    background: #f7f4ef;
    border-left: 5px solid #f49b2a;
    padding: 10px 15px;
    border-radius: 4px;
    font-style: italic;
}

/* Ảnh */
.gt_img .img-inner, .cau_chuyen .img-inner {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    object-fit: cover;
}

/* Canh giữa ảnh */
.gt_img {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Tablet */
@media (max-width: 849px) {

    .cau_chuyen {
        padding: 35px;
    }

    .cau_chuyen h3 {
        font-size: 34px;
    }

    .cau_chuyen p {
        font-size: 18px;
    }

    .cau_chuyen .nd {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 549px) {

    .cau_chuyen {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .cau_chuyen h4 {
        font-size: 14px;
    }

    .cau_chuyen h3 {
        font-size: 26px;
        line-height: 1.35;
    }

    .cau_chuyen p {
        font-size: 16px;
        line-height: 1.8;
    }

    .cau_chuyen .nd {
        font-size: 18px;
        padding: 18px;
        line-height: 1.6;
    }

    .gt_img {
        margin-top: 25px;
    }
}