.sol-pain-points {
    padding-top: 3.5rem;
}

.sol-pain-points__title {
    margin: 0 auto 1.75rem;
    max-width: 33ch;
    color: #18212f;
    text-align: center;
    font-size: 2rem;
    line-height: 1.22;
    font-weight: 800;
}

/* Tablet <= 64em (~1024px) */
@media (max-width: 64em) {
    .sol-pain-points__title {
        font-size: 1.75rem;
    }
}

/* Mobile <= 48em (~768px) */
@media (max-width: 48em) {
    .sol-pain-points__title {
        max-width: 22ch;
        font-size: 1.2rem;
        line-height: 1.18;
    }
}

.sol-pain-points__card {
    display: grid;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 1.375rem;
    background: #0b2638;
    box-shadow: 0 22px 52px rgba(7, 29, 43, 0.16);
}

.sol-pain-points__image {
    width: 100%;
/* CÁCH SỬA: */
    height: 100%;
    /* Cho phép ảnh lấp đầy khung chứa */
    max-height: 26.875rem;
    /* Giới hạn chiều cao tối đa (khoảng 430px -  = chiều cao ảnh) để ảnh không bị quá cao */
    object-fit: cover;
    /* Giúp ảnh tự cắt gọn gàng, không bị méo hay móp hình */
    object-position: center;
    /* Căn giữa tâm ảnh */
    display: block;
    border-radius: 1rem;
}

.sol-pain-points__list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sol-pain-points__item {
    position: relative;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.07);
    color: #f5fbff;
    font-size: clamp(0.875rem, 1.4vw, 0.95rem);
    line-height: 1.6;
}

.sol-pain-points__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #27d8a4 0%, #0ea874 100%);
    transform: translateY(-50%);
}

.sol-pain-points__footer {
    display: flex;
    justify-content: center;
    padding-top: 1.125rem;
}

.sol-pain-points__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.875rem;
    padding: 0 1.375rem;
    border-radius: 999px;
    background: #ff9c1a;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(255, 156, 26, 0.3);
}

/* >= 48em (~768px): Tablet and up */
@media (min-width: 48em) {
    .sol-pain-points {
        padding-top: 4.5rem;
    }

    .sol-pain-points__card {
        grid-template-columns: minmax(16.25rem, 1fr) minmax(0, 1.1fr);
        align-items: center;
        padding: 1.5rem;
    }

}


