/**
 * Single Course Page Overrides - Student Academy Plus
 * ============================================================================
 * SAP-specific overrides for the single course page float card.
 * SAP hides the multi-user message and CTA buttons, so the card needs
 * to shrink to fit the reduced content.
 */

/* ==========================================================================
   1. Float Card Height Adjustment
   ========================================================================== */

/* Parent's .right-content uses display:flex which causes child to stretch.
   Override to block so float-card takes its natural content height. */
.right-content {
    display: block;
}

/* Remove max-height constraint so card shrinks to fit content
   Parent theme sets max-height: 526px which was sized for SSA's
   full content (with multi-user message and CTA buttons) */
.float-card {
    max-height: none;
    height: auto;
}

/* Ensure the last visible item doesn't get the brand-color styling
   that was intended for the "multi-user packages" message */
.float-card .item:last-of-type span {
    color: var(--black);
    font-weight: 400;
}
