﻿/*--------------------------------------------------------------
# Booking Section
--------------------------------------------------------------*/
.booking {
    padding-bottom: 20px;
}

    .booking h3 {
        font-size: 24px;
        margin: 30px 0 15px 0;
        font-weight: 700;
        position: relative;
        padding-bottom: 10px;
    }

        .booking h3:before {
            content: "";
            position: absolute;
            display: block;
            width: 100%;
            height: 1px;
            background: color-mix(in srgb, var(--default-color), transparent 90%);
            bottom: 0;
            left: 0;
        }

        .booking h3:after {
            content: "";
            position: absolute;
            display: block;
            width: 60px;
            height: 1px;
            background: var(--accent-color);
            bottom: 0;
            left: 0;
        }

    .booking .image-container {
        position: relative;
        width: 100%;
        padding-top: 47.66%; 
        overflow: hidden;
    }

        .booking .image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


    .booking .course-info {
        background: color-mix(in srgb, var(--default-color), transparent 95%);
        padding: 10px 15px;
        margin-bottom: 15px;
    }

        .booking .course-info h5 {
            font-weight: 400;
            font-size: 16px;
            margin: 0;
            font-family: var(--nav-font);
        }

        .booking .course-info p {
            margin: 0;
            font-weight: 600;
        }

        .booking .course-info a {
            color: var(--accent-color);
        }
