/* =========================
   PAIN STRIP
========================= */

.pain-strip {
    background: #fff;
}

/* GRID */
.pain-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

/* ITEM */
.pain-item {
    padding: 26px;
    position: relative;
    transition: 0.2s ease;
}

/* DIVIDERS */
.pain-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%;
    right: 0;
    width: 1px;
    height: 64%;
    background: #e2e8f0;
}

/* LABEL (UNIFIED SYSTEM STYLE) */
.pain-item .label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #14b8a6;

    display: block;
    margin-bottom: 10px;
}

/* TITLE */
.pain-item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #0f172a;
}

/* TEXT */
.pain-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* HOVER */
.pain-item:hover {
    background: #f8fafc;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 960px) {

    .pain-row {
        grid-template-columns: repeat(4, 80%);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        border: none;
        gap: 14px;
        padding-bottom: 10px;
    }

    .pain-item {
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        scroll-snap-align: start;
        min-width: 260px;
    }

    .pain-item:not(:last-child)::after {
        display: none;
    }
}

/* hide scrollbar */
.pain-row::-webkit-scrollbar {
    display: none;
}