/* Shared "Buy Now" button styling for CoursesView::renderBuyNowButton().
   Matches the course-box brand green so swapping the old inline-styled
   button for the shared component is visually seamless. Layout (column
   width) is handled by the caller's grid column; this owns the look. */
.cce-buynow {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.35rem;
    border: 2px solid #55a145;
    border-radius: 0.2rem;
    background-color: #55a145;
    color: #fff;
    font-weight: 600;
    font-size: 0.86rem;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cce-buynow:hover,
.cce-buynow:focus {
    background-color: #447f37;
    border-color: #447f37;
    color: #fff;
}

.cce-buynow-price {
    display: block;
}

.cce-buynow-price s {
    font-size: 0.78rem;
    color: #e8f5e9;
}
