/* ── Slide Anything Pro — Frontend Styles ─────────────────── */

/* ── Wrapper ── */
.sap-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
    outline: none;
    box-sizing: border-box;
}

/* ── Viewport — clips overflow ── */
.sap-viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
}
.sap-viewport:active { cursor: grabbing; }

/* ── Track — JS drives transform ── */
.sap-track {
    display: flex;
    align-items: stretch;
    will-change: transform;
}

/* ── Slide ── */
.sap-slide {
    flex-shrink: 0;
    box-sizing: border-box;
}

/* ── Card (div or <a>) ── */
.sap-card {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
   
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    position: relative;
    /* border-radius set inline */
}

/* Image cards */
.sap-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.10s ease-in;
}
/* .sap-card:hover img { transform: scale(1.04); }
 */
/* Clickable card hover ring */
a.sap-card-link:hover {
    box-shadow: 0 0 0 3px rgba(33, 113, 177, 0.4);
}

/* ── HTML Content slide ── */
.sap-slide-content {
    padding: 10px;
    height: 100%;
	position:relative;
    box-sizing: border-box;
}
.sap-slide-content img {
   max-width: 100% !important;
    height: auto !important;
    border-radius: 13px !important;
}
.sap-slide-content span{
	position: absolute;
    top: 20px;
    left: 30px;
    color: #fff;
	font-family: "Outfit", Sans-serif;
}
.sap-slide-content p { margin: 0 0 12px; line-height: 1.7; }
.sap-slide-content h1,.sap-slide-content h2,.sap-slide-content h3,
.sap-slide-content h4,.sap-slide-content h5,.sap-slide-content h6 {
    margin: 0 0 10px;
}

/* ── Dots ── */
.sap-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    min-height: 20px;
    flex-wrap: wrap;
}

.sap-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cccccc;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.28s ease, transform 0.28s ease;
    outline: none;
}
.sap-dot:focus-visible { outline: 2px solid #2271b1; outline-offset: 3px; }
.sap-dot-active {
    background: #2271b1;
    transform: scale(1.35);
}

/* ── Arrows ── */
.sap-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-55%);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: all 0.22s ease;
    color: #333;
    padding: 0;
}
.sap-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}
.sap-arrow:hover {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
    box-shadow: 0 4px 16px rgba(34,113,177,0.35);
    transform: translateY(-55%) scale(1.08);
}
.sap-arrow:focus-visible { outline: 2px solid #2271b1; outline-offset: 3px; }

.sap-arrow-prev { left: -23px; }
.sap-arrow-next { right: -23px; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .sap-arrow-prev { left: 2px; }
    .sap-arrow-next { right: 2px; }
    .sap-arrow { width: 38px; height: 38px; }
    .sap-arrow svg { width: 15px; height: 15px; }
    .sap-slide-content { padding: 16px; }
}

@media (max-width: 600px) {
    .sap-dots { margin-top: 14px; gap: 6px; }
    .sap-dot  { width: 8px; height: 8px; }
    .sap-slide-content { padding: 14px; }
}
