/* VANNE TRAVEL - BLOG */

.vt-blog {
    background: #FCFBF8;
    color: #17232B;
    min-height: 65vh;
}

.vt-blog-container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.vt-blog-hero {
    padding: 85px 0 90px;
    background: linear-gradient(
        115deg,
        #DDF3FF 0%,
        #F8FAFF 40%,
        #FFE3EE 75%,
        #EDE5FF 100%
    );
}

.vt-blog-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #486477;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vt-blog-hero h1 {
    max-width: 800px;
    margin: 0 0 20px;
    color: #17232B;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.vt-blog-hero p {
    max-width: 640px;
    margin: 0;
    color: #495660;
    font-size: 18px;
    line-height: 1.7;
}

.vt-blog-content {
    padding-top: 75px;
    padding-bottom: 100px;
}

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

.vt-blog-card {
    overflow: hidden;
    border: 1px solid #E8ECEF;
    border-radius: 22px;
    background: #FFFFFF;
    transition: transform .2s ease, box-shadow .2s ease;
}

.vt-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(23,35,43,.08);
}

.vt-blog-card-image {
    display: block;
    overflow: hidden;
}

.vt-blog-card-image img,
.vt-blog-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.vt-blog-placeholder {
    display: flex;
    align-items: flex-end;
    padding: 25px;
    background: linear-gradient(135deg,#DDF3FF,#EDE5FF);
    color: #486477;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.vt-blog-card-body {
    padding: 28px;
}

.vt-blog-category {
    color: #657B89;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vt-blog-card h2 {
    margin: 12px 0;
    font-size: 24px;
    line-height: 1.3;
}

.vt-blog-card h2 a {
    color: #17232B;
    text-decoration: none;
}

.vt-blog-card-body p {
    color: #65717A;
    font-size: 15px;
    line-height: 1.7;
}

.vt-blog-read-more {
    display: inline-block;
    margin-top: 12px;
    color: #315D77;
    font-weight: 700;
    text-decoration: none;
}

.vt-blog-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 75px 45px;
    border: 1px solid #E8ECEF;
    border-radius: 28px;
    background: #FFFFFF;
    text-align: center;
}

.vt-blog-empty h2 {
    margin: 0 0 20px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
}

.vt-blog-empty p {
    margin-bottom: 28px;
    color: #65717A;
    line-height: 1.7;
}

.vt-blog-pagination {
    margin-top: 55px;
    text-align: center;
}

@media (max-width: 1024px) {
    .vt-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .vt-blog-container {
        width: calc(100% - 32px);
    }

    .vt-blog-hero {
        padding: 55px 0 65px;
    }

    .vt-blog-content {
        padding-top: 45px;
        padding-bottom: 65px;
    }

    .vt-blog-grid {
        grid-template-columns: 1fr;
    }

    .vt-blog-empty {
        padding: 45px 22px;
    }
}

/* VANNE SINGLE ARTICLE */

.vt-article {
    background: #FCFBF8;
    color: #17232B;
    padding-bottom: 90px;
}

.vt-article-container {
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
}

.vt-article-header {
    padding: 65px 0 75px;
    background: linear-gradient(
        115deg,
        #DDF3FF,
        #FFFFFF 45%,
        #FFE3EE 80%,
        #EDE5FF
    );
}

.vt-article-back {
    display: inline-block;
    margin-bottom: 35px;
    color: #315D77;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.vt-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: #65717A;
    font-size: 13px;
}

.vt-article-header h1 {
    max-width: 950px;
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.vt-article-intro {
    max-width: 760px;
    margin: 25px 0 0;
    color: #495660;
    font-size: 19px;
    line-height: 1.7;
}

.vt-article-image {
    margin-top: 45px;
    margin-bottom: 55px;
}

.vt-article-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 22px;
}

.vt-article-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.85;
}

.vt-article-content h2,
.vt-article-content h3 {
    margin: 40px 0 18px;
    color: #17232B;
    line-height: 1.3;
}

.vt-article-content p {
    margin-bottom: 24px;
}

.vt-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.vt-article-content a {
    color: #315D77;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .vt-article-header {
        padding: 45px 0 55px;
    }

    .vt-article-container {
        width: calc(100% - 32px);
    }

    .vt-article-content {
        font-size: 16px;
    }

    .vt-article-image img {
        border-radius: 14px;
    }
}
