/* ================= Blog Hero ================= */
.blog-hero {
    height: 40vh;
    min-height: 280px;
    background: linear-gradient(135deg, #e76f51 0%, #f4a261 50%, #e9c46a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.blog-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 20px;
}

.blog-hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ================= Blog Listing Grid ================= */
.blog-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-section .section-title {
    text-align: center;
    font-size: 2.3rem;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 15px;
}

.blog-section .section-description {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-card.featured .blog-card-image {
    height: 100%;
    min-height: 320px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e76f51, #f4a261);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(231, 111, 81, 0.35);
}

.blog-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card.featured .blog-card-content {
    justify-content: center;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}

.blog-meta i {
    color: #e76f51;
    margin-right: 4px;
}

.blog-card-content h2 {
    font-size: 1.35rem;
    color: #2c3e50;
    margin: 0 0 12px 0;
    font-weight: 700;
    line-height: 1.35;
}

.blog-card.featured .blog-card-content h2 {
    font-size: 1.9rem;
}

.blog-card-content p {
    color: #666;
    line-height: 1.65;
    font-size: 0.98rem;
    margin: 0 0 20px 0;
    flex: 1;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: linear-gradient(135deg, #e76f51, #f4a261);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 111, 81, 0.35);
}

@media (max-width: 900px) {
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    .blog-card.featured .blog-card-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .blog-hero h1 { font-size: 2rem; }
    .blog-hero p { font-size: 1rem; }
    .blog-section { padding: 40px 0; }
    .blog-section .section-title { font-size: 1.8rem; }
    .blog-card.featured .blog-card-content h2 { font-size: 1.5rem; }
}

/* ================= Blog Article Page ================= */
.article-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 60px 20px 50px;
    text-align: center;
}

.article-hero .article-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e76f51, #f4a261);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.article-hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    max-width: 850px;
    margin: 0 auto 20px;
    line-height: 1.3;
}

.article-hero .article-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 25px;
}

.article-meta-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.article-meta-bar i {
    color: #f4a261;
    margin-right: 6px;
}

.article-cover {
    max-width: 950px;
    margin: -40px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.article-cover img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.article-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 20px 30px;
}

.article-toc {
    background: #f8f9fa;
    border-left: 5px solid #e76f51;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 45px;
}

.article-toc h2 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.article-toc ul {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    -webkit-columns: 2;
}

.article-toc li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.article-toc a {
    color: #e76f51;
    text-decoration: none;
}

.article-toc a:hover {
    text-decoration: underline;
}

.article-body h2 {
    font-size: 1.9rem;
    color: #2c3e50;
    margin: 45px 0 18px;
    font-weight: 700;
    scroll-margin-top: 100px;
}

.article-body h3 {
    font-size: 1.35rem;
    color: #2c3e50;
    margin: 30px 0 14px;
    font-weight: 700;
}

.article-body p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 20px;
}

.article-body ul.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.article-body ul.check-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 1.02rem;
    color: #444;
    line-height: 1.6;
}

.article-body ul.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #28a745;
    font-weight: bold;
}

.article-callout {
    background: linear-gradient(135deg, #fff4ec, #fef1e6);
    border: 1px solid #f4a261;
    border-radius: 14px;
    padding: 25px 28px;
    margin: 30px 0;
}

.article-callout h3 {
    margin-top: 0;
    color: #e76f51;
    font-size: 1.15rem;
}

.article-callout p {
    margin-bottom: 0;
    color: #5a4636;
}

/* Internal linking tour cards */
.article-tour-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 25px 0 35px;
}

.article-tour-links a {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px 20px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.98rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.article-tour-links a:hover {
    border-color: #e76f51;
    color: #e76f51;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(231, 111, 81, 0.18);
}

.article-tour-links a span {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
    margin-top: 4px;
}

/* Pricing table reuse */
.article-body .table-container {
    overflow-x: auto;
    margin: 25px 0 35px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 500px;
}

.article-body th {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-size: 0.95rem;
}

.article-body td {
    padding: 14px 15px;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 0.95rem;
}

.article-body tr:last-child td {
    border-bottom: none;
}

.article-body tr:hover {
    background: #fef3e9;
}

/* FAQ accordion (self-contained, blog pages don't load style.css) */
.article-faq {
    margin-top: 45px;
}

.article-faq .faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 18px 22px;
    border: 1px solid #eee;
}

.article-faq summary {
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    font-size: 1.05rem;
    list-style: none;
}

.article-faq summary::-webkit-details-marker {
    display: none;
}

.article-faq summary::after {
    content: '+';
    float: right;
    font-size: 1.3rem;
    color: #e76f51;
}

.article-faq details[open] summary::after {
    content: '−';
}

.article-faq .faq-content p {
    margin: 14px 0 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* Author box + CTA */
.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 40px 0;
}

.article-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.article-author h4 {
    margin: 0 0 3px;
    color: #2c3e50;
}

.article-author span {
    color: #888;
    font-size: 0.9rem;
}

.article-cta {
    background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
    color: #fff;
    padding: 45px 35px;
    border-radius: 18px;
    text-align: center;
    margin: 45px 0;
}

.article-cta h2 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 1.8rem;
}

.article-cta p {
    color: #fff;
    opacity: 0.95;
    margin-bottom: 25px;
}

.article-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.article-cta .btn-primary,
.article-cta .btn-secondary {
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-cta .btn-primary {
    background: #fff;
    color: #e76f51;
}

.article-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.article-cta .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.article-cta .btn-secondary:hover {
    background: #fff;
    color: #e76f51;
}

@media (max-width: 768px) {
    .article-hero h1 { font-size: 1.7rem; }
    .article-cover img { height: 240px; }
    .article-wrapper { padding: 40px 15px 20px; }
    .article-toc ul { columns: 1; }
    .article-body h2 { font-size: 1.5rem; }
    .article-body p { font-size: 1rem; }
    .article-cta { padding: 30px 20px; }
}
