.abi-box {
    max-width: 860px;
    margin: 2.25em auto;
    padding: 2.1em 2.5em 0.3em;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

/* Full-width hero title */
.abi-box-title {
    margin: 0 0 1.1em;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 700;
}

/* Layout: big image on the left, bullets on the right */
.abi-box-inner {
    display: flex;
    align-items: center;
    gap: 2.1em;
}

/* Image column – big enough to catch the eye */
.abi-box-media {
    flex: 0 0 260px;
    max-width: 300px;
}

.abi-box-media-link {
    display: block;
}

.abi-box-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.abi-box-media-link:hover img,
.abi-box-media-link:focus img {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.32);
}

/* Text/content column */
.abi-box-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.9em;
}

.abi-box-bullets {
    margin: 0 0 2em;
    padding-left: 1.25em;
    line-height: 1.6;
    font-size: 1rem;
}

.abi-box-bullets li {
    margin-bottom: 0.55em;
}

/* Button: centered, wide, strong CTA */
.abi-box-cta {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.abi-box .abi-box-button,
.abi-box .abi-box-button:link,
.abi-box .abi-box-button:visited,
.abi-box .abi-box-button:hover,
.abi-box .abi-box-button:focus,
.abi-box .abi-box-button:active {
    display: block;
    width: 100%;
    max-width: 420px;
    padding: 0.95em 2.6em;
    border-radius: 999px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    cursor: pointer;

    /* Kill theme link styles */
    text-decoration: none !important;
    border-bottom: 0 !important;
    color: #ffffff !important;

    /* Smooth hover */
    transition:
        background-color 0.18s ease,
        filter 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

/* Hover: keep text white, slightly brighten background + subtle lift */
.abi-box .abi-box-button:hover,
.abi-box .abi-box-button:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    border-bottom: 0 !important;

    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.28);
}

/* Left accents by position */
.abi-box-top {
    border-left: 4px solid rgba(0,0,0,0.08);
}

.abi-box-middle {
    border-left: 4px solid rgba(0,0,0,0.16);
}

.abi-box-bottom {
    border-left: 4px solid rgba(0,0,0,0.24);
}

/* Responsive: stack image above text on mobile */
@media (max-width: 768px) {
    .abi-box {
        padding: 1.7em 1.4em 1.9em;
    }

    .abi-box-inner {
        flex-direction: column;
        align-items: center;
        gap: 1.3em;
    }

    .abi-box-media {
        flex: 0 0 auto;
        max-width: 240px;
    }

    .abi-box-body {
        width: 100%;
    }

    .abi-box .abi-box-button,
    .abi-box .abi-box-button:link,
    .abi-box .abi-box-button:visited,
    .abi-box .abi-box-button:hover,
    .abi-box .abi-box-button:focus,
    .abi-box .abi-box-button:active {
        width: 100%;
        max-width: none;
    }
}
