/* BlogV2 - Alternative Blog Page Styles */
/* Brand: #3d1a6f (purple), #170a29 (dark), #fdb913 (yellow), #ed174c (red), #7d1d61 (medium purple) */

/* ── Hero ── */
.wv2-hero-simple {
    background: linear-gradient(135deg, #3d1a6f 0%, #170a29 100%);
    color: #fff;
    padding: 7rem 0 4rem;
    text-align: center;
}
.wv2-page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1rem;
}
.wv2-accent {
    color: #fdb913;
}
.wv2-page-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ── Brand Dots ── */
.bv2-heading-dots {
    display: flex;
    gap: 8px;
    margin: 1rem 0 1.5rem;
}
.bv2-heading-dots-center {
    justify-content: center;
}
.bv2-heading-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.bv2-hdot-y { background: #fdb913; }
.bv2-hdot-r { background: #ed174c; }
.bv2-hdot-p { background: #3d1a6f; }

/* ── Blog Section ── */
.bv2-blog-section {
    padding: 4rem 0;
    background: #f8f7fc;
}
.bv2-blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.bv2-blog-card-link:hover {
    text-decoration: none;
    color: inherit;
}
.bv2-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ede8f5;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bv2-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(61,26,111,0.15);
}
.bv2-blog-img {
    overflow: hidden;
    height: 220px;
    background: #3d1a6f;
}
.bv2-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.bv2-blog-card:hover .bv2-blog-img img {
    transform: scale(1.05);
}
.bv2-blog-body {
    padding: 1.25rem;
}
.bv2-blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: #888;
}
.bv2-blog-meta i {
    margin-right: 0.3rem;
    color: #fdb913;
}
.bv2-blog-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #170a29;
    margin: 0;
    line-height: 1.4;
}

/* ── CTA (reuses HomeV2 styles) ── */
.hv2-cta {
    background: #fdb913;
    color: #170a29;
    padding: 4rem 0;
    text-align: center;
}
.hv2-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.hv2-cta p {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 1.5rem;
}
.hv2-btn-purple {
    background: #3d1a6f;
    color: #fff;
    border: 2px solid #3d1a6f;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
}
.hv2-btn-purple:hover {
    background: #170a29;
    border-color: #170a29;
    color: #fff;
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .wv2-page-title { font-size: 2.25rem; }
    .bv2-blog-section { padding: 3rem 0; }
}
@media (max-width: 575px) {
    .wv2-hero-simple { padding: 5rem 0 3rem; }
    .wv2-page-title { font-size: 1.85rem; }
    .bv2-blog-img { height: 180px; }
    .bv2-blog-meta { flex-direction: column; gap: 0.25rem; }
}
