/* ============================================
   VULCAFLEX BLOG STYLES
   Colors: Primary #E77817, Secondary #003961
   Font: Montserrat (inherited from Elementor Kit)
   ============================================ */

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

.vf-blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px 0;
}

.vf-blog-main {
    min-width: 0;
    overflow: hidden;
}

.vf-single__content-wrap {
    min-width: 0;
    overflow: hidden;
}

/* ---- Hero ---- */
.vf-blog-hero {
    background: linear-gradient(135deg, #003961 0%, #002a4a 100%);
    padding: 50px 20px;
    text-align: center;
}

.vf-blog-hero__inner {
    max-width: 700px;
    margin: 0 auto;
}

.vf-blog-hero__title {
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin: 0 0 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.vf-blog-hero__label {
    font-weight: 400;
    font-size: 24px;
    opacity: 0.7;
    display: block;
    margin-bottom: 4px;
}

.vf-blog-hero__desc {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* ---- Breadcrumb ---- */
.vf-breadcrumb {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #8C8C8C;
}

.vf-breadcrumb a {
    color: #E77817;
    text-decoration: none;
}

.vf-breadcrumb a:hover {
    text-decoration: underline;
}

.vf-breadcrumb span {
    margin: 0 6px;
}

.vf-breadcrumb__current {
    color: #8C8C8C;
    margin: 0 !important;
}

.vf-breadcrumb--light a {
    color: rgba(255, 255, 255, 0.7);
}

.vf-breadcrumb--light a:hover {
    color: #FFFFFF;
}

.vf-breadcrumb--light span,
.vf-breadcrumb--light .vf-breadcrumb__current {
    color: rgba(255, 255, 255, 0.5);
}

/* ---- Post Card ---- */
.vf-post-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.vf-post-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.vf-post-card__thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
    padding: 10px 10px 0;
}

.vf-post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.vf-post-card:hover .vf-post-card__thumb img {
    transform: scale(1.04);
}

.vf-post-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vf-post-card__cats {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.vf-post-card__cat {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #E77817;
    background: rgba(231, 120, 23, 0.08);
    padding: 3px 10px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.vf-post-card__cat:hover {
    background: #E77817;
    color: #FFFFFF !important;
}

.vf-post-card__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 10px;
    color: #003961;
}

.vf-post-card__title a {
    color: inherit;
    text-decoration: none;
}

.vf-post-card__title a:hover {
    color: #E77817;
}

.vf-post-card__excerpt {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: #8C8C8C;
    margin: 0 0 14px;
    flex: 1;
}

.vf-post-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #AAAAAA;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: auto;
}

.vf-post-card__reading {
    color: #E77817;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vf-post-card__reading svg {
    flex-shrink: 0;
}

/* Featured card */
.vf-post-card--featured {
    flex-direction: row;
    margin-bottom: 24px;
}

.vf-post-card--featured .vf-post-card__thumb {
    width: 50%;
    flex-shrink: 0;
    aspect-ratio: auto;
}

.vf-post-card--featured .vf-post-card__body {
    padding: 28px;
}

.vf-post-card--featured .vf-post-card__title {
    font-size: 24px;
}

.vf-post-card--featured .vf-post-card__excerpt {
    font-size: 15px;
}

/* ---- Wide container (blog home) ---- */
.vf-blog-container--wide {
    max-width: 1200px;
    padding: 40px 20px;
}

.vf-blog-container--wide .vf-blog-main {
    overflow: visible;
}

/* ---- Featured Carousel ---- */
.vf-featured-carousel {
    position: relative;
    margin-bottom: 32px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vf-featured-carousel__track {
    display: flex;
    transition: transform 0.5s ease;
}

.vf-featured-carousel__slide {
    flex: 0 0 100%;
    min-width: 100%;
}

/* Arrows */
.vf-featured-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #003961;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.vf-featured-arrow:hover {
    background: #E77817;
    color: #FFFFFF;
}

.vf-featured-arrow:focus,
.vf-featured-arrow:active {
    background: rgba(255, 255, 255, 0.9);
    color: #003961;
    outline: none;
}

.vf-featured-arrow:hover:focus {
    background: #E77817;
    color: #FFFFFF;
}

.vf-featured-arrow--prev { left: 16px; }
.vf-featured-arrow--next { right: 16px; }

/* Dots */
.vf-featured-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.vf-featured-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

.vf-featured-dot--active {
    background: #E77817;
    border-color: #E77817;
}

.vf-featured-dot:hover {
    border-color: #FFFFFF;
}

/* Slide content */
.vf-featured__link {
    display: block;
    position: relative;
    text-decoration: none;
    color: #FFFFFF;
}

.vf-featured__img {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.vf-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vf-featured__link:hover .vf-featured__img img {
    transform: scale(1.03);
}

.vf-featured__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 70px;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.vf-featured__cat {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #E77817;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.vf-featured__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 10px;
    color: #FFFFFF;
}

.vf-featured__excerpt {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.vf-featured__meta {
    display: flex;
    gap: 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.vf-featured__meta span {
    color: #E77817;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---- Home Search Bar ---- */
.vf-home-search {
    margin-bottom: 32px;
}

.vf-home-search__form {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 6px 6px 6px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.vf-home-search__form:focus-within {
    border-color: #E77817;
    box-shadow: 0 2px 16px rgba(231, 120, 23, 0.1);
}

.vf-home-search__icon {
    flex-shrink: 0;
    color: #AAAAAA;
    margin-right: 12px;
}

.vf-home-search__form:focus-within .vf-home-search__icon {
    color: #E77817;
}

.vf-home-search__input {
    flex: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    padding: 10px 0;
}

.vf-home-search__input::placeholder {
    color: #777777;
    font-weight: 300;
}

.vf-home-search__btn {
    flex-shrink: 0;
    background: #E77817;
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.vf-home-search__btn:hover {
    background: #d06a10;
}

@media (max-width: 767px) {
    .vf-home-search__btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .vf-home-search__input {
        font-size: 14px;
    }
}

/* ---- Blog Grid ---- */
.vf-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.vf-blog-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ---- Pagination ---- */
.vf-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    padding: 20px 0;
    font-family: "Montserrat", sans-serif;
}

.vf-pagination a,
.vf-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.vf-pagination a {
    color: #003961;
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
}

.vf-pagination a:hover {
    background: #E77817;
    color: #FFFFFF;
    border-color: #E77817;
}

.vf-pagination .current {
    background: #E77817;
    color: #FFFFFF;
    border: 1px solid #E77817;
}

.vf-pagination .dots {
    border: none;
    background: none;
    color: #8C8C8C;
}

.vf-pagination .prev,
.vf-pagination .next {
    border: none;
    background: none;
    color: #003961;
}

.vf-pagination .prev:hover,
.vf-pagination .next:hover {
    color: #E77817;
    background: none;
}

/* ---- Empty State ---- */
.vf-blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: #8C8C8C;
}

.vf-blog-empty h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #003961;
    margin: 16px 0 8px;
}

.vf-blog-empty p {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

/* ---- Search Form (hero) ---- */
.vf-search-form {
    display: flex;
    max-width: 500px;
    margin: 20px auto 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.vf-search-form__input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    outline: none;
}

.vf-search-form__btn {
    background: #E77817;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.vf-search-form__btn:hover {
    background: #d06a10;
}

/* ---- Single Post ---- */
.vf-single__header {
    padding: 30px 0 0;
}

.vf-single__cats {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.vf-single__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.25;
    color: #003961;
    margin: 0 0 18px;
}

.vf-single__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.vf-single__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vf-single__author img {
    border-radius: 50%;
}

.vf-single__author-name {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #003961;
}

.vf-single__author time {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #8C8C8C;
}

.vf-single__reading {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #E77817;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vf-single__reading svg {
    flex-shrink: 0;
}

.vf-single__featured {
    margin: 30px 0;
}

.vf-single__featured .vf-blog-container {
    position: relative;
}

/* Share overlay on featured image */
.vf-single__share--overlay {
    position: absolute;
    bottom: 28px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: none;
    border: none;
    margin: 0;
    z-index: 2;
    filter: drop-shadow(0 0 18px rgba(0,0,0,0.45)) drop-shadow(0 0 40px rgba(0,0,0,0.25));
}

.vf-single__share--overlay .vf-single__share-btn {
    background: rgba(0,0,0,0.35);
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.vf-single__share--overlay .vf-single__share-btn svg {
    fill: #FFFFFF;
}

.vf-single__share--overlay .vf-single__share-btn:hover {
    background: #E77817;
    color: #FFFFFF !important;
}

@media (max-width: 767px) {
    .vf-single__share--overlay {
        bottom: 16px;
        right: 20px;
        gap: 8px;
    }
    .vf-single__share--overlay .vf-single__share-btn {
        width: 34px;
        height: 34px;
    }

    .vf-single__meta-right {
        justify-content: flex-start;
        gap: 12px;
    }

    .vf-single__meta-tags {
        font-size: 12px;
    }
}

.vf-single__featured-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Single Content */
.vf-single__content {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.vf-single__content h2 {
    font-weight: 700;
    color: #003961;
    font-size: 26px;
    margin: 36px 0 14px;
}

.vf-single__content h3 {
    font-weight: 600;
    color: #003961;
    font-size: 21px;
    margin: 30px 0 12px;
}

.vf-single__content h4 {
    font-weight: 600;
    color: #003961;
    font-size: 18px;
    margin: 24px 0 10px;
}

.vf-single__content p {
    margin: 0 0 18px;
}

.vf-single__content a {
    color: #E77817;
    text-decoration: underline;
}

.vf-single__content a:hover {
    color: #d06a10;
}

.vf-single__content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 8px 0;
}

.vf-single__content blockquote {
    border-left: 4px solid #E77817;
    margin: 24px 0;
    padding: 16px 24px;
    background: #fdf6ef;
    font-style: italic;
    color: #555;
    border-radius: 0 6px 6px 0;
}

.vf-single__content ul,
.vf-single__content ol {
    margin: 0 0 18px 20px;
}

.vf-single__content li {
    margin-bottom: 6px;
}

.vf-single__content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 14px;
    margin: 20px 0;
}

/* Tags */
.vf-single__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #003961;
}

.vf-single__meta-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vf-single__meta-tags {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #E77817;
}

.vf-single__meta-tags svg {
    flex-shrink: 0;
    stroke: #E77817;
}

.vf-single__meta-tag-link {
    color: #E77817;
    text-decoration: none;
    transition: color 0.2s;
}

.vf-single__meta-tag-link:hover {
    color: #003961;
    text-decoration: underline;
}

/* Share */
.vf-single__share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #003961;
}

.vf-single__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #003961;
    text-decoration: none;
    transition: all 0.2s;
}

.vf-single__share-btn:hover {
    background: #E77817;
    color: #FFFFFF !important;
}

.vf-single__share-btn:hover svg {
    fill: #FFFFFF;
}

/* Related Posts */
.vf-related {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.vf-related__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vf-related__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #003961;
    margin: 0;
}

.vf-rp-slide--post .vf-rp-slide__thumb {
    padding-top: 56%; /* 16:9 ratio */
}

.vf-rp-slide--post .vf-rp-slide__info {
    padding: 10px 12px;
}

.vf-rp-slide--post .vf-rp-slide__name {
    font-size: 12px;
    margin: 0 0 2px;
    line-height: 1.3;
}

.vf-rp-slide--post .vf-rp-slide__linha {
    font-size: 10px;
}

.vf-rp-slide--post .vf-post-card__cat {
    font-size: 9px;
    padding: 2px 6px;
    margin-bottom: 4px !important;
}

.vf-rp-slide--post .vf-rp-slide__name a {
    color: #003961;
    text-decoration: none;
}

.vf-rp-slide--post:hover .vf-rp-slide__name a {
    color: #E77817;
}

/* ---- Sidebar ---- */
.vf-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    z-index: 1;
}

.vf-sidebar__widget {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.vf-sidebar__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #003961;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E77817;
}

/* Sidebar Search */
.vf-sidebar__search {
    display: flex;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: none;
}

.vf-sidebar__search-input:focus {
    outline: none;
    box-shadow: none;
}

.vf-sidebar__search-input {
    flex: 1;
    padding: 10px 12px;
    border: none !important;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
}

.vf-sidebar__search-btn {
    background: #E77817;
    color: #FFFFFF;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

.vf-sidebar__search-btn:hover {
    background: #d06a10;
}

/* Sidebar Categories */
.vf-sidebar__cats {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vf-sidebar__cats li {
    margin-bottom: 2px;
}

.vf-sidebar__cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.vf-sidebar__cat:hover,
.vf-sidebar__cat--active {
    background: rgba(231, 120, 23, 0.08);
    color: #E77817;
}

.vf-sidebar__count {
    background: #f0f0f0;
    color: #8C8C8C;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
}

.vf-sidebar__cat:hover .vf-sidebar__count,
.vf-sidebar__cat--active .vf-sidebar__count {
    background: #E77817;
    color: #FFFFFF;
}

/* Sidebar Recent Posts */
.vf-sidebar__recent {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vf-sidebar__recent-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.vf-sidebar__recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vf-sidebar__recent-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.vf-sidebar__recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vf-sidebar__recent-item:hover .vf-sidebar__recent-thumb img {
    transform: scale(1.08);
}

.vf-sidebar__recent-title {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #003961;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 4px;
}

.vf-sidebar__recent-title:hover {
    color: #E77817;
}

.vf-sidebar__recent-date {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #AAAAAA;
}

/* Sidebar Tags */
.vf-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vf-sidebar__tag {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.vf-sidebar__tags a.vf-sidebar__tag:hover,
.vf-sidebar__tags a.vf-sidebar__tag:focus {
    background: #E77817;
    color: #FFFFFF !important;
    border-color: #E77817;
}

/* ---- Related Products Carousel ---- */
.vf-related-products {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.vf-related-products__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vf-related-products__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #003961;
    margin: 0;
}

.vf-rp-arrows {
    display: flex;
    gap: 8px;
}

.vf-rp-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    border: none;
    background: #E77817;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s;
}

.vf-rp-arrow:hover:not(:disabled) {
    background: #d06a10;
    color: #FFFFFF;
}

.vf-rp-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.vf-rp-track-wrapper {
    overflow: hidden;
    position: relative;
}

.vf-rp-track {
    display: flex;
    gap: 16px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.vf-rp-slide {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    flex: 0 0 calc((100% - 32px) / 3);
    transition: box-shadow 0.25s, transform 0.25s;
}

@media (max-width: 767px) {
    .vf-rp-slide {
        flex: 0 0 100%;
    }
}

.vf-rp-slide:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.vf-rp-slide__thumb {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 ratio */
    overflow: hidden;
}

.vf-rp-slide__thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.vf-rp-slide:hover .vf-rp-slide__thumb img {
    transform: scale(1.04);
}

.vf-rp-slide__info {
    padding: 14px;
}

.vf-rp-slide__name {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #003961;
    margin: 0 0 4px;
    line-height: 1.3;
}

.vf-rp-slide:hover .vf-rp-slide__name {
    color: #E77817;
}

.vf-rp-slide__linha {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #8C8C8C;
}

/* ---- Comments ---- */
.vf-single .comments-area {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.vf-single .comments-area .title-comments,
.vf-single .comments-area .comment-reply-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #003961;
    margin: 0 0 24px;
}

.vf-single .comments-area .comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vf-single .comments-area .comment-list .comment {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.vf-single .comments-area .comment-list .comment:last-child {
    border-bottom: none;
}

.vf-single .comments-area .comment-author {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #003961;
}

.vf-single .comments-area .comment-author img {
    border-radius: 50%;
    margin-right: 10px;
}

.vf-single .comments-area .comment-metadata {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: #AAAAAA;
    margin-bottom: 8px;
}

.vf-single .comments-area .comment-metadata a {
    color: #AAAAAA;
    text-decoration: none;
}

.vf-single .comments-area .comment-metadata a:hover {
    color: #E77817;
}

.vf-single .comments-area .comment-content {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #444;
}

.vf-single .comments-area .reply a {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #E77817;
    text-decoration: none;
}

.vf-single .comments-area .reply a:hover {
    color: #d06a10;
}

.vf-single .comment-form label {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #003961;
    display: block;
    margin-bottom: 6px;
}

.vf-single .comment-form input[type="text"],
.vf-single .comment-form input[type="email"],
.vf-single .comment-form input[type="url"],
.vf-single .comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s;
}

.vf-single .comment-form input[type="text"]:focus,
.vf-single .comment-form input[type="email"]:focus,
.vf-single .comment-form input[type="url"]:focus,
.vf-single .comment-form textarea:focus {
    border-color: #E77817 !important;
}

.vf-single .comment-form input[type="submit"],
.vf-single .form-submit input[type="submit"] {
    background: #E77817 !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 12px 28px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.vf-single .comment-form input[type="submit"]:hover,
.vf-single .form-submit input[type="submit"]:hover {
    background: #d06a10 !important;
}

.vf-single .comment-form a,
.vf-single .comments-area a,
.vf-single a {
    color: #E77817;
}

.vf-single .comment-form a:hover,
.vf-single .comments-area a:hover,
.vf-single a:hover {
    color: #d06a10;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .vf-blog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vf-sidebar {
        position: static;
    }

    .vf-post-card--featured {
        flex-direction: column;
    }

    .vf-post-card--featured .vf-post-card__thumb {
        width: 100%;
        aspect-ratio: 16/10;
    }

    .vf-post-card--featured .vf-post-card__title {
        font-size: 20px;
    }

    .vf-single__title {
        font-size: 26px;
    }

    .vf-blog-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .vf-featured__img {
        height: 300px;
    }

    .vf-featured__title {
        font-size: 24px;
    }

    .vf-featured-arrow {
        width: 38px;
        height: 38px;
    }

    .vf-featured-arrow svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 767px) {
    .vf-blog-grid,
    .vf-blog-grid--3 {
        grid-template-columns: 1fr;
    }

    .vf-featured__img {
        height: 220px;
    }

    .vf-featured__overlay {
        padding: 24px 20px;
    }

    .vf-featured__title {
        font-size: 20px;
    }

    .vf-featured__excerpt {
        display: none;
    }

    .vf-featured-arrow {
        width: 34px;
        height: 34px;
    }

    .vf-featured-arrow--prev { left: 10px; }
    .vf-featured-arrow--next { right: 10px; }

    .vf-blog-hero {
        padding: 35px 16px;
    }

    .vf-blog-hero__title {
        font-size: 26px;
    }

    .vf-blog-layout {
        padding: 24px 0;
    }

    .vf-single__title {
        font-size: 22px;
    }

    .vf-single__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .vf-single__content {
        font-size: 15px;
    }

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

@media (max-width: 480px) {
    .vf-blog-container {
        padding: 0 14px;
    }

    .vf-blog-hero__title {
        font-size: 22px;
    }

    .vf-post-card__body {
        padding: 16px;
    }

    .vf-sidebar__widget {
        padding: 18px;
    }
}
