/* Post page base */
body {
    line-height: 1.7;
}

article {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.article-header {
    margin-bottom: 3rem;
}

.article-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--rose-pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.article-meta {
    display: flex;
    gap: 1rem;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.85;
}

.article-content h2 {
    font-size: 1.85rem;
    margin: 3rem 0 1.25rem;
    color: var(--charcoal);
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.75rem;
    color: var(--charcoal);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
    margin: 1.25rem 0 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content a {
    color: var(--rose-pink);
}

/* Table of Contents */
.toc {
    background: white;
    border: 1.5px solid #eee;
    border-left: 4px solid var(--rose-pink);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0 2.5rem;
}

.toc-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--rose-pink);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.toc ol {
    margin: 0;
    padding-left: 1.5rem;
}

.toc li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.toc a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
}

.toc a:hover {
    color: var(--rose-pink);
}

/* Step boxes */
.step-box {
    background: white;
    border: 1.5px solid #eee;
    border-left: 4px solid var(--rose-pink);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
}

.step-number {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rose-pink);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-box h3 {
    margin: 0 0 1rem;
    font-size: 1.3rem;
}

.step-box p, .step-box ul, .step-box ol {
    margin-bottom: 0.75rem;
}

/* Highlight / tip box */
.highlight-box {
    background: linear-gradient(135deg, #FFF5F7, #FFF9E6);
    padding: 1.75rem 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--rose-pink);
    margin: 2rem 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--rose-pink);
    font-size: 1.2rem;
}

.highlight-box p, .highlight-box ul {
    margin-bottom: 0.5rem;
}

/* Warning box */
.warning-box {
    background: #FFFBEB;
    border-left: 4px solid var(--golden-yellow);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.warning-box h3 {
    margin-top: 0;
    color: #B45309;
    font-size: 1.1rem;
}

/* Tip box (green-themed callout, distinct from .highlight-box/.warning-box) */
.tip-box {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-left: 4px solid #43A047;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.tip-box h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #2E7D32;
}

/* Stranger box (dark themed callout) */
.stranger-box {
    background: linear-gradient(135deg, #0A0A0A, #1a1a1a);
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #E50914;
}

.stranger-box h3 {
    color: #E50914;
    margin-bottom: 1rem;
}

.stranger-box p {
    color: #ddd;
}

/* Verdict callout */
.verdict-callout {
    background: linear-gradient(135deg, #FFF5F7, #FFF9E6);
    border-left: 4px solid var(--rose-pink);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Day-by-day itinerary headers */
.day-header {
    background: linear-gradient(135deg, var(--rose-pink), var(--sunset-orange));
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    margin: 3rem 0 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Quick facts table */
.quick-facts {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.quick-facts-title {
    background: linear-gradient(135deg, var(--rose-pink), var(--sunset-orange));
    color: white;
    padding: 0.85rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.quick-facts table {
    width: 100%;
    border-collapse: collapse;
}

.quick-facts td {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.quick-facts td:first-child {
    font-weight: 600;
    color: #666;
    width: 42%;
    white-space: nowrap;
}

.quick-facts tr:last-child td {
    border-bottom: none;
}

/* Rating rows */
.rating {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.rating-item {
    flex: 1;
    min-width: 150px;
}

.rating-label {
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.rating-stars {
    color: var(--golden-yellow);
    font-size: 1.3rem;
}

/* Menu grid / cards (e.g. Michelin-starred restaurant write-ups) */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.menu-card h4 {
    font-size: 1.3rem;
    color: #C41E3A;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.menu-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Restaurant grid / cards (e.g. resort dining venue write-ups) */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.restaurant-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.restaurant-card h4 {
    font-size: 1.3rem;
    color: var(--rose-pink);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.restaurant-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

.michelin-badge {
    display: inline-block;
    background: #C41E3A;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 1rem 0;
}

/* Numbered steps list */
.steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.steps li {
    counter-increment: step-counter;
    padding: 1.25rem 1.25rem 1.25rem 4rem;
    position: relative;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--rose-pink), var(--sunset-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.steps li strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Agent / contact card (e.g. visa agent details) */
.agent-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--rose-pink);
}

.agent-card h3 {
    color: var(--rose-pink);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.agent-detail {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.agent-detail .label {
    font-weight: 600;
    min-width: 100px;
    color: #555;
    flex-shrink: 0;
}

/* Fee / pricing table */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.07);
}

.fee-table thead {
    background: linear-gradient(135deg, var(--rose-pink), var(--sunset-orange));
    color: white;
}

.fee-table thead th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.fee-table tbody tr {
    background: white;
    transition: background 0.2s;
}

.fee-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.fee-table tbody td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.fee-table tfoot td {
    padding: 0.75rem 1.25rem;
    background: #f5f5f5;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Useful links grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.link-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-decoration: none;
    color: var(--charcoal);
    border: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.link-card .link-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.link-card .link-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--rose-pink);
}

.link-card .link-desc {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.25rem;
}

/* Guide images */
.guide-image {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: block;
    margin: 1.5rem auto;
}

/* Featured media (top-of-article hero image / embed wrapper)
   Consolidates: .featured-embed, .featured-image, .reel-embed,
   .article-image, .hero-image, .article-img */
.featured-media {
    margin: 2rem 0 3rem;
    text-align: center;
}

.featured-media img,
.featured-media.featured-image-style {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: block;
}

.featured-media .instagram-media,
.instagram-media {
    margin: 0 auto !important;
    min-width: 320px !important;
    max-width: 540px !important;
    width: 100% !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Full-width article image with shadow (was .article-img / .hero-image / .article-image) */
.article-img {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: block;
}

/* Image grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin: 0;
}

/* Quote block */
.quote-block {
    background: #F5F5F5;
    border-left: 4px solid var(--sunset-orange);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.05rem;
    color: #444;
}

.image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.image-row img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Use-case checklist */
.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.checklist li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* FAQ section */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid #eee;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #555;
    line-height: 1.7;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--rose-pink), var(--sunset-orange));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
}

.cta-box h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .cta-button {
    padding: 1rem 2.5rem;
}

/* Related posts */
.related-posts {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.related-posts h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: var(--charcoal);
}

.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.related-links li:last-child {
    border-bottom: none;
}

.related-links a {
    color: var(--rose-pink);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.related-links a:hover {
    opacity: 0.7;
}

/* Share Section */
.share-section {
    max-width: 700px;
    margin: 3rem auto 2rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
    text-align: center;
}

.share-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.x-btn   { background: #000000; }
.fb-btn  { background: #1877F2; font-family: Georgia, serif; }
.li-btn  { background: #0A66C2; font-family: Arial, sans-serif; }
.wa-btn  { background: #25D366; }
.pin-btn { background: #E60023; }

@media (max-width: 768px) {
    article {
        margin: 2rem auto;
        padding: 0 1.25rem;
    }

    .image-row {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .step-box {
        padding: 1.25rem 1.5rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-grid {
        grid-template-columns: 1fr;
    }

    .rating {
        flex-direction: column;
    }

    .steps li {
        padding-left: 3.5rem;
    }

    .fee-table {
        font-size: 0.9rem;
    }

    .fee-table thead th,
    .fee-table tbody td {
        padding: 0.75rem 0.75rem;
    }

    .agent-detail {
        flex-direction: column;
        gap: 0.2rem;
    }
}
