.cew-sl-grid {
    display: grid;
    grid-template-columns: repeat( var(--cew-sl-cols, 2), 1fr );
    gap: 24px;
}

.cew-sl-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

/* Image */
.cew-sl-image {
    position: relative;
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Badge overlay on image */
.cew-sl-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(28, 200, 216, 0.30);
    background: rgba(28, 200, 216, 0.15);
    backdrop-filter: blur(4px);
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cew-sl-badge-text {
    font-size: 11px;
    line-height: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: var(--spw-01, linear-gradient(90deg, #58CBE6 0%, #317180 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Body */
.cew-sl-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
    flex: 1;
}

/* Icon */
.cew-sl-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    background: rgba(28, 200, 216, 0.10);
    padding: 11px;
   width: max-content;
}

.cew-sl-icon svg {
    width: 18px;
    height: 18px;
    color: #58CBE6;
}

/* Title */
.cew-sl-title {
    color: var(--claude-ai-cinder, var(--color-blue-7, #0F1117));
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 800;
    line-height: normal;
}

/* Description */
.cew-sl-desc {
    color: #5C6574;
    font-family:  "Instrument Sans";
    font-size: var(--font-size-15, 15px);
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: var(--line-height-25_5, 25.5px); /* 170% */
}

/* Bullet list */
.cew-sl-bullets {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.cew-sl-bullets li {
    color: #5C6574;
    font-family:  "Instrument Sans";
    font-size: var(--font-size-14, 14px);
    font-style: normal;
    font-weight: var(--font-weight-400, 400);
    line-height: normal;
}

.cew-sl-bullets li::marker {
    display: none;
    content: '';
}

.cew-sl-bullets li::before {
  content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--spw-01, linear-gradient(90deg, #58CBE6 0%, #317180 100%));
    margin-right: 10px;
    position: relative;
}


/* CTA */
.cew-sl-footer {
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

.cew-sl-cta {
    display: inline-block;
    margin-top: auto;
    padding-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #58CBE6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cew-sl-cta:hover {
    color: #0F1117;
}

/* Tablet */
@media (max-width: 1024px) {
    .cew-sl-grid {
        grid-template-columns: repeat( var(--cew-sl-cols, 2), 1fr );
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cew-sl-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cew-sl-image {
        height: 200px;
    }
}
