
/* HBT Tour Shortcode Styles - Modern & Compact */
.hbt-tour-shortcode { margin: 30px 0; clear: both; font-family: 'Lato', sans-serif; }
.hbt-no-tours { text-align: center; padding: 30px 20px; color: #7f8c8d; background: #f8f9fa; border-radius: 8px; font-size: 15px; }

/* === Common Elements === */
.hbt-tour-title { margin: 0 0 8px; font-size: 16px; font-weight: 700; line-height: 1.4; color: #2c3e50; transition: color 0.2s; }
.hbt-tour-title a { color: inherit; text-decoration: none; }
.hbt-tour-title a:hover { color: #0192cc; text-decoration: none; }

.hbt-tour-schedule { font-size: 12px; color: #0192cc; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.5px; }

.hbt-tour-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #666; margin: 8px 0 12px; align-items: center; }
.hbt-tour-meta span { display: flex; align-items: center; gap: 5px; }
.hbt-tour-meta i { color: #95a5a6; font-size: 14px; }

.hbt-tour-price { font-size: 18px; font-weight: 700; color: #e74c3c; margin-top: auto; }
.hbt-tour-button { display: inline-block; padding: 8px 20px; background: #0192cc; color: #fff !important; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; border: none; text-align: center; }
.hbt-tour-button:hover { background: #016a99; transform: translateY(-1px); box-shadow: 0 4px 6px rgba(1, 146, 204, 0.2); text-decoration: none; }

/* === Grid & Dual Common Card Style === */
.hbt-tour-grid-item, .hbt-tour-dual-item {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hbt-tour-grid-item:hover, .hbt-tour-dual-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08); /* Soft hover shadow */
    transform: translateY(-4px);
    border-color: transparent;
}

.hbt-tour-grid-image, .hbt-tour-dual-image { position: relative; overflow: hidden; height: 180px; width: 100%; }
.hbt-tour-grid-image img, .hbt-tour-dual-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hbt-tour-grid-item:hover img, .hbt-tour-dual-item:hover img { transform: scale(1.08); }

.hbt-tour-grid-content, .hbt-tour-dual-content {
    padding: 15px; /* Compact padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Limit title lines in grid */
.hbt-tour-grid-content .hbt-tour-title, 
.hbt-tour-dual-content .hbt-tour-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px; /* Ensure alignment */
}

/* === Layout Specifics === */

/* GRID Layout */
.hbt-tour-grid-container { display: grid; grid-template-columns: 1fr; gap: 20px; }
.hbt-tour-grid-link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.hbt-tour-grid-link:hover { text-decoration: none; color: inherit; }

/* DUAL Layout */
.hbt-tour-dual-container { display: grid; grid-template-columns: 1fr; gap: 20px; }
.hbt-tour-dual-image { height: 220px; } 

/* SINGLE Layout (Featured) */
.hbt-tour-single-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #edf2f7;
}
.hbt-tour-single-item:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.hbt-tour-single-image { width: 100%; height: 250px; overflow: hidden; }
.hbt-tour-single-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hbt-tour-single-item:hover .hbt-tour-single-image img { transform: scale(1.05); }

.hbt-tour-single-content { padding: 25px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hbt-tour-single-content .hbt-tour-title { font-size: 22px; margin-bottom: 12px; }
.hbt-tour-single-content .hbt-tour-price { font-size: 24px; margin-bottom: 15px; }

/* === Responsive === */
@media (min-width: 768px) {
    .hbt-tour-grid-container { grid-template-columns: repeat(2, 1fr); }
    .hbt-tour-dual-container { grid-template-columns: repeat(2, 1fr); }
    
    .hbt-tour-single-item { flex-direction: row; min-height: 300px; }
    .hbt-tour-single-image { width: 50%; height: auto; display: flex; align-items: center; }
    .hbt-tour-single-content { width: 50%; padding: 30px; }
}

@media (min-width: 1024px) {
    .hbt-tour-grid-container { grid-template-columns: repeat(3, 1fr); }
    
    .hbt-tour-single-image { width: 55%;  display: flex; align-items: center; }
    .hbt-tour-single-content { width: 45%; }
}
