/* ==========================================================================
   Triptickers Premium News & Travel Blog Design System
   Fluid Responsive Typography Across All Devices (Desktop, Tablet, Mobile)
   ========================================================================== */

.tt-news-page,
.tt-news-detail-page {
    --tt-navy-primary: #1C2C46;
    --tt-navy-hover: #132137;
    --tt-navy-secondary: #294564;
    --tt-orange-accent: #F47C20;
    --tt-orange-hover: #D96512;
    --tt-orange-soft: #FFF4EA;
    --tt-navy-soft: #EEF3F8;
    --tt-page-bg: #F6F8FB;
    --tt-white: #FFFFFF;
    --tt-heading: #172033;
    --tt-body: #475467;
    --tt-muted: #667085;
    --tt-border-light: #E4EAF1;
    --tt-border-strong: #CBD5E1;

    font-family: 'Poppins', sans-serif !important;
    background-color: var(--tt-page-bg) !important;
    color: var(--tt-body);
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 72px;
}

.tt-news-page *, .tt-news-page *::before, .tt-news-page *::after,
.tt-news-detail-page *, .tt-news-detail-page *::before, .tt-news-detail-page *::after {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}

/* Centered Container */
.tt-news-container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 1024px) {
    .tt-news-container { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 576px) {
    .tt-news-container { padding-left: 16px; padding-right: 16px; }
}

/* Fluid Typography Hero Banner */
.tt-news-hero {
    padding: clamp(36px, 6vw, 56px) 0 clamp(32px, 5vw, 48px);
    background: linear-gradient(180deg, #FFFFFF 0%, var(--tt-navy-soft) 100%);
    border-bottom: 1px solid var(--tt-border-light);
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 48px);
}

.tt-news-hero-eyebrow {
    display: inline-block;
    font-size: clamp(11px, 1.5vw, 12px);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--tt-orange-hover);
    background: var(--tt-orange-soft);
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(244, 124, 32, 0.22);
    margin-bottom: 14px;
}

.tt-news-hero h1 {
    font-size: clamp(24px, 4.5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--tt-heading);
    max-width: 760px;
    margin: 0 auto 12px;
}

.tt-news-hero-desc {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    line-height: 1.65;
    color: var(--tt-muted);
    max-width: 660px;
    margin: 0 auto 0;
}

/* Main 2-Column Grid Layout */
.tt-news-grid-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 32px;
    align-items: start;
}

/* News Feed Grid (2 Cards Per Row) */
.tt-news-feed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* News Article Card */
.tt-news-card {
    background: var(--tt-white);
    border: 1px solid var(--tt-border-light);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(28, 44, 70, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.tt-news-card:hover {
    transform: translateY(-4px);
    border-color: var(--tt-border-strong);
    box-shadow: 0 16px 36px rgba(28, 44, 70, 0.1);
}

.tt-news-card-thumb {
    position: relative;
    width: 100%;
    height: clamp(180px, 25vw, 220px);
    overflow: hidden;
    background: var(--tt-navy-soft);
}

.tt-news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.tt-news-card:hover .tt-news-card-thumb img {
    transform: scale(1.05);
}

.tt-news-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--tt-white);
    color: var(--tt-navy-primary);
    font-size: clamp(10.5px, 1.4vw, 11.5px);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tt-news-card-body {
    padding: clamp(18px, 3vw, 24px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tt-news-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(11.5px, 1.6vw, 13px);
    color: var(--tt-muted);
    margin-bottom: 10px;
}

.tt-news-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tt-news-card-title {
    font-size: clamp(16px, 2.2vw, 19px);
    font-weight: 600;
    line-height: 1.38;
    color: var(--tt-heading);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tt-news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease;
}

.tt-news-card-title a:hover {
    color: var(--tt-orange-accent);
}

.tt-news-card-excerpt {
    font-size: clamp(13px, 1.8vw, 14px);
    line-height: 1.65;
    color: var(--tt-muted);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tt-news-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--tt-border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tt-news-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(12.5px, 1.8vw, 13.5px);
    font-weight: 600;
    color: var(--tt-orange-accent);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.tt-news-read-btn:hover {
    color: var(--tt-orange-hover);
    transform: translateX(3px);
}

/* Pagination Bar */
.tt-news-pagination-wrapper {
    background: var(--tt-white);
    border: 1px solid var(--tt-border-light);
    border-radius: 14px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 14px rgba(28, 44, 70, 0.04);
}

/* Sidebar Widgets */
.tt-news-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tt-news-widget {
    background: var(--tt-white);
    border: 1px solid var(--tt-border-light);
    border-radius: 18px;
    padding: clamp(18px, 3vw, 24px);
    box-shadow: 0 6px 18px rgba(28, 44, 70, 0.05);
}

.tt-news-widget-title {
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    color: var(--tt-heading);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tt-navy-soft);
    position: relative;
}

.tt-news-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--tt-orange-accent);
}

.tt-news-widget-text {
    font-size: clamp(13.5px, 1.8vw, 14.5px);
    line-height: 1.65;
    color: var(--tt-body);
}

/* Search Form Control */
.tt-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.tt-search-control {
    width: 100% !important;
    min-height: 46px !important;
    padding: 10px 46px 10px 14px !important;
    border-radius: 10px !important;
    border: 1px solid var(--tt-border-strong) !important;
    font-size: 14px !important;
    background: var(--tt-white) !important;
}

.tt-search-control:focus {
    border-color: var(--tt-navy-primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(28, 44, 70, 0.12) !important;
}

.tt-search-submit-btn {
    position: absolute;
    right: 6px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--tt-orange-accent);
    color: var(--tt-white);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 180ms ease;
}

.tt-search-submit-btn:hover {
    background: var(--tt-orange-hover);
}

/* Recent Posts List */
.tt-recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tt-recent-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.tt-recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--tt-navy-soft);
}

.tt-recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tt-recent-post-content h5 {
    font-size: clamp(13px, 1.7vw, 14px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--tt-heading);
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 180ms ease;
}

.tt-recent-post-item:hover h5 {
    color: var(--tt-orange-accent);
}

.tt-recent-post-date {
    font-size: 12px;
    color: var(--tt-muted);
}

/* Category List */
.tt-news-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tt-category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--tt-navy-soft);
    color: var(--tt-navy-primary);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease;
}

.tt-category-item a:hover {
    background: var(--tt-navy-primary);
    color: var(--tt-white);
}

/* Tag Cloud */
.tt-news-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tt-tag-pill {
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--tt-navy-soft);
    color: var(--tt-navy-primary);
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease;
}

.tt-tag-pill:hover {
    background: var(--tt-orange-accent);
    color: var(--tt-white);
}

/* Article Detail View */
.tt-news-detail-card {
    background: var(--tt-white);
    border: 1px solid var(--tt-border-light);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 36px);
    box-shadow: 0 10px 30px rgba(28, 44, 70, 0.07);
    margin-bottom: 32px;
}

.tt-news-detail-header {
    margin-bottom: 24px;
}

.tt-news-detail-title {
    font-size: clamp(22px, 3.8vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--tt-heading);
    margin-bottom: 16px;
}

.tt-news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: clamp(12.5px, 1.8vw, 14px);
    color: var(--tt-muted);
    padding-bottom: 18px;
    border-bottom: 1px solid var(--tt-border-light);
}

.tt-news-detail-cover {
    width: 100%;
    max-height: clamp(240px, 40vw, 480px);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
}

.tt-news-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tt-news-detail-content {
    font-size: clamp(15.5px, 2vw, 17px);
    line-height: 1.85;
    color: #334155;
}

.tt-news-detail-content p {
    font-size: clamp(15.5px, 2vw, 17px);
    line-height: 1.85;
    margin-bottom: 22px;
    color: #334155;
}

.tt-news-detail-content .lead {
    font-size: clamp(17px, 2.2vw, 19px);
    font-weight: 500;
    line-height: 1.75;
    color: #0f2444;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1.5px solid #e2e8f0;
}

.tt-news-detail-content h2 {
    color: #0f2444;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 18px;
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.35;
    padding-bottom: 10px;
    border-bottom: 2.5px solid #f1f5f9;
    position: relative;
}

.tt-news-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 0;
    width: 50px;
    height: 2.5px;
    background: var(--tt-orange-accent);
}

.tt-news-detail-content h3 {
    color: #1e293b;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 14px;
    font-size: clamp(18px, 2.4vw, 21px);
    line-height: 1.4;
}

.tt-news-detail-content h4 {
    color: #0f2444;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: clamp(16px, 2vw, 18px);
}

.tt-news-detail-content ul,
.tt-news-detail-content ol {
    margin-bottom: 26px;
    padding-left: 24px;
}

.tt-news-detail-content li {
    font-size: clamp(15px, 1.9vw, 16.5px);
    line-height: 1.8;
    margin-bottom: 10px;
    color: #334155;
}

.tt-news-detail-content blockquote {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--tt-orange-accent);
    border-radius: 0 14px 14px 0;
    padding: 20px 26px;
    margin: 30px 0;
    font-style: italic;
    font-size: clamp(16px, 2.1vw, 18px);
    line-height: 1.7;
    color: #1e293b;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

/* Day-by-Day Itinerary Cards */
.tt-itinerary-day-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 26px;
    margin: 28px 0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tt-itinerary-day-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.tt-itinerary-day-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid #f1f5f9;
}

.tt-day-badge {
    background: linear-gradient(135deg, #0f2444 0%, #1e3a8a 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(15, 36, 68, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
}

.tt-day-title {
    font-size: clamp(17px, 2.2vw, 20px) !important;
    font-weight: 700 !important;
    color: #0f2444 !important;
    margin: 0 !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1.35 !important;
}

.tt-day-title::after {
    display: none !important;
}

.tt-timeline-block {
    margin-bottom: 16px;
    padding-left: 20px;
    border-left: 2.5px solid #cbd5e1;
    position: relative;
}

.tt-timeline-block:last-child {
    margin-bottom: 0;
}

.tt-timeline-block::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tt-orange-accent);
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px var(--tt-orange-accent);
}

.tt-timeline-time {
    font-size: 13px;
    font-weight: 700;
    color: var(--tt-orange-hover);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.tt-timeline-text {
    font-size: clamp(14.5px, 1.9vw, 16px);
    line-height: 1.75;
    color: #334155;
    margin-bottom: 0 !important;
}

/* Callout Highlights & Tip Boxes */
.tt-highlight-box {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 14px;
    padding: 18px 22px;
    margin: 24px 0;
    color: #166534;
    font-size: clamp(14.5px, 1.9vw, 16px);
    line-height: 1.7;
}

.tt-highlight-box strong {
    color: #14532d;
}

.tt-highlight-box ul {
    margin-bottom: 0 !important;
}

.tt-tips-callout {
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    border-radius: 14px;
    padding: 18px 22px;
    margin: 24px 0;
    color: #92400e;
    font-size: clamp(14.5px, 1.9vw, 16px);
    line-height: 1.7;
}

.tt-tips-callout strong {
    color: #78350f;
}

/* CTA Booking Card */
.tt-cta-box {
    background: linear-gradient(135deg, #0f2444 0%, #1e3a8a 100%);
    border-radius: 18px;
    padding: 30px 32px;
    margin: 36px 0;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 8px 28px rgba(15, 36, 68, 0.15);
}

.tt-cta-box h3 {
    color: #ffffff !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    font-size: clamp(19px, 2.5vw, 23px) !important;
    border: none !important;
}

.tt-cta-box p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(14.5px, 1.9vw, 16px) !important;
    max-width: 600px;
    margin: 0 auto 16px !important;
}

.tt-cta-btn {
    display: inline-block;
    background: var(--tt-orange-accent);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(244, 124, 32, 0.35);
    transition: background 0.2s, transform 0.2s;
}

.tt-cta-btn:hover {
    background: var(--tt-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(244, 124, 32, 0.45);
}

.tt-news-share-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    margin-top: 32px;
    border-top: 1px solid var(--tt-border-light);
}

.tt-news-share-buttons {
    display: flex;
    gap: 10px;
}

.tt-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tt-white) !important;
    text-decoration: none !important;
    transition: opacity 180ms ease;
}

.tt-share-btn:hover { opacity: 0.85; }
.tt-share-fb { background: #1877F2; }
.tt-share-tw { background: #1DA1F2; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .tt-news-grid-layout { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
    .tt-news-feed-grid { grid-template-columns: 1fr; gap: 18px; }
    .tt-news-pagination-wrapper { flex-direction: column; gap: 12px; text-align: center; }
}

/* ==========================================================================
   MODERN TEMPLATES DESIGN SYSTEM (DETAIL & LISTING)
   ========================================================================== */

/* Reading Progress Bar */
.tt-reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #f47c20 0%, #fa5636 50%, #0f2444 100%);
    z-index: 99999;
    width: 0%;
    transition: width 0.12s ease-out;
    box-shadow: 0 1px 6px rgba(244, 124, 32, 0.4);
}

/* Container */
.tt-modern-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.tt-modern-detail-wrapper,
.tt-modern-listing-wrapper {
    background-color: #f8fafc;
    min-height: 100vh;
    padding-bottom: 70px;
}

/* Modern Hero Article Header */
.tt-modern-hero-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: clamp(14px, 2.2vw, 22px) 0 clamp(14px, 2.2vw, 20px);
}

/* App-Style Navigation Bar: Clean inline on Desktop, App Card on Mobile */
.tt-app-top-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    background: transparent;
    border: none;
    padding: 0;
}

.tt-app-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #0f2444;
    border-radius: 999px;
    padding: 4px 12px 4px 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.tt-app-back-btn:hover {
    background: #0f2444;
    color: #ffffff;
    border-color: #0f2444;
}

.tt-app-back-btn i {
    font-size: 14px;
}

.tt-breadcrumb-divider {
    color: #cbd5e1;
    font-size: 13px;
    margin: 0 2px;
}

.tt-app-nav-track {
    flex-grow: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tt-app-nav-track::-webkit-scrollbar {
    display: none;
}

.tt-modern-breadcrumb {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 6px;
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
    padding: 0;
}

.tt-modern-breadcrumb a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tt-modern-breadcrumb a:hover {
    color: #f47c20;
}

.tt-breadcrumb-sep {
    display: inline-flex;
    align-items: center;
    color: #cbd5e1;
    font-size: 10px;
}

.tt-breadcrumb-current {
    color: #0f2444;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.tt-app-nav-actions {
    flex-shrink: 0;
}

.tt-app-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #0f2444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.tt-app-action-btn:hover {
    background: #f47c20;
    color: #ffffff;
    border-color: #f47c20;
}

/* Category Badges & Reading Time */
.tt-modern-header-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tt-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff4ea;
    color: #d96512;
    border: 1px solid rgba(244, 124, 32, 0.3);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none !important;
    transition: all 0.15s ease;
}

.tt-cat-badge:hover {
    background: #f47c20;
    color: #ffffff;
    border-color: #f47c20;
}

.tt-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f47c20;
    box-shadow: 0 0 0 0 rgba(244, 124, 32, 0.7);
    animation: tt-pulse 1.8s infinite;
}

@keyframes tt-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 124, 32, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(244, 124, 32, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 124, 32, 0); }
}

.tt-read-time-pill,
.tt-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 4px 11px;
    font-size: 11.5px;
    font-weight: 600;
}

/* Article Title */
.tt-modern-article-title {
    font-size: clamp(21px, 2.5vw, 29px) !important;
    font-weight: 800 !important;
    line-height: 1.32 !important;
    letter-spacing: -0.025em !important;
    color: #0f2444 !important;
    max-width: 920px;
    margin: 8px 0 16px !important;
}

/* Meta Row */
.tt-modern-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.tt-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tt-author-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(15, 36, 68, 0.1);
}

.tt-author-avatar-fallback {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tt-author-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f2444;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tt-verified-icon {
    color: #0284c7;
    font-size: 13px;
}

.tt-meta-sub {
    font-size: 11.5px;
    color: #64748b;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tt-dot-divider {
    color: #cbd5e1;
}

.tt-quick-share-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tt-share-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-right: 2px;
}

.tt-mini-share {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.tt-mini-share:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.tt-share-wa { background: #25D366; }
.tt-share-fb { background: #1877F2; }
.tt-share-tw { background: #0F1419; }
.tt-share-li { background: #0A66C2; }
.tt-share-copy { background: #475569; }

/* 2-Column Grid Body */
.tt-modern-body-section {
    padding-top: 36px;
}

.tt-modern-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 36px;
    align-items: start;
}

.tt-modern-main-content {
    min-width: 0;
}

/* Cover Image */
.tt-modern-cover-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 34px;
    box-shadow: 0 10px 30px rgba(15, 36, 68, 0.08);
}

.tt-modern-cover-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.tt-cover-location-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(15, 36, 68, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

/* Interactive Horizontal Section Tabs Slider */
.tt-toc-slider-wrap {
    position: sticky;
    top: 15px;
    z-index: 990;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(15, 36, 68, 0.08);
}

.tt-toc-slider-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.tt-toc-slider-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0f2444;
    white-space: nowrap;
    padding-left: 6px;
    padding-right: 4px;
    flex-shrink: 0;
}

.tt-toc-arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.tt-toc-arrow:hover {
    background: #0f2444;
    color: #ffffff;
    border-color: #0f2444;
}

.tt-toc-scroll-track {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex-grow: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tt-toc-scroll-track::-webkit-scrollbar {
    display: none;
}

.tt-toc-pill-list {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
    width: max-content;
}

.tt-toc-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    padding: 6px 15px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    outline: none;
    transition: all 0.18s ease;
    user-select: none;
}

.tt-toc-pill-btn:hover {
    border-color: #f47c20;
    color: #f47c20;
    background: #fff4ea;
}

.tt-toc-pill-btn.active {
    background: #0f2444;
    color: #ffffff;
    border-color: #0f2444;
    box-shadow: 0 4px 14px rgba(15, 36, 68, 0.22);
}

.tt-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: background 0.2s ease;
}

.tt-toc-pill-btn.active .tt-pill-dot {
    background: #f47c20;
}

/* Article Typography Body (Reduced Elegant Sizing Across Devices) */
.tt-modern-article-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: clamp(18px, 3vw, 32px);
    box-shadow: 0 6px 20px rgba(15, 36, 68, 0.04);
    font-size: 14.5px !important;
    line-height: 1.75 !important;
    color: #334155 !important;
}

.tt-modern-article-content p {
    font-size: 14.5px !important;
    line-height: 1.75 !important;
    margin-bottom: 16px !important;
    color: #334155 !important;
}

.tt-modern-article-content h2 {
    font-size: clamp(17px, 2vw, 21px) !important;
    font-weight: 750 !important;
    color: #0f2444 !important;
    margin: 28px 0 14px !important;
    padding-left: 12px !important;
    border-left: 3.5px solid #f47c20 !important;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 6px;
    line-height: 1.35 !important;
}

.tt-modern-article-content h3 {
    font-size: clamp(15px, 1.6vw, 17.5px) !important;
    font-weight: 700 !important;
    color: #0f2444 !important;
    margin: 20px 0 10px !important;
    line-height: 1.4 !important;
}

.tt-modern-article-content h4 {
    font-size: 14px !important;
    font-weight: 650 !important;
    color: #0f2444 !important;
    margin: 16px 0 8px !important;
    line-height: 1.4 !important;
}

.tt-modern-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.tt-modern-article-content blockquote {
    border-left: 4px solid #f47c20;
    background: #fff4ea;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin: 22px 0;
    font-style: italic;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #475569;
}

.tt-modern-article-content ul,
.tt-modern-article-content ol {
    margin-bottom: 20px;
    padding-left: 22px;
}

.tt-modern-article-content li {
    font-size: 14.5px !important;
    line-height: 1.7 !important;
    margin-bottom: 8px !important;
    color: #334155;
}

/* Tags Bar */
.tt-modern-tags-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0 20px;
}

.tt-tags-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f2444;
}

.tt-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tt-tag-chip {
    background: #e2e8f0;
    color: #0f2444;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s;
}

.tt-tag-chip:hover {
    background: #0f2444;
    color: #ffffff;
}

/* Full Share Bar */
.tt-modern-share-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 28px;
    margin: 32px 0;
    box-shadow: 0 6px 20px rgba(15, 36, 68, 0.04);
}

.tt-share-cta-text strong {
    display: block;
    font-size: 16px;
    color: #0f2444;
    margin-bottom: 3px;
}

.tt-share-cta-text span {
    font-size: 13.5px;
    color: #64748b;
}

.tt-modern-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.tt-share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
}

.tt-share-button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

/* Author Bio Card */
.tt-author-bio-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 30px;
    margin: 34px 0;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    box-shadow: 0 6px 20px rgba(15, 36, 68, 0.04);
}

.tt-author-bio-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
}

.tt-author-bio-avatar-fallback {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.tt-author-role-badge {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f47c20;
    letter-spacing: 0.04em;
}

.tt-author-bio-name {
    font-size: 18px;
    font-weight: 800;
    color: #0f2444;
    margin: 4px 0 8px;
}

.tt-author-bio-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 12px;
}

.tt-author-all-posts {
    font-size: 13px;
    font-weight: 700;
    color: #0f2444;
    text-decoration: none;
}

.tt-author-all-posts:hover {
    color: #f47c20;
}

/* Post Navigation */
.tt-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 34px 0;
}

.tt-nav-post-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 22px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.tt-nav-post-item:hover {
    transform: translateY(-2px);
    border-color: #f47c20;
    box-shadow: 0 8px 24px rgba(15, 36, 68, 0.06);
}

.tt-nav-direction {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f47c20;
    letter-spacing: 0.04em;
}

.tt-nav-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f2444;
    line-height: 1.4;
}

/* ==========================================================================
   Curated Tours Section (Modern Location Slider Effect)
   ========================================================================== */
.tt-news-tours-section,
.dest-modern-experiences-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 26px;
    margin: 32px 0;
    box-shadow: 0 6px 20px rgba(15, 36, 68, 0.04);
}

.dest-section-kicker {
    color: #F47C20 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 4px !important;
}

.dest-modern-section-title {
    color: #0F1F38 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

.dest-slider-header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.dest-mobile-swipe-hint {
    background: #FFF5ED !important;
    color: #F47C20 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(244, 124, 32, 0.25) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.dest-slider-arrows {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.dest-slider-arrow-btn {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.2s ease !important;
}

.dest-slider-arrow-btn:hover {
    background: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a !important;
    transform: scale(1.05) !important;
}

/* Experience Slider: Smooth touch-scroll slider across desktop and mobile */
.dest-experiences-slider.has-slider {
    display: flex !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding: 8px 2px 14px 2px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
}

.dest-experiences-slider.has-slider::-webkit-scrollbar {
    display: none !important;
}

.dest-experiences-slider.has-slider .dest-exp-slide-item {
    flex: 0 0 270px !important;
    width: 270px !important;
    max-width: 270px !important;
    min-width: 270px !important;
    scroll-snap-align: start !important;
}

/* Experience Cards Matching Location System */
.dest-experience-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
}

.dest-experience-card:hover {
    transform: translateY(-4px) !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.12) !important;
}

.dest-card-media {
    position: relative !important;
    width: 100% !important;
    height: 160px !important;
    overflow: hidden !important;
    background: #f1f5f9 !important;
}

.dest-card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.dest-experience-card:hover .dest-card-img {
    transform: scale(1.06) !important;
}

.dest-card-badges {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    z-index: 2 !important;
}

.dest-card-badge {
    padding: 3px 9px !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
}

.badge-category {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(6px) !important;
    color: #ffffff !important;
}

.dest-card-wishlist {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 2 !important;
}

.dest-card-wishlist button {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #64748b !important;
    font-size: 13px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

.dest-card-wishlist button:hover,
.dest-card-wishlist button.active {
    color: #ef4444 !important;
    background: #ffffff !important;
    transform: scale(1.1) !important;
}

.dest-card-body {
    padding: 14px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.dest-card-location {
    font-size: 11.5px !important;
    color: #64748b !important;
    font-weight: 700 !important;
}

.dest-card-title {
    font-size: 13.5px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.dest-card-title a {
    color: #0f172a !important;
    text-decoration: none !important;
}

.dest-card-title a:hover {
    color: #f97316 !important;
}

.dest-card-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    margin-bottom: 12px !important;
}

.dest-feat-pill {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    padding: 2px 7px !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.dest-card-footer {
    margin-top: auto !important;
    padding-top: 10px !important;
    border-top: 1px solid #f1f5f9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.dest-price-box {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.1 !important;
}

.price-from-label {
    font-size: 10px !important;
    color: #94a3b8 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.price-amount {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
}

.price-unit {
    font-size: 10.5px !important;
    color: #64748b !important;
    font-weight: 600 !important;
}

.price-enquire {
    font-size: 12.5px !important;
    font-weight: 800 !important;
    color: #f97316 !important;
}

.btn-dest-card-cta {
    padding: 5px 14px !important;
    border-radius: 8px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: all 0.2s ease !important;
}

.btn-dest-card-cta:hover {
    background: #f97316 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

.btn-dest-view-all {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 20px !important;
    border-radius: 999px !important;
    background: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
    font-size: 12.5px !important;
    font-weight: 750 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.btn-dest-view-all:hover {
    background: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a !important;
}

/* Modern Sticky Sidebar */
.tt-sidebar-sticky-wrap {
    position: sticky;
    top: 90px;
}

.tt-modern-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(15, 36, 68, 0.04);
}

.tt-widget-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f2444;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tt-search-form {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 999px;
    padding: 4px 4px 4px 16px;
    border: 1px solid #e2e8f0;
}

.tt-search-input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 13.5px;
    outline: none;
    color: #0f2444;
}

.tt-search-submit {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0f2444;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* Promo Card Widget */
.tt-widget-promo-card {
    background: linear-gradient(135deg, #0f2444 0%, #1e3a8a 100%);
    color: #ffffff;
    border: none;
}

.tt-promo-badge {
    display: inline-block;
    background: rgba(244, 124, 32, 0.2);
    color: #f47c20;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.tt-widget-promo-card h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
}

.tt-widget-promo-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.tt-btn-promo-cta {
    display: block;
    background: #f47c20;
    color: #ffffff !important;
    text-align: center;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(244, 124, 32, 0.4);
    transition: background 0.15s, transform 0.15s;
}

.tt-btn-promo-cta:hover {
    background: #d96512;
    transform: translateY(-2px);
}

.tt-promo-guarantees {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.9);
}

/* Sidebar TOC Widget */
.tt-sidebar-toc-body ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.tt-sidebar-toc-body li {
    margin-bottom: 8px;
}

.tt-sidebar-toc-body a {
    color: #475569;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.15s;
}

.tt-sidebar-toc-body a:hover {
    color: #f47c20;
}

/* Trending Posts Widget */
.tt-trending-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none !important;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.tt-trending-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tt-trending-rank {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #fff4ea;
    color: #f47c20;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-trending-cat {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f47c20;
    margin-bottom: 2px;
}

.tt-trending-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f2444;
    line-height: 1.35;
    margin: 0 0 4px;
}

.tt-trending-title:hover {
    color: #f47c20;
}

.tt-trending-date {
    font-size: 11.5px;
    color: #94a3b8;
}

/* Categories Widget */
.tt-cat-links-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tt-cat-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none !important;
    color: #334155;
    font-size: 13.5px;
    font-weight: 600;
    transition: background 0.15s, color 0.15s;
}

.tt-cat-link-item:hover,
.tt-cat-link-item.active {
    background: #f1f5f9;
    color: #f47c20;
}

.tt-cat-counter {
    background: #e2e8f0;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

/* Toast Notification */
.tt-copy-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f2444;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(15, 36, 68, 0.25);
    z-index: 999999;
    display: none;
    align-items: center;
    gap: 8px;
}

.tt-copy-toast.show {
    display: flex;
    animation: tt-fadein 0.25s, tt-fadeout 0.25s 2.5s;
}

@keyframes tt-fadein {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tt-fadeout {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(10px); }
}

/* ==========================================================================
   MODERN LISTING PAGE STYLES
   ========================================================================== */
.tt-modern-listing-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    border-bottom: 1px solid #e2e8f0;
    padding: clamp(36px, 6vw, 56px) 0 clamp(30px, 4vw, 44px);
}

.tt-modern-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff4ea;
    color: #d96512;
    border: 1px solid rgba(244, 124, 32, 0.25);
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.tt-modern-listing-title {
    font-size: clamp(21px, 2.8vw, 28px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #0f2444;
    margin: 0 0 8px;
}

.tt-modern-listing-subtitle {
    font-size: 13.5px;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto 18px;
    line-height: 1.6;
}

/* Hero Search Bar (Sleek Icon-Only Button) */
.tt-hero-search-wrapper {
    max-width: 480px;
    margin: 0 auto 14px;
    padding: 0 10px;
}

.tt-hero-search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 999px;
    padding: 3px 5px 3px 16px;
    box-shadow: 0 4px 16px rgba(15, 36, 68, 0.05);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.tt-hero-search-form:focus-within {
    border-color: #f47c20;
    box-shadow: 0 4px 20px rgba(244, 124, 32, 0.16);
}

.tt-hero-search-icon {
    color: #94a3b8;
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
}

.tt-hero-search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 13px;
    color: #0f2444;
    background: transparent;
    padding: 7px 0;
}

.tt-hero-search-input::placeholder {
    color: #94a3b8;
    font-size: 12.5px;
}

.tt-hero-search-clear {
    color: #94a3b8;
    margin-right: 8px;
    font-size: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.tt-hero-search-clear:hover {
    color: #0f2444;
}

.tt-hero-search-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #0f2444;
    color: #ffffff;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 0;
    box-shadow: 0 2px 6px rgba(15, 36, 68, 0.18);
    transition: background 0.15s, transform 0.15s;
}

.tt-hero-search-btn:hover {
    background: #f47c20;
    transform: scale(1.05);
}

/* Category Filter Chips / Pills (App Style Horizontal Scroller) */
.tt-category-chips-scroller {
    width: 100%;
    max-width: 920px;
    margin: 14px auto 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 6px 12px 6px;
}

.tt-category-chips-scroller::-webkit-scrollbar {
    display: none;
}

.tt-category-chips-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: max-content;
    margin: 0 auto;
    padding: 2px 4px;
}

@media (max-width: 768px) {
    .tt-category-chips-bar {
        margin: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.tt-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none !important;
    box-shadow: 0 1px 4px rgba(15, 36, 68, 0.04);
    transition: all 0.18s ease;
    flex-shrink: 0;
}

.tt-chip:hover {
    border-color: #f47c20;
    color: #f47c20;
    background: #fff4ea;
    transform: translateY(-1px);
}

.tt-chip.active {
    background: #0f2444;
    color: #ffffff;
    border-color: #0f2444;
    box-shadow: 0 4px 12px rgba(15, 36, 68, 0.2);
}

.tt-chip-count {
    background: #f1f5f9;
    color: #64748b;
    font-size: 10.5px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 999px;
    transition: all 0.18s ease;
}

.tt-chip.active .tt-chip-count {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.tt-chip:hover .tt-chip-count {
    background: rgba(244, 124, 32, 0.2);
    color: #f47c20;
}

/* Featured Story Spotlight Card (Compact App Style) */
.tt-featured-story-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(15, 36, 68, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tt-featured-story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 36, 68, 0.08);
}

.tt-featured-thumb-wrap {
    position: relative;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

.tt-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.tt-featured-story-card:hover .tt-featured-img {
    transform: scale(1.04);
}

.tt-featured-ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f47c20;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 3px 9px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(244, 124, 32, 0.3);
}

.tt-featured-cat-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(15, 36, 68, 0.85);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.tt-featured-info {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tt-featured-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: #64748b;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.tt-meta-author {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    color: #0f2444;
}

.tt-mini-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.tt-mini-avatar-placeholder {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #64748b;
}

.tt-meta-dot {
    color: #cbd5e1;
}

.tt-featured-title {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 800;
    line-height: 1.32;
    margin: 0 0 6px;
}

.tt-featured-title a {
    color: #0f2444;
    text-decoration: none;
    transition: color 0.15s ease;
}

.tt-featured-title a:hover {
    color: #f47c20;
}

.tt-featured-excerpt {
    font-size: 12.5px;
    line-height: 1.55;
    color: #64748b;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tt-btn-read-featured {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0f2444;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 999px;
    text-decoration: none !important;
    transition: background 0.15s, transform 0.15s;
    width: fit-content;
}

.tt-btn-read-featured:hover {
    background: #f47c20;
    transform: translateX(2px);
}

/* Modern Article Grid (App-Style Compact Proportions) */
.tt-modern-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.tt-modern-grid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 36, 68, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.tt-modern-grid-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 36, 68, 0.07);
    border-color: #cbd5e1;
}

.tt-card-thumb-wrap {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: #f1f5f9;
}

.tt-card-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.tt-modern-grid-card:hover .tt-card-thumb-img {
    transform: scale(1.05);
}

.tt-card-cat-badge {
    position: absolute;
    top: 8px;
    left: 8px;
}

.tt-card-cat-badge a {
    background: rgba(15, 36, 68, 0.85);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
}

.tt-card-read-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 5px;
}

.tt-card-content {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tt-card-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #64748b;
    margin-bottom: 6px;
}

.tt-card-author {
    font-weight: 600;
    color: #0f2444;
}

.tt-card-title {
    font-size: 14px !important;
    font-weight: 750 !important;
    line-height: 1.35 !important;
    margin: 0 0 5px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tt-card-title a {
    color: #0f2444;
    text-decoration: none;
    transition: color 0.15s;
}

.tt-card-title a:hover {
    color: #f47c20;
}

.tt-card-excerpt {
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: #64748b !important;
    margin-bottom: 8px !important;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tt-card-footer {
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.tt-card-read-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 700;
    color: #f47c20;
    text-decoration: none;
    transition: color 0.15s, gap 0.15s;
}

.tt-card-read-link:hover {
    color: #d96512;
    gap: 7px;
}

/* Pagination Box */
.tt-modern-pagination-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 14px;
}

.tt-pagination-counter {
    font-size: 13px;
    color: #64748b;
}

/* Empty State */
.tt-empty-results-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
}

.tt-empty-icon {
    font-size: 40px;
    color: #94a3b8;
    margin-bottom: 14px;
}

.tt-empty-results-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f2444;
    margin-bottom: 8px;
}

.tt-empty-results-box p {
    font-size: 14.5px;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto 20px;
}

.tt-btn-reset {
    background: #0f2444 !important;
    border-radius: 999px !important;
    padding: 9px 24px !important;
    font-weight: 700 !important;
}

/* Responsive Rules for Modern Templates */
@media (max-width: 1024px) {
    .tt-modern-layout-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .tt-curated-tours-grid,
    .tt-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tt-modern-hero-header {
        padding: 12px 0 16px;
    }
    .tt-app-top-nav {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 5px 8px;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px rgba(15, 36, 68, 0.04);
    }
    .tt-app-back-btn {
        width: 30px;
        height: 30px;
        min-width: 30px;
        padding: 0;
        justify-content: center;
    }
    .tt-app-back-btn .tt-back-text {
        display: none;
    }
    .tt-breadcrumb-divider {
        display: none;
    }
    .tt-modern-article-title {
        font-size: 19px !important;
        line-height: 1.35 !important;
        margin: 6px 0 10px !important;
    }
    .tt-featured-story-card {
        grid-template-columns: 1fr !important;
        border-radius: 14px !important;
        margin-bottom: 16px !important;
        box-shadow: 0 4px 14px rgba(15, 36, 68, 0.05) !important;
    }
    .tt-featured-thumb-wrap {
        height: 145px !important;
        min-height: 145px !important;
    }
    .tt-featured-ribbon {
        font-size: 9px !important;
        padding: 3px 8px !important;
        top: 8px !important;
        left: 8px !important;
    }
    .tt-featured-cat-tag {
        font-size: 9.5px !important;
        padding: 2px 7px !important;
        bottom: 8px !important;
        left: 8px !important;
    }
    .tt-featured-info {
        padding: 12px 14px !important;
    }
    .tt-featured-meta {
        font-size: 11px !important;
        margin-bottom: 4px !important;
        gap: 6px !important;
    }
    .tt-featured-meta .tt-mini-avatar {
        width: 18px !important;
        height: 18px !important;
    }
    .tt-featured-title {
        font-size: 14.5px !important;
        line-height: 1.35 !important;
        margin: 0 0 5px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .tt-featured-excerpt {
        font-size: 11.5px !important;
        line-height: 1.45 !important;
        margin-bottom: 8px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .tt-btn-read-featured {
        padding: 5px 14px !important;
        font-size: 11px !important;
        border-radius: 999px !important;
        width: fit-content !important;
    }
    .tt-modern-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }
    .tt-modern-grid-card {
        border-radius: 12px !important;
    }
    .tt-modern-grid-card .tt-card-thumb-wrap {
        height: 135px !important;
    }
    .tt-card-content {
        padding: 10px 12px !important;
    }
    .tt-card-meta-top {
        font-size: 10.5px !important;
        margin-bottom: 4px !important;
    }
    .tt-card-title {
        font-size: 13.5px !important;
        line-height: 1.35 !important;
        margin: 0 0 4px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .tt-card-excerpt {
        font-size: 11px !important;
        line-height: 1.4 !important;
        margin-bottom: 6px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .tt-card-footer {
        padding-top: 6px !important;
    }
    .tt-card-read-link {
        font-size: 11px !important;
    }
    .tt-post-navigation {
        grid-template-columns: 1fr;
    }
    .tt-modern-meta-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .tt-author-bio-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* Mobile Slider Effect matching Location System */
    .dest-experiences-slider.has-slider {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 12px !important;
        padding: 6px 2px 14px 2px !important;
        scrollbar-width: none !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .dest-experiences-slider.has-slider::-webkit-scrollbar {
        display: none !important;
    }

    .dest-experiences-slider.has-slider .dest-exp-slide-item {
        flex: 0 0 78vw !important;
        min-width: 78vw !important;
        max-width: 82vw !important;
        scroll-snap-align: start !important;
    }

    .tt-toc-slider-wrap {
        top: 6px;
        padding: 4px 8px;
        margin-bottom: 16px;
    }

    .tt-toc-arrow {
        display: none;
    }

    .tt-toc-pill-btn {
        padding: 4px 10px;
        font-size: 11.5px;
    }
}

.tt-swipe-hint {
    font-size: 11px;
    font-weight: 700;
    color: #f47c20;
    background: #fff4ea;
    border: 1px solid rgba(244, 124, 32, 0.25);
    padding: 3px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

