
/* ======= list =======*/
.guide-hero {
    height: 400px;
    /*background: linear-gradient(135deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.5) 100%),*/
    /*            url('') center/cover no-repeat;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.guide-hero-content {
    max-width: 760px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.guide-hero h1 {
    font-size: 46px;
    margin-bottom: 14px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.guide-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* FILTER BAR */
.guide-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
    position: sticky;
    top: 72px;
    z-index: 100;
}

.guide-filter-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-100);
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.filter-tab:hover {
    background: var(--gray-200);
    color: var(--dark);
}

.filter-tab.active {
    background: var(--red);
    color: var(--white);
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sort-select {
    padding: 8px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    outline: none;
}

.sort-select:focus {
    border-color: var(--red);
}

.result-count {
    font-size: 14px;
    color: var(--gray-500);
    white-space: nowrap;
}

/* FEATURED GUIDE */
.featured-section {
    padding: 48px 0 24px;
    background: var(--light-bg-alt);
}

.featured-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.featured-card:hover {
    box-shadow: var(--shadow-xl);
}

.featured-img {
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    position: relative;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.featured-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.featured-category {
    background: linear-gradient(135deg, #fef2f2, #fff1f2);
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
}

.featured-city {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
}

.featured-body h2 {
    font-size: 32px;
    margin-bottom: 14px;
    line-height: 1.25;
    color: var(--dark);
}

.featured-body h2 a:hover {
    color: var(--red);
}

.featured-excerpt {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.guide-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-soft));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.author-info .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
}

.author-info .author-date {
    font-size: 12px;
    color: var(--gray-500);
}

.read-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-100);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* GUIDES GRID */
.guides-section {
    padding: 24px 0 64px;
    background: var(--light-bg-alt);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.guide-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.4s ease forwards;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.guide-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.guide-card:hover .guide-card-img img {
    transform: scale(1.06);
}

.guide-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.guide-card-city {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--red);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.guide-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.guide-card-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--dark);
}

.guide-card-body h3 a:hover {
    color: var(--red);
}

.guide-card-excerpt {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.guide-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-card-author .author-avatar {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.guide-card-author .author-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
}

.guide-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--gray-500);
    font-family: 'Inter', sans-serif;
}

.guide-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.read-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.read-link:hover {
    gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 1279px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-img {
        min-height: 260px;
    }
    .featured-body {
        padding: 28px;
    }
    .featured-body h2 {
        font-size: 26px;
    }
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-hero {
        height: 320px;
    }
    .guide-hero h1 {
        font-size: 32px;
    }
    .guide-hero p {
        font-size: 15px;
    }
    .guide-filter-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .filter-tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }
    .filter-right {
        width: 100%;
        justify-content: space-between;
    }
    .guides-grid {
        grid-template-columns: 1fr;
    }
    .featured-body h2 {
        font-size: 22px;
    }
    .featured-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .guide-hero h1 {
        font-size: 26px;
    }
    .guide-card-img {
        height: 180px;
    }
}

/* ======== show =========*/

/* GUIDE HERO */
.gd-hero {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gd-hero-bg {
    position: absolute;
    inset: 0;
    /*background: url('') center/cover no-repeat;*/
}

.gd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.45) 100%);
}

.gd-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 820px;
    padding: 0 24px;
}

.gd-hero .breadcrumb {
    font-size: 14px;
    margin-bottom: 18px;
    opacity: 0.9;
    justify-content: center;
}

.gd-hero .breadcrumb a {
    color: rgba(255,255,255,0.85);
}

.gd-hero .breadcrumb a:hover {
    color: var(--white);
}

.gd-hero .breadcrumb span,
.gd-hero .breadcrumb .ep-bc-sep {
    color: rgba(255,255,255,0.5);
}

.gd-hero-content h1,.gd-hero-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.gd-hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.gd-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    /*color: rgba(255,255,255,0.8);*/
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
}

.gd-hero-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gd-hero-meta .meta-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.3);
}

.gd-category-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
}

/* ARTICLE LAYOUT */
.gd-article {
    padding: 64px 0;
    background: var(--white);
}

.gd-layout {
    display: grid;
    /*grid-template-columns: 220px 1fr 300px;*/
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

/* TABLE OF CONTENTS (Left) */
.gd-toc {
    position: sticky;
    top: 100px;
}

.gd-toc h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}

.gd-toc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gd-toc ul li a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--gray-600);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.gd-toc ul li a:hover,
.gd-toc ul li a.active {
    color: var(--red);
    background: #fef2f2;
    border-left-color: var(--red);
}

/* ARTICLE CONTENT (Center) */
.gd-content {
    /*max-width: 760px;*/
    max-width: 920px;
}

.gd-content section {
    margin-bottom: 56px;
    scroll-margin-top: 100px;
}

.gd-content h1 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
}

.gd-content h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--red);
}

.gd-content h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 14px;
    margin-top: 32px;
}

.gd-content p {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.gd-content ul,
.gd-content ol {
    margin: 0 0 20px 4px;
    padding-left: 20px;
}

.gd-content ul li,
.gd-content ol li {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.gd-content ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.gd-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}

.gd-content ol {
    counter-reset: item;
}

.gd-content ol li {
    counter-increment: item;
    position: relative;
    padding-left: 28px;
}

.gd-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.gd-content img {
    width: 100%;
    border-radius: var(--radius);
    margin: 24px 0;
    box-shadow: var(--shadow-md);
}

.gd-content blockquote {
    background: linear-gradient(135deg, #fef2f2, #fff7f7);
    border-left: 4px solid var(--red);
    padding: 24px 28px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
    font-size: 17px;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.7;
}

.gd-content blockquote strong {
    color: var(--red);
    font-style: normal;
}

/* INFO BOX */
.info-box {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
    margin: 28px 0;
}

.info-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}

.info-box ul {
    margin: 0;
    padding: 0;
}

.info-box ul li {
    font-size: 15px;
}

/* DAY PLAN CARD */
.day-plan {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
}

.day-plan-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.day-plan-num {
    width: 52px;
    height: 52px;
    background: var(--red);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.day-plan-title h3 {
    margin: 0;
    font-size: 20px;
}

.day-plan-title .day-theme {
    font-size: 13px;
    color: var(--gray-500);
    font-family: 'Inter', sans-serif;
}

.timeline-stop {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

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

.stop-time {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    min-width: 70px;
    padding-top: 2px;
    font-family: 'Inter', sans-serif;
}

.stop-detail h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.stop-detail p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* BUDGET TABLE */
.budget-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.budget-table th {
    background: var(--dark);
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.budget-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--gray-700);
    font-family: 'Inter', sans-serif;
}

.budget-table tr:last-child td {
    border-bottom: none;
}

.budget-table tr:nth-child(even) td {
    background: var(--gray-100);
}

.budget-table .total-row td {
    background: #fef2f2;
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
}

.budget-table .price {
    color: var(--red);
    font-weight: 600;
}

/* SIDEBAR (Right) */
.gd-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* QUICK FACTS BOX */
.quick-facts-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--red);
}

.quick-facts-box h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.fact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.fact-row:last-child {
    border-bottom: none;
}

.fact-row .fact-icon {
    font-size: 18px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.fact-row .fact-label-text {
    font-weight: 600;
    color: var(--dark);
    min-width: 80px;
}

.fact-row .fact-val {
    color: var(--gray-600);
}

/* SHARE BOX */
.share-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.share-box h4 {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray-600);
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.share-btn.facebook:hover { background: #1877f2; color: var(--white); }
.share-btn.twitter:hover { background: #000; color: var(--white); }
.share-btn.whatsapp:hover { background: #25d366; color: var(--white); }
.share-btn.email:hover { background: #ea4335; color: var(--white); }

/* SAVE BUTTON */
.save-guide-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    margin-top: 16px;
}

.save-guide-btn:hover {
    background: var(--red);
    transform: translateY(-1px);
}

/* GALLERY */
.gd-gallery {
    padding: 64px 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: 'Inter', sans-serif;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
}

/* AUTHOR BIO */
.author-bio-section {
    padding: 64px 0;
    background: var(--white);
}

.author-bio-card {
    display: flex;
    gap: 32px;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-100), var(--light-bg-alt));
    border-radius: var(--radius-lg);
    padding: 40px;
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-soft));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.author-bio-info h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.author-bio-role {
    font-size: 14px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.author-bio-info p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

/* RELATED GUIDES */
.related-guides-section {
    padding: 64px 0;
    background: var(--light-bg-alt);
}

.related-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.related-guide-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.rg-img {
    height: 180px;
    overflow: hidden;
}

.rg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.related-guide-card:hover .rg-img img {
    transform: scale(1.05);
}

.rg-body {
    padding: 20px;
}

.rg-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.rg-badge {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.rg-body h4 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.rg-body h4 a:hover {
    color: var(--red);
}

.rg-body p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.rg-read {
    font-size: 13px;
    color: var(--gray-500);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 1279px) {
    .gd-layout {
        grid-template-columns: 1fr;
    }
    .gd-toc {
        display: none;
    }
    .gd-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .quick-facts-box {
        flex: 1;
        min-width: 280px;
    }
    .share-box {
        flex: 1;
        min-width: 200px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .related-guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gd-hero {
        height: 420px;
    }
    .gd-hero-content h1 {
        font-size: 30px;
    }
    .gd-hero-subtitle {
        font-size: 15px;
    }
    .gd-hero-meta {
        gap: 12px;
        font-size: 12px;
    }
    .gd-hero-meta .meta-divider {
        display: none;
    }
    .gd-content h2 {
        font-size: 26px;
    }
    .gd-content p {
        font-size: 16px;
    }
    .gd-sidebar {
        flex-direction: column;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .related-guides-grid {
        grid-template-columns: 1fr;
    }
    .author-bio-card {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }
    .day-plan {
        padding: 20px;
    }
    .timeline-stop {
        flex-direction: column;
        gap: 4px;
    }
    .stop-time {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .gd-hero-content h1 {
        font-size: 24px;
    }
    .gd-content h2 {
        font-size: 22px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .budget-table {
        font-size: 13px;
    }
    .budget-table th,
    .budget-table td {
        padding: 10px 12px;
    }
}