/* -------------------------------------------------------------
   IBM Cards Slider — NEW MATCHED CSS (corrected)
------------------------------------------------------------- */
.ibm-cards-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}
.ibm-cards-slider-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* FIX: top/side padding added so box-shadow and the scaled
       center card aren't clipped by the implicit overflow-y:auto
       that overflow-x:auto triggers on this axis. */
    padding: 20px 4px 16px;
}
/* CARD */
.ibm-cards-slider-card {
    background: #ffffff;
    border: 1px solid #e1e4ea;
    border-radius: 16px;
    padding: 22px;
    width: 260px;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}
.ibm-cards-slider-card-center {
    transform: scale(1.04);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
/* LOGO */
.ibm-cards-slider-top {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}
.ibm-cards-slider-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
/* NAME */
.ibm-cards-slider-name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 10px;
    color: #111;
}
/* BULLETS */
.ibm-cards-slider-bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}
.ibm-cards-slider-bullets li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}
/* CTA */
.ibm-cards-slider-cta {
    margin-top: 16px;
}
.ibm-cards-slider-btn {
    display: block;
    width: 100%;
    background: #0023a7;
    color: #fff;
    padding: 12px 0;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s;
}
.ibm-cards-slider-btn:hover {
    background: #fcc50a;
    color: #0023a7;
}
.ibm-cards-slider-review {
    display: block;
    margin-top: 8px;
    color: #b33f00;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}
/* NAV BUTTONS */
.ibm-cards-slider-nav {
    position: absolute;
    top: 50%;
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,0.08);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.2s;
}
.ibm-cards-slider-nav:hover {
    background: rgba(0,0,0,0.16);
}
/* FIX: arrow glyphs were missing entirely — nav buttons rendered
   as plain blank circles with no directional indicator. */
.ibm-cards-slider-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #0023a7;
    border-right: 2px solid #0023a7;
}
.ibm-cards-slider-prev::before {
    transform: translate(-25%, -50%) rotate(-135deg);
}
.ibm-cards-slider-next::before {
    transform: translate(-75%, -50%) rotate(45deg);
}
.ibm-cards-slider-prev { left: -10px; }
.ibm-cards-slider-next { right: -10px; }