/* [kt_our_story_products] -- product-line cards for /about/our-story/ (T101).
   Enqueued from inc/our-story-products-shortcode.php only when the shortcode
   renders. Scoped under .kt-osp so it cannot leak into the rest of the page. */

/* Section wrapper used when the block is auto-placed on the Our Story page
   (see kisstour_our_story_inject_products()). Gives the injected block the
   same rhythm as the page's other sections. */
.kt-osp-section {
    padding: 48px 0;
}

.kt-osp-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.kt-osp-h2 {
    text-align: center;
    color: #d51c69;
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 28px;
}

.kt-osp {
    width: 100%;
    margin: 0 auto;
}

.kt-osp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kt-osp-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 26px 22px;
    background: #ffffff;
    border: 1px solid #f2d3e0;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(213, 28, 105, 0.06);
    text-decoration: none;
    color: #363636;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    height: 100%;
}

.kt-osp-card:hover,
.kt-osp-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(213, 28, 105, 0.14);
    border-color: #e4367e;
    color: #363636;
}

.kt-osp-iconwrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fdeef4;
    color: #e4367e;
}

.kt-osp-icon {
    width: 26px;
    height: 26px;
}

.kt-osp-title {
    margin: 4px 0 0;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
    color: #d51c69;
}

.kt-osp-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
}

.kt-osp-price {
    font-size: 14px;
    font-weight: 700;
    color: #1f5fbf;
}

.kt-osp-cta {
    margin-top: auto;
    padding-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #e4367e;
}

.kt-osp-arrow {
    transition: transform 0.18s ease;
}

.kt-osp-card:hover .kt-osp-arrow,
.kt-osp-card:focus-visible .kt-osp-arrow {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .kt-osp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .kt-osp-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kt-osp-card,
    .kt-osp-arrow {
        transition: none;
    }
    .kt-osp-card:hover,
    .kt-osp-card:focus-visible {
        transform: none;
    }
}
