.course-cta-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid #eaeaea;
}

@media (min-width: 768px) {
    .course-cta-card {
        flex-direction: row;
        align-items: center;
    }
}

.course-cta-image {
    width: 100%;
    padding: 1.5rem 1.5rem 0 1.5rem;
}

@media (min-width: 768px) {
    .course-cta-image {
        width: 40%;
        max-width: 300px;
        padding: 1.5rem 0 1.5rem 1.5rem;
    }
}

.course-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.course-cta-content {
    padding: 1.5rem;
    flex: 1;
}

.course-cta-headline {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    color: #222;
}

.course-cta-text {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.5;
}

.course-cta-button {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
}