.page-wrapper {
    color: #2b2b2b;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
}

.inspiration-banner h1 {
    color: #fff;
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.35);
}


/* ================= TITLE & META ================= */

.story-header {
    margin: 45px 0 25px;
    text-align: center;
}

.story-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.story-meta {
    color: #777;
    font-size: 15px;
}


/* ================= MAIN CONTENT ================= */

.story-section {
    margin-top: 10px;
    line-height: 1.8;
    font-size: 18px;
}

.story-two-column {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.left-story {
    flex: 1;
}

.left-story h3 {
    margin: 25px 0 15px;
}

.left-story p {
    margin-bottom: 25px;
}


/* ================= MEDIA ================= */

.media-img,
.media-video {
    width: 50%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 22px auto;
    display: block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}


/* ================= QUOTE BOX ================= */

.quote-box {
    flex: 0.85;
    height: fit-content;
    background: #faf7f8;
    padding: 28px 35px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.quote-box .quote-icon {
    font-size: 38px;
    color: #FF715B;
    position: absolute;
    top: 18px;
    left: 22px;
}

.quote-box p {
    margin-left: 35px;
    font-style: italic;
    color: #444;
    line-height: 1.7;
}

.quote-author {
    margin-top: 10px;
    font-size: 15px;
    text-align: right;
    color: #777;
}


/* ================= VISIT BUTTON ================= */

.visit-btn {
    text-align: center;
    margin: 50px 0;
}


/* ================= MAIN CONTAINER ================= */

.small-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* FIX: no single item center issue */
    gap: 20px;
    margin-top: 20px;
    padding: 0 10px;
    max-width: 1000px;
    /* prevent stretching on large screens */
    margin-left: auto;
    margin-right: auto;
}


/* ================= ITEM ================= */

.small-product-item {
    flex: 0 0 calc(20% - 20px);
    /* Desktop: 5 per row */
    max-width: calc(20% - 20px);
    text-align: center;
}


/* ================= IMAGE ================= */

.small-product-item img.small-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    /* optional UI improvement */
    border: 2px solid #f1f1f1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


/* ================= TEXT ================= */

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: 8px;
    line-height: 1.3;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ================= LARGE SCREEN ================= */

@media (min-width: 1400px) {
    .small-products {
        max-width: 1100px;
    }
}


/* ================= LAPTOP ================= */

@media (max-width: 1200px) {
    .small-product-item {
        flex: 0 0 calc(25% - 20px);
        /* 4 per row */
        max-width: calc(25% - 20px);
    }
    .small-product-item img.small-img {
        width: 90px;
        height: 90px;
    }
}


/* ================= TABLET ================= */

@media (max-width: 992px) {
    .small-product-item {
        flex: 0 0 calc(33.33% - 20px);
        /* 3 per row */
        max-width: calc(33.33% - 20px);
    }
    .small-product-item img.small-img {
        width: 90px;
        height: 90px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 576px) {
    .small-products {
        gap: 15px;
    }
    .small-product-item {
        flex: 0 0 calc(33.33% - 15px);
        /* FIX: always 3 per row */
        max-width: calc(33.33% - 15px);
    }
    .small-product-item img.small-img {
        width: 90px;
        height: 90px;
    }
    .product-name {
        font-size: 16px;
        /* keep 16px as requested */
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width: 400px) {
    .small-product-item {
        flex: 0 0 calc(50% - 15px);
        /* 2 per row */
        max-width: calc(50% - 15px);
    }
    .small-product-item img.small-img {
        width: 90px;
        height: 90px;
    }
}