.bo-card {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1a1a1a;
}

/* Text */
.bo-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

/* Buttons */
.bo-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.bo-btn {
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
}

.bo-btn-primary {
    background: linear-gradient(135deg, #5aa8ff, #2f7cf6);
    color: #fff;
    border: none;
}

.bo-btn-outline {
    background: #fff;
    border: 1px solid #cfcfcf;
}

/* 🔥 MEDIA CARD (THIS FIXES EVERYTHING) */
.bo-media {
    position: relative;
    width: 100%;

    height: 180px; /* 🔥 smaller fixed height */

    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    background: #eee;
}

@media (min-width: 768px) {
    .bo-media {
        height: 200px;
    }
}

/* 🔥 IMAGE FIX */
.bo-media img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.bo-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding: 16px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 10%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0) 70%
    );

    color: #fff;
}

/* Text */
.bo-overlay-content h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
}

.bo-overlay-content p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.4;
    max-width: 200px;
}

/* Arrow */
.bo-arrow {
    font-size: 18px;
    opacity: 0.9;
}
