﻿* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
    }

    body {
        background: #fff;
        color: #243444;
    }

    .blog-wrapper {
        max-width: 1180px;
        margin: 40px auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 430px;
        gap: 30px;
        align-items: start;
    }

    /* ================= BLOG CARDS ================= */
    .blogs {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .blog-card {
        width: 100%;
    }

    .blog-image {
        position: relative;
        height: 390px;
        overflow: hidden;
        border-radius: 0;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .overlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(0deg,
                rgba(0, 0, 0, .75),
                rgba(0, 0, 0, .05));
    }

    .blog-content {
        position: absolute;
        bottom: 35px;
        left: 25px;
        right: 25px;
        color: white;
    }

    .blog-content h2 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 18px;
        color: #fff;
        font-weight: 700;
    }

    .blog-content a {
        display: inline-block;
        background: #67c3aa;
        color: white;
        padding: 13px 28px;
        border-radius: 2px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
    }

    .category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #67c3aa;
        color: #fff;
        padding: 8px 14px;
        font-size: 14px;
        z-index: 3;
        border-radius: 2px;
    }

    /* ================= STICKY FORM ================= */
    .booking-sidebar {
        position: sticky;
        top: 30px;
    }

    .booking-card {
        background: #fff;
        border-radius: 20px;
        padding: 45px 45px 40px;
        box-shadow:
            0 15px 45px rgba(0, 0, 0, .08);
    }

    .booking-card h2 {
        font-size: 36px;
        margin-bottom: 15px;
        color: #143b4b;
    }

    .booking-card input,
    .booking-card select,
    .booking-card textarea {
        width: 100%;
        border: 1px solid #dbe3ea;
        border-radius: 12px;
        padding: 0 22px;
        font-size: 16px;
        color: #777;
        background: #fff;
        outline: none;
        transition: .3s;
    }

    .booking-card input,
    .booking-card select {
        height: 62px;
        margin-bottom: 15px;
    }

    .booking-card textarea {
        height: 130px;
        padding-top: 20px;
        resize: none;
        margin-bottom: 30px;
    }

    .booking-card input:focus,
    .booking-card select:focus,
    .booking-card textarea:focus {
        border-color: #67c3aa;
    }

    .booking-card button {
        /* width:230px; */
        /* height:75px; */
        padding: 15px 40px;
        border: none;
        border-radius: 50px;
        background: #67c3aa;
        color: white;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        transition: .3s;
    }

    .booking-card button:hover {
        background: #4eb296;
    }

    /* ================= RESPONSIVE ================= */
    @media(max-width:1000px) {
        .blog-wrapper {
            grid-template-columns: 1fr;
        }

        .booking-sidebar {
            position: relative;
        }

        .booking-card {
            max-width: 600px;
            margin: auto;
        }
    }

    @media(max-width:600px) {
        .blog-wrapper {
            padding: 0 15px;
        }

        .blog-image {
            height: 280px;
        }

        .blog-content {
            left: 20px;
            bottom: 25px;
        }

        .blog-content h2 {
            font-size: 17px;
        }

        .booking-card {
            padding: 30px 20px;
        }

        .booking-card h2 {
            font-size: 30px;
        }

        .booking-card button {
            width: 100%;
        }
    }
