/* ═══════════════════════════════════════════
   CURVA — Shared Sub-Page Styles
   Fleet · Events · Transfers
   ═══════════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.32) 50%, rgba(0,0,0,0.15) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 48px;
}

.page-hero .section-tag {
    color: var(--amber);
    margin-bottom: 12px;
}

.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--amber);
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255,255,255,0.5);
}


/* ═══════════════════════════════════════════
   PAGE GRID SECTION
   ═══════════════════════════════════════════ */
.page-grid-section {
    padding: 64px 0 80px;
    background: var(--gray-50);
}

.pg-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pg-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}


/* ═══════════════════════════════════════════
   PG CARD — Shared Card Component
   ═══════════════════════════════════════════ */
.pg-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.pg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
}

/* Featured card spans full width on 3-col grid */
.pg-card-featured {
    grid-column: 1 / -1;
}

.pg-card-featured .pg-card-img {
    height: 340px;
}

/* Card Image */
.pg-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.pg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pg-card:hover .pg-card-img img {
    transform: scale(1.06);
}

/* Badge */
.pg-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-950);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 2;
}

.pg-card-badge svg {
    width: 13px;
    height: 13px;
}

.pg-badge-premium {
    background: linear-gradient(135deg, var(--olive), var(--amber));
}

/* Hover overlay */
.pg-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.pg-card:hover .pg-card-overlay {
    opacity: 1;
}

.pg-card-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: var(--gray-900);
    border: none;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transform: translateY(12px);
    transition: all 0.35s ease;
}

.pg-card:hover .pg-card-view-btn {
    transform: translateY(0);
}

.pg-card-view-btn svg {
    width: 16px;
    height: 16px;
}

.pg-card-view-btn:hover {
    background: var(--olive);
    color: #fff;
}

/* Card Body */
.pg-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pg-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
}

.pg-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--amber-dark);
    font-weight: 500;
}

.pg-meta-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--amber);
}

.pg-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.25;
}

.pg-card-desc {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Highlights */
.pg-card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.pg-highlight {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 5px 12px;
    border-radius: 100px;
}

.pg-highlight svg {
    width: 13px;
    height: 13px;
    stroke: #059669;
}

/* Card Footer */
.pg-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.pg-card-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pg-price-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    text-transform: uppercase;
}

.pg-price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pg-price-amount small {
    font-size: 0.55em;
    font-weight: 600;
    color: var(--gray-400);
}

.pg-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--amber-dark);
    background: none;
    border: none;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.pg-card-link:hover {
    color: var(--amber);
    gap: 10px;
}

.pg-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s;
}

.pg-card-link:hover svg {
    transform: translateX(3px);
}

/* Stagger animations */
.pg-grid-2 .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.pg-grid-2 .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.pg-grid-2 .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }
.pg-grid-2 .animate-on-scroll:nth-child(4) { transition-delay: 0.36s; }

.pg-grid-3 .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.pg-grid-3 .animate-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.pg-grid-3 .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }


/* ═══════════════════════════════════════════
   WHY / BENEFITS SECTION
   ═══════════════════════════════════════════ */
.page-why-section {
    padding: 80px 0;
    background: #fff;
}

.page-why-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-why-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 12px;
}

.page-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.page-why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.page-why-card:hover {
    background: #fff;
    border-color: var(--olive-100);
    box-shadow: 0 8px 32px rgba(85, 107, 47, 0.08);
    transform: translateY(-4px);
}

.page-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--olive-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.page-why-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--olive);
}

.page-why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.page-why-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.page-why-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.page-why-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.page-why-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.page-why-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.page-cta-section {
    padding: 80px 0;
    background: var(--olive-dark);
}

.page-cta-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.page-cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.page-cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}


/* ═══════════════════════════════════════════
   DETAIL MODAL
   ═══════════════════════════════════════════ */
.detail-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.detail-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.detail-modal {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 64px rgba(0,0,0,0.25);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-modal-backdrop.active .detail-modal {
    transform: translateY(0) scale(1);
}

.detail-modal-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.detail-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-modal-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.detail-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    z-index: 3;
}

.detail-modal-close:hover {
    background: rgba(0,0,0,0.8);
    transform: rotate(90deg);
}

.detail-modal-close svg {
    width: 18px;
    height: 18px;
}

.detail-modal-badge {
    position: absolute;
    bottom: 20px;
    left: 24px;
    background: var(--olive);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 2;
}

.detail-modal-body {
    padding: 32px;
}

.detail-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.detail-modal-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--amber-dark);
    font-weight: 500;
}

.detail-modal-meta-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--amber);
}

.detail-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.2;
}

.detail-modal-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.detail-modal-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.detail-modal-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--gray-50);
    padding: 7px 14px;
    border-radius: 100px;
    border: 1px solid var(--gray-100);
}

.detail-modal-highlight svg {
    width: 14px;
    height: 14px;
    stroke: #059669;
}

.detail-modal-divider {
    height: 1px;
    background: var(--gray-100);
    margin-bottom: 24px;
}

.detail-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.detail-modal-price-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.detail-modal-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.detail-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--olive);
    color: #fff;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(85, 107, 47, 0.3);
    white-space: nowrap;
}

.detail-modal-cta:hover {
    background: var(--olive-dark);
    box-shadow: 0 6px 20px rgba(85, 107, 47, 0.45);
    transform: translateY(-2px);
}

.detail-modal-cta svg {
    width: 16px;
    height: 16px;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   BLOG PAGE STYLES
   ═══════════════════════════════════════════ */

/* ── Blog Hero ── */
.blog-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.blog-hero-bg .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.2) 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
    max-width: 720px;
}

.blog-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.blog-hero-excerpt {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 600px;
}

/* Blog Meta Hero */
.blog-meta-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-category-tag {
    display: inline-block;
    padding: 5px 16px;
    background: var(--olive);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
}

.blog-meta-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.blog-meta-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.blog-meta-info svg {
    width: 14px;
    height: 14px;
}

/* ── Blog Listing Hero (no bg image — dark gradient) ── */
.blog-listing-hero .blog-hero-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 100%);
}

.blog-listing-hero .blog-hero-bg .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
}

/* ── Blog Content Section ── */
.blog-content-section {
    padding: 64px 0 80px;
    background: var(--gray-50);
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* ── Blog Article ── */
.blog-article {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

.blog-text-content {
    margin-bottom: 36px;
}

.blog-text-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.3;
}

.blog-text-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.blog-text-content p:last-child {
    margin-bottom: 0;
}

.blog-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.blog-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 10px;
}

.blog-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--olive);
}

/* ── Destination / Image+Content Sections ── */
.destination-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
    background: var(--gray-50);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.destination-section:nth-child(even) {
    direction: rtl;
}

.destination-section:nth-child(even) > * {
    direction: ltr;
}

.destination-image {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-section:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.destination-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.destination-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    background: #fff;
    color: var(--olive);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid var(--olive-100);
}

/* ── Blog Footer (Tags & Share) ── */
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 28px;
    margin-top: 36px;
    border-top: 1px solid var(--gray-100);
}

.blog-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.blog-tags .tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-50);
    color: var(--gray-600);
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.blog-tags .tag:hover {
    background: var(--amber-50);
    color: var(--amber-dark);
    border-color: var(--amber-100);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-50);
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    transition: all 0.25s;
}

.share-btn:hover {
    background: var(--olive);
    color: #fff;
    border-color: var(--olive);
    transform: translateY(-2px);
}

.share-btn svg {
    width: 16px;
    height: 16px;
}


/* ── Blog Sidebar ── */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

/* Author Card */
.author-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--olive-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.author-avatar svg {
    width: 36px;
    height: 36px;
    stroke: var(--olive);
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.82rem;
    color: var(--amber-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.author-bio {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Related Posts */
.related-posts {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

.related-posts h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.related-post {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.related-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-img {
    width: 80px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.35;
    margin-bottom: 4px;
}

.related-post-content h5 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.related-post-content h5 a:hover {
    color: var(--amber);
}

.related-post-date {
    font-size: 0.75rem;
    color: var(--gray-400);
}


/* ═══════════════════════════════════════════
   BLOG PAGE RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 28px;
    }

    .blog-article {
        padding: 32px;
    }

    .destination-section {
        grid-template-columns: 1fr;
    }

    .destination-section:nth-child(even) {
        direction: ltr;
    }

    .destination-image {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 400px;
    }

    .blog-hero-content {
        padding-bottom: 36px;
    }

    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-article {
        padding: 24px;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-meta-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .destination-section {
        grid-template-columns: 1fr;
    }

    .destination-image {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        min-height: 360px;
    }

    .blog-article {
        padding: 20px;
    }

    .blog-text-content h3 {
        font-size: 1.25rem;
    }

    .destination-content {
        padding: 20px;
    }

    .blog-meta-info {
        gap: 12px;
    }

    .related-post-img {
        width: 64px;
        height: 52px;
    }
}

/* ─── Dynamic blog post content styles ─── */
.blog-dynamic-content p {
    margin-bottom: 1.4em;
    line-height: 1.8;
}
.blog-dynamic-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 2em 0 0.8em;
    color: var(--text-primary, #1a1a1a);
}
.blog-dynamic-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.6em 0 0.6em;
}
.blog-dynamic-content ul,
.blog-dynamic-content ol {
    padding-left: 1.6em;
    margin-bottom: 1.4em;
}
.blog-dynamic-content li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}
.blog-dynamic-content blockquote {
    border-left: 4px solid var(--amber, #daa520);
    padding: 12px 20px;
    margin: 1.6em 0;
    background: rgba(218,165,32,0.06);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}
.blog-dynamic-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 1.4em 0;
}
.blog-dynamic-content strong { font-weight: 700; }
.blog-dynamic-content em { font-style: italic; }
.blog-dynamic-content a { color: var(--amber, #daa520); text-decoration: underline; }


/* ═══════════════════════════════════════════
   ORIGINAL RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .pg-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pg-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pg-card-featured {
        grid-column: 1 / -1;
    }

    .page-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 340px;
    }

    .page-hero-content {
        padding-bottom: 32px;
    }

    .pg-grid-2,
    .pg-grid-3 {
        grid-template-columns: 1fr;
    }

    .pg-card-featured {
        grid-column: auto;
    }

    .pg-card-featured .pg-card-img {
        height: 260px;
    }

    .page-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .detail-modal {
        max-height: 95vh;
        border-radius: 16px;
    }

    .detail-modal-img {
        height: 220px;
    }

    .detail-modal-body {
        padding: 24px;
    }

    .detail-modal-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .detail-modal-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pg-card-body {
        padding: 20px;
    }

    .pg-card-img {
        height: 220px;
    }

    .pg-card-highlights {
        gap: 8px;
    }

    .detail-modal-title {
        font-size: 1.4rem;
    }

    .detail-modal-price-amount {
        font-size: 1.6rem;
    }

    .page-cta-content h2 {
        font-size: 1.4rem;
    }
}
