  .lp-last-course-widget {
            font-family: inherit;
            width:100%;
            margin: 20px 0;
        }

        .lp-last-course-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111111;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .lp-last-course-card {
            display: flex;
            flex-direction: row;
            /*background: #ffffff;*/
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0f0f0;
            overflow: hidden;
            padding: 20px;
            gap: 24px;
            align-items: center;
        }

        .lp-last-course-thumb-container {
            position: relative;
            flex-shrink: 0;
            width: 220px;
            height: 180px;
            border-radius: 14px;
            overflow: hidden;
        }

        .lp-last-course-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 14px;
            display: block;
        }

        .lp-last-course-thumb-placeholder {
            width: 100%;
            height: 100%;
            border-radius: 14px;
        }

        .lp-last-course-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--avanza-secondary-color);
            color: #ffffff;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            letter-spacing: 0.2px;
        }

        .lp-last-course-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .lp-last-course-title {
            margin: 0 0 6px 0;
            font-size: 1.15rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .lp-last-course-title a {
            color: #111111;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .lp-last-course-title a:hover {
            color: var(--avanza-primary-color);
        }

        .lp-last-course-lesson-count {
            font-size: 0.85rem;
            color: #888888;
            margin-bottom: 2px;
            font-weight: 500;
        }

        .lp-last-course-lesson-title {
            font-size: 0.95rem;
            color: #333333;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .lp-last-course-divider {
            border: 0;
            border-top: 1px solid #eaeaea;
            margin: 0 0 12px 0;
            width: 100%;
        }

        .lp-last-course-time-wrapper {
            margin-bottom: 12px;
        }

        .lp-last-course-time-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            color: #888888;
            margin-bottom: 2px;
        }

        .lp-last-course-time-label svg {
            stroke: #888888;
        }

        .lp-last-course-time-value {
            font-size: 1rem;
            font-weight: 700;
            color: #111111;
        }

        .lp-last-course-progress-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .lp-last-course-progress-bar {
            flex: 1;
            height: 8px;
            background: #e9ecef;
            border-radius: 20px;
            overflow: hidden;
        }

        .lp-last-course-progress-fill {
            height: 100%;
            background: var(--avanza--gradient-color);
            border-radius: 20px;
            transition: width 0.4s ease;
        }

        .lp-last-course-progress-text {
            font-size: 0.85rem;
            font-weight: 700;
            color: #555555;
            min-width: 35px;
        }

        .lp-last-course-cta-wrapper {
            margin-top: 16px;
        }

        .lp-last-course-btn {
            display: inline-block;
            background: var(--avanza--gradient-color);
            color: #ffffff !important;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none !important;
            box-shadow: 0 4px 14px rgba(37, 99, 255, 0.25);
            transition: all 0.2s ease;
        }

        .lp-last-course-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(37, 99, 255, 0.35);
            color: #ffffff !important;
        }

        @media (max-width: 600px) {
            .lp-last-course-card {
                flex-direction: column;
                align-items: stretch;
            }
            .lp-last-course-thumb-container {
                width: 100%;
                height: 200px;
            }
            .lp-last-course-btn {
                display: block;
                text-align: center;
            }
        }