body{
    font-family: "Cabinet Grotesk Boild", Sans-serif !important;
}


/* =========================================================
   Tour Listings – Frontend Styles
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather:wght@700&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
    --tl-green:        #5a8a00;
    --tl-green-dark:   #4a7200;
    --tl-blue:         #0077b6;
    --tl-blue-dark:    #005f8e;
    --tl-gold:         #f4a800;
    --tl-text:         #222222;
    --tl-muted:        #555555;
    --tl-light:        #f7f7f7;
    --tl-border:       #e2e2e2;
    --tl-white:        #ffffff;
    --tl-card-radius:  8px;
    --tl-shadow:       0 2px 8px rgba(0,0,0,.08);
    --tl-shadow-hover: 0 6px 18px rgba(0,0,0,.14);
}


    

/* ── Wrapper ────────────────────────────────────────────── */
.tl-wrapper {
    font-family: var(--tl-font-body);
    color: var(--tl-text);
    /*max-width: 900px;*/
    margin: 0 auto;
    /*padding: 0 16px;*/
}

/* ── Region Heading ─────────────────────────────────────── */
.tl-region-title {
    font-family: var(--tl-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tl-text);
    margin: 40px 0 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--tl-green);
    display: none;
}

/* ── Listings Stack ─────────────────────────────────────── */
.tl-listings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Card ───────────────────────────────────────────────── */
.tl-card {
    display: grid;
    background: #F7FFE8;
    border: 1px solid #8FC132;
    border-radius: 26px;
    box-shadow: var(--tl-shadow);
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease;
    grid-template-columns: auto auto;
}

.tl-card:hover {
    box-shadow: var(--tl-shadow-hover);
    transform: translateY(-2px);
}

/* ── Card Image ─────────────────────────────────────────── */
.tl-card-image {
    flex: 0 0 200px;
    min-height: 200px;
    overflow: hidden;
    position: relative;
}
.tl-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
    padding: 15px;
}
.tl-card:hover .tl-card-img {
    /*transform: scale(1.04);*/
}
.tl-no-img {
    background: #dde8cc;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* ── Card Body ──────────────────────────────────────────── */
.tl-card-body {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 10px;
}


/* ── Card Header ────────────────────────────────────────── */
.tl-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.tl-card-title {
    font-family: var(--tl-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--tl-text);
    margin: 0 0 4px;
    line-height: 1.3;
}

.tl-meta-item span {
    font-size: 16px;
    line-height: 23px;
}


.tl-card-location {
    font-size: 17px;
    color: var(--tl-muted);
    margin: 0;
    display: flex;
    align-items: center;
    margin-bottom: 0px !important;
    gap: 3px;
}
.tl-pin-icon { font-size: .9rem; }

/* ── Stars ──────────────────────────────────────────────── */
.tl-card-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.tl-stars {
    display: inline-flex;
    gap: 1px;
}
.tl-star { font-size: 1rem; line-height: 1; }
.tl-star-full  { color: var(--tl-gold); }
.tl-star-half  { color: var(--tl-gold); opacity: .7; }
.tl-star-empty { color: #ccc; }

.tl-review-count {
    font-size: .75rem;
    color: var(--tl-muted);
    margin-top: 2px;
}

/* ── Meta Grid ──────────────────────────────────────────── */
.tl-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: .82rem;
}
.tl-meta-row {
    display: flex;
    gap: 0;
}
.tl-meta-item {
    flex: 1;
    display: flex;
    gap: 4px;
}
.tl-meta-label {
    color: var(--tl-muted);
    min-width: 58px;
}
.tl-meta-value {
    color: var(--tl-text);
    font-weight: 600;
}

/* ── Highlights ─────────────────────────────────────────── */
.tl-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .82rem;
    color: var(--tl-text);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.tl-highlights li {
    padding-left: 14px;
    position: relative;
    line-height: 1.45;
    font-size: 16px;
}
ul.tl-highlights {
    padding-left: 0px;
}



.tl-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--tl-green);
    font-weight: 700;
    font-size: 26px;
    top: -7px;
}


/* ── Mid-week Special ───────────────────────────────────── */
.tl-midweek {
    font-size: .8rem;
    color: var(--tl-muted);
    margin: 0;
}
.tl-midweek strong { color: var(--tl-text); }

/* ── Footer ─────────────────────────────────────────────── */
.tl-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--tl-border);
}
.tl-price {
    font-size: 20px;
    color: var(--tl-text);
}

.tl-price strong { font-size: 1rem; }

/* ── Buttons ────────────────────────────────────────────── */
.tl-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.tl-btn {
    display: inline-block;
    padding: 9px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
    border: 2px solid transparent;
    text-decoration: none !important;
}
.tl-btn-primary {
    background: var(--tl-green);
    color: var(--tl-white);
    border-color: var(--tl-green);
}
.tl-btn-primary:hover {
    background: var(--tl-green-dark);
    border-color: var(--tl-green-dark);
    color: var(--tl-white);
}
.tl-btn-secondary {
    background: #0077b6;
    color: #ffffff;
    border-color: #0077b6;
}

.tl-btn-secondary:hover {
    background: #046aa1 !important;
}


.tl-btn-secondary:focus {
    color: #fff;
}


.tl-btn-secondary:hover {
    background: var(--tl-blue);
    color: var(--tl-white);
}

/* ── No Tours ───────────────────────────────────────────── */
.tl-no-tours {
    text-align: center;
    padding: 40px;
    color: var(--tl-muted);
    font-style: italic;
}

/* ── Responsive ─────────────────────────────────────────── */
@media ( max-width: 640px ) {
    .tl-card {
        flex-direction: column;
    }
    .tl-card-image {
        flex: none;
        height: 200px;
        width: 100%;
    }
    .tl-card-header {
        flex-direction: column;
    }
    .tl-card-rating {
        align-items: flex-start;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .tl-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
