﻿.section-subtitle-wrapper{
    margin-bottom: 10px;
}
.bg-gray-custom {
    background-color: #EAEAFB80;
    padding: 60px 120px;
}

.btn-view-all {
    display: inline-block;
    background-color: #3431C6;
    color: #ffffff;
    font-family: 'Google Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all {
    display: inline-block;
    background-color: #3431C6;
    color: #ffffff;
    font-family: 'Google Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-view-all:hover {
        background-color: #24229b;
        color: #ffffff;
        transform: translateY(-2px);
    }

.instructor-card {
    background: var(--osp-background-color-bg-base, #FFFFFF);
    border: 1px solid var(--token-colors-border-gray-border-gray-secondary-100, #DADADB);
    border-radius: 12px;
    opacity: 1;
    height: 454px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .instructor-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .instructor-card .card-image img{
        width: 100%;
        height: 300px;
    }
    .instructor-card .card-info {
        background-color: #151463;
        height: 154px;
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .instructor-card .name {
        color: #FFFFFF;
        font-family: 'Google Sans', sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        margin-bottom: 8px;
    }

    .instructor-card .job-title {
        color: #FFFFFF;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .instructor-card .social-icons {
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid #FFFFFF33;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

        .instructor-card .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: #FFFFFF33;
            color: #FFFFFF;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .instructor-card .social-icons a:hover {
                background-color: #3431C6;
                color: #ffffff;
            }