/* MetaMind Courses page */

.mm-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0080FF;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 26px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 22px rgba(0, 128, 255, 0.32);
    white-space: nowrap;
}

.mm-btn-primary:hover {
    background: #0070e0 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 128, 255, 0.4);
}

.oc1-courses-section {
    padding: 80px 0;
    background: #fff;
}

.oc1-course-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 128, 255, 0.08);
    border: 1px solid rgba(0, 128, 255, 0.12);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.oc1-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 128, 255, 0.15);
}

.oc1-course-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f4f8ff;
}

.oc1-course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oc1-course-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.oc1-course-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1B1464;
    margin-bottom: 14px;
    line-height: 1.4;
}

.oc1-course-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.oc1-course-body ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4C4C4C;
    line-height: 1.6;
}

.oc1-course-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0080FF;
}

.oc1-course-body .mm-btn-primary {
    align-self: flex-start;
    margin-top: auto;
}
