
        /*
        |--------------------------------------------------------------------------
        | PAGE
        |--------------------------------------------------------------------------
        */

        .packages-page {
            padding: 50px 0 80px;
        }


        /*
        |--------------------------------------------------------------------------
        | HEADER
        |--------------------------------------------------------------------------
        */

        .packages-header {
            margin-bottom: 40px;
        }

        .packages-header h1 {
            margin: 0;
            font-family:
                Georgia,
                'Times New Roman',
                serif;
            font-size: 48px;
            line-height: 1.05;
        }

        .packages-header p {
            max-width: 700px;
            margin: 15px 0 0;
            color: #666;
            line-height: 1.7;
        }


        /*
        |--------------------------------------------------------------------------
        | GRID
        |--------------------------------------------------------------------------
        */

        .packages-grid {
            display: grid;
            grid-template-columns:
                repeat(3, minmax(0, 1fr));
            gap: 25px;
        }


        /*
        |--------------------------------------------------------------------------
        | CARD
        |--------------------------------------------------------------------------
        */

        .package-card {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid #ddd;
        }


        /*
        |--------------------------------------------------------------------------
        | FEATURED
        |--------------------------------------------------------------------------
        */

        .package-featured-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            padding: 7px 10px;
            background: #ffcc00;
            color: #111;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: .7px;
            text-transform: uppercase;
        }


        /*
        |--------------------------------------------------------------------------
        | IMAGE
        |--------------------------------------------------------------------------
        */

        .package-card-image {
            display: block;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: #111;
        }

        .package-card-image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition:
                transform .3s ease;
        }

        .package-card:hover
        .package-card-image img {
            transform: scale(1.04);
        }


        /*
        |--------------------------------------------------------------------------
        | PLACEHOLDER
        |--------------------------------------------------------------------------
        */

        .package-card-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 20px;
            background: #ffcc00;
            color: #111;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 1px;
            text-align: center;
            text-transform: uppercase;
        }


        /*
        |--------------------------------------------------------------------------
        | CONTENT
        |--------------------------------------------------------------------------
        */

        .package-card-content {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: 22px;
        }


        /*
        |--------------------------------------------------------------------------
        | KICKER
        |--------------------------------------------------------------------------
        */

        .package-card-kicker {
            margin-bottom: 8px;
            color: #9b7800;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 1px;
            text-transform: uppercase;
        }


        /*
        |--------------------------------------------------------------------------
        | TITLE
        |--------------------------------------------------------------------------
        */

        .package-card-content h2 {
            margin: 0 0 10px;
            font-family:
                Georgia,
                'Times New Roman',
                serif;
            font-size: 25px;
            line-height: 1.2;
        }

        .package-card-content h2 a {
            color: #111;
            text-decoration: none;
        }

        .package-card-content h2 a:hover {
            color: #9b7800;
        }


        /*
        |--------------------------------------------------------------------------
        | DESCRIPTION
        |--------------------------------------------------------------------------
        */

        .package-card-description {
            margin: 0;
            color: #666;
            font-size: 13px;
            line-height: 1.65;
        }


        /*
        |--------------------------------------------------------------------------
        | META
        |--------------------------------------------------------------------------
        */

        .package-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 18px;
        }

        .package-card-meta span {
            display: inline-flex;
            padding: 6px 9px;
            background: #f5f5f5;
            color: #555;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .3px;
            text-transform: uppercase;
        }


        /*
        |--------------------------------------------------------------------------
        | PRICE
        |--------------------------------------------------------------------------
        */

        .package-card-price {
            margin-top: 18px;
            color: #855e26;
            font-size: 18px;
            font-weight: 900;
        }

        .package-card-price small {
            color: #35351f;
            font-size: 15px;
            font-weight: 700;
        }


        /*
        |--------------------------------------------------------------------------
        | ACTIONS
        |--------------------------------------------------------------------------
        */

        .package-card-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: auto;
            padding-top: 22px;
        }

        .package-card-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 16px;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .5px;
            text-decoration: none;
            text-transform: uppercase;
            transition:
                background .2s ease,
                color .2s ease,
                border-color .2s ease;
        }


        /*
        |--------------------------------------------------------------------------
        | VIEW BUTTON
        |--------------------------------------------------------------------------
        */

        .package-card-button-view {
            border: 1px solid #111;
            background: #fff;
            color: #111;
        }

        .package-card-button-view:hover {
            background: #111;
            color: #fff;
        }


        /*
        |--------------------------------------------------------------------------
        | BOOK BUTTON
        |--------------------------------------------------------------------------
        */

        .package-card-button-book {
            border: 1px solid #ffcc00;
            background: #ffcc00;
            color: #111;
        }

        .package-card-button-book:hover {
            border-color: #111;
            background: #111;
            color: #fff;
        }


        .section-view-all {
            color: #855e26;
        }


        /*
        |--------------------------------------------------------------------------
        | MESSAGE
        |--------------------------------------------------------------------------
        */

        .packages-message {
            padding: 30px;
            background: #fff;
            border: 1px solid #ddd;
        }


        /*
        |--------------------------------------------------------------------------
        | RESPONSIVE
        |--------------------------------------------------------------------------
        */

        @media (max-width: 850px) {

            .packages-grid {
                grid-template-columns:
                    repeat(2, minmax(0, 1fr));
            }
        }


        @media (max-width: 550px) {

            .packages-grid {
                grid-template-columns: 1fr;
            }

            .packages-header h1 {
                font-size: 38px;
            }

            .package-card-actions {
                flex-direction: column;
            }

            .package-card-button {
                width: 100%;
            }
        }
