/* ==========================================================================
   Single Post Styles
   ========================================================================== */

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
   .vp-single-breadcrumb {
    background: var(--Secondary-2);
}

/* ==========================================================================
   Section 1: Hero
   ========================================================================== */
.vp-single-hero {
    background: var(--Secondary-2);
    padding-bottom: 250px;
    position: relative;
}

/* Meta: Category & Date */
.vp-single-meta {
    display: flex;
    justify-content: center;
    gap: var(--16);
    align-items: center;
    margin-bottom: var(--16);
}

.vp-single-category {
    border-radius: var(--12);
    border: 1px solid var(--Primary-primary);
    background: var(--Primary-3);
    color: var(--Primary-primary);
    font-size: var(--16);
    font-weight: 700;
    line-height: 140%;
    padding: 12px var(--16);
    text-decoration: none;
    transition: all 0.3s ease;
}

.vp-single-category:hover {
    background: var(--Primary-primary);
    color: var(--Neutral-100);
}

.vp-single-date {
    color: var(--Neutral-800);
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
}

/* Header: Title & Excerpt */
.vp-single-header {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

.vp-single-header .vp-title-hero {
    margin-bottom: 32px;
}

.vp-single-header .vp-title-hero svg {
    width: 100%;
    max-width: 608px;
}

.vp-single-excerpt {
    color: var(--Neutral-600);
    font-size: 18px;
    font-weight: 400;
    line-height: 148%;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Image - Overlapping */
.vp-single-featured-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 100%;
    max-width: 1232px;
    padding: 0 16px;
}

.vp-single-featured-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--24);
    display: block;
}

/* ==========================================================================
   Section 2: Content & Sidebar
   ========================================================================== */
.vp-single-content-section {
    padding-top: 300px;
    padding-bottom: 100px;
    background: var(--Neutral-100);
}

.vp-single-layout {
    display: flex;
    gap: 60px;
}

/* Main Content */
.vp-single-content {
    flex: 1;
    max-width: 700px;
}

/* ==========================================================================
   Single Post Content Body Styles
   ========================================================================== */

/* Content Body - Base Styles */
.vp-single-content {
    color: var(--Neutral-700);
    font-size: 18px;
    font-weight: 400;
    line-height: 148%;
}

/* Paragraphs */
.vp-single-content p {
    margin-bottom: var(--16);
    color: var(--Neutral-700);
    font-size: 18px;
    font-weight: 400;
    line-height: 148%;
}

/* Headings */
.vp-single-content h2,
.vp-single-content h3,
.vp-single-content h4,
.vp-single-content h5,
.vp-single-content h6 {
    color: var(--Neutral-800);
    font-weight: 600;
    line-height: 1;
    margin-top: 40px;
    margin-bottom: var(--16);
}

.vp-single-content h2 {
    font-size: 46px;
}

.vp-single-content h2:first-child {
    margin-top: 0;
    line-height: 1;
}

.vp-single-content h3 {
    font-size: 24px;
}

.vp-single-content h4 {
    font-size: 22px;
}

.vp-single-content h5 {
    font-size: 20px;
}

.vp-single-content h6 {
    font-size: 18px;
}

/* Unordered List - Dots (default) */
.vp-single-content ul {
    color: var(--Neutral-700);
    font-size: 18px;
    font-weight: 400;
    line-height: 148%;
    margin-top: var(--16);
    margin-bottom: var(--16);
    list-style-type: disc;
    margin-left: 34px;
    padding: 0;
}

.vp-single-content ul li {
    margin-bottom: 6px;
    padding-left: 8px;
}

.vp-single-content ul li::marker {
    color: var(--Primary-primary);
    font-size: var(--24);
}

/* Ordered List - Numbers */
.vp-single-content ol {
    list-style-type: decimal;
    color: var(--Neutral-700);
    font-size: 18px;
    font-weight: 400;
    line-height: 148%;
    margin-top: var(--16);
    margin-bottom: var(--16);
    margin-left: 25px;
    padding: 0;
}

.vp-single-content ol li {
    margin-bottom: 6px;
    padding-left: 8px;
}

.vp-single-content ol li::marker {
    color: var(--Primary-primary);
    font-weight: 600;
}

/* Checkmark List - Add class "vp-ul-checked" in editor if needed */
.vp-single-content ul.vp-ul-checked {
    list-style: none;
    margin-left: 0;
    padding-top: var(--16);
}

.vp-single-content ul.vp-ul-checked li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 6px;
}

.vp-single-content ul.vp-ul-checked li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M16.6667 5L7.50001 14.1667L3.33334 10' stroke='%238C58DA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Links */
.vp-single-content a:not(.vp-btn-simple-one-large):not(.vp-btn-simple-one-small) {
    color: var(--Primary-primary);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.vp-single-content a:not(.vp-btn-simple-one-large):not(.vp-btn-simple-one-small):hover {
    color: var(--Secondary-1);
}

/* Strong/Bold */
.vp-single-content strong,
.vp-single-content b {
    font-weight: 600;
    color: var(--Neutral-800);
}

/* Italic/Emphasis */
.vp-single-content em,
.vp-single-content i {
    font-style: italic;
}

/* Blockquote */
.vp-single-content blockquote {
    border-left: 4px solid var(--Primary-primary);
    padding-left: 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--Neutral-600);
}

.vp-single-content blockquote p {
    margin-bottom: 0;
}

/* Images in content */
.vp-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--16);
    margin: 24px 0;
}

/* Figures/Captions */
.vp-single-content figure {
    margin: 24px 0;
}

.vp-single-content figcaption {
    font-size: 14px;
    color: var(--Neutral-600);
    text-align: center;
    margin-top: 8px;
}

/* Tables */
.vp-single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.vp-single-content th,
.vp-single-content td {
    padding: 12px 16px;
    border: 1px solid var(--Neutral-300);
    text-align: left;
}

.vp-single-content th {
    background: var(--Neutral-200);
    font-weight: 600;
    color: var(--Neutral-800);
}

/* Horizontal Rule */
.vp-single-content hr {
    border: none;
    border-top: 1px solid var(--Neutral-300);
    margin: 40px 0;
}

/* Code */
.vp-single-content code {
    font-family: monospace;
    background: var(--Neutral-200);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 16px;
}

.vp-single-content pre {
    background: var(--Neutral-200);
    padding: 16px;
    border-radius: var(--16);
    overflow-x: auto;
    margin: 24px 0;
}

.vp-single-content pre code {
    background: none;
    padding: 0;
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */
@media (max-width: 768px) {
    .vp-single-content h2 {
        font-size: 36px;
    }

    .vp-single-content h3 {
        font-size: 20px;
    }

    .vp-single-content h4 {
        font-size: 18px;
    }

    .vp-single-content p,
    .vp-single-content ul,
    .vp-single-content ol {
        font-size: var(--16);
    }

    .vp-single-content ul li::marker {
        font-size: var(--20);
    }
}
/* Share Links */
.vp-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--Neutral-300);
    flex-flow: wrap;
}

.vp-share span {
    color: var(--Neutral-600);
    font-size: 18px;
    font-weight: 600;
    line-height: 128%;
    margin-right: 8px;
}

.vp-share a {
    display: flex;
    transition: opacity 0.3s ease;
}

.vp-share a:hover svg path{
    fill: var(--Secondary-1);
}

.vp-share a svg{
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */
.vp-single-sidebar {
    width: 440px;
    flex-shrink: 0;
}

/* Subscribe Form */
.vp-subscribe-form {
    border-radius: var(--24);
    border: 1px solid var(--Neutral-300);
    background: var(--Neutral-100);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.02);
    padding: 44px;
}

.vp-subscribe-form > svg {
    margin-bottom: 16px;
}

.vp-subscribe-form > p {
    color: var(--Neutral-800);
    font-size: 24px;
    font-weight: 600;
    line-height: 132%;
    margin-bottom: 16px;
}

.vp-sub-inp {
    border-radius: var(--16);
    border: 1px solid var(--Neutral-400);
    background: var(--Neutral-100);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.02);
    color: var(--Neutral-800);
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    padding: 16px 20px;
    margin-bottom: 16px;
    width: 100%;
}

.vp-sub-inp::placeholder {
    color: var(--Neutral-600);
}

.vp-subscribe-btn {
    width: 100%;
}

/* Recommended Services */
.vp-recommended-services {
    margin-top: 40px;
}

/* Sticky Recommended Services - Desktop Only */
@media (min-width: 1025px) {
    .vp-recommended-services {
        position: sticky;
        top: 60px;
        align-self: flex-start;
        height: fit-content;
    }
}

.vp-rec-H5 {
    color: var(--Neutral-800);
    font-size: 24px;
    font-weight: 500;
    line-height: 136%;
    margin-bottom: 32px;
}

.vp-service-card {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.vp-service-card-img {
    width: 160px;
    height: 130px;
    flex-shrink: 0;
}

.vp-service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--20);
}

.vp-service-card-content {
    display: flex;
    flex-direction: column;
}

.vp-service-card-title {
    color: var(--Neutral-800);
    font-size: 18px;
    font-weight: 600;
    line-height: 128%;
    margin-bottom: 8px;
}

.vp-service-card-excerpt {
    color: var(--Neutral-600);
    font-size: var(--16);
    font-weight: 400;
    line-height: 148%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 16px;
}

.vp-service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--12);
    border: 1px solid var(--Primary-primary);
    background: var(--Primary-primary);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
    color: var(--Neutral-100);
    font-size: var(--16);
    font-weight: 700;
    line-height: 140%;
    padding: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.vp-service-card-btn:hover { 
    background: var(--Secondary-1);
    border-color: var(--Secondary-1);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
}

.vp-service-card-btn svg path{
    fill: var(--Neutral-100);
}
/* ==========================================================================
   Section 3: Related Posts
   ========================================================================== */
   .vp-related-posts {
    padding: 100px 0;
    background: var(--Neutral-200);
}

.vp-related-posts .vp-title {
    max-width: 640px;
}

.vp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.vp-related-posts .vp-news {
    border-radius: var(--24);
    border: 1px solid var(--Neutral-300);
    background: var(--Neutral-100);
    padding: var(--20);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

/* Related Posts Image Container */
.vp-related-posts .vp-news > div:first-child {
    width: 100%;
}

.vp-related-posts .vp-news > div:first-child > a {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--20);
}

.vp-related-posts .vp-news img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-related-posts .vp-img-articls {
    padding: var(--12) var(--16);
    border-radius: var(--12);
    border: 1px solid var(--Primary-primary);
    background: var(--Primary-3);
    color: var(--Primary-primary);
    margin-top: -23px;
    position: relative;
    z-index: 1;
}

.vp-related-posts .vp-news h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 140%;
}

.vp-related-posts .vp-news h3 a {
    color: var(--Neutral-800);
    text-decoration: none;
}

.vp-related-posts .vp-news h3 a:hover {
    color: var(--Primary-primary);
}

.vp-related-posts .vp-r-more {
    padding-top: 20px;
    border-top: 1px solid var(--Neutral-300);
    margin-top: auto;
    width: 100%;
}

.vp-related-posts .vp-r-more p {
    color: var(--Neutral-600);
}

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */
@media (max-width: 1024px) {
    .vp-single-hero {
        padding-bottom: 200px;
    }

    .vp-single-featured-img img {
        height: 400px;
    }

    .vp-single-content-section {
        padding-top: 240px;
    }

    .vp-single-layout {
        flex-direction: column;
    }

    .vp-single-content {
        max-width: 100%;
    }

    .vp-single-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .vp-related-posts .vp-title {
        max-width: 100%;
    }

    .vp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */
@media (max-width: 768px) {
    .vp-single-breadcrumb {
        padding: 32px 16px 36px;
    }

    .vp-single-hero {
        padding-bottom: 150px;
    }

    .vp-single-header .vp-SH-display-1 {
        font-size: 32px;
    }

    .vp-single-excerpt {
        font-size: var(--16);
    }

    .vp-single-featured-img img {
        height: 280px;
        border-radius: var(--16);
    }

    .vp-single-content-section {
        padding-top: 180px;
        padding-bottom: 60px;
    }

    .vp-single-layout {
        gap: 40px;
    }

    .vp-single-content h3 {
        font-size: 20px;
    }

    .vp-single-content p,
    .vp-single-content ul,
    .vp-single-content ol {
        font-size: var(--16);
    }

    .vp-subscribe-form {
        padding: 32px;
    }

    .vp-related-posts {
        padding: var(--60) 0;
    }

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

    .vp-related-posts .vp-news {
        padding: var(--16);
    }

    .vp-related-posts .vp-btn-stroke-white-large {
        display: none;
    }

    .vp-related-posts .vp-d-none {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .vp-single-hero {
        padding-bottom: 120px;
    }

    .vp-single-meta {
        gap: 12px;
    }

    .vp-single-featured-img img {
        height: 220px;
    }

    .vp-single-content-section {
        padding-top: 140px;
    }

    .vp-service-card {
        gap: 12px;
    }

    .vp-service-card-img {
        width: 120px;
        height: 100px;
    }

    .vp-service-card-excerpt {
        -webkit-line-clamp: 1;
    }
}

/* ==========================================================================
   Service Finder Widget
   Add to single-post.css or style.css
   ========================================================================== */

   .vp-service-finder {
    border-radius: var(--24);
    border: 1px solid var(--Neutral-300);
    background: var(--Neutral-100);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.02);
    padding: 32px;
}

/* Header */
.vp-service-finder-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.vp-service-finder-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: var(--Primary-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-service-finder-icon svg {
    width: 28px;
    height: 28px;
}

.vp-service-finder-text h4 {
    color: var(--Neutral-800);
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    margin: 0 0 4px 0;
}

.vp-service-finder-text p {
    color: var(--Neutral-600);
    font-size: 14px;
    font-weight: 400;
    line-height: 148%;
    margin: 0;
}

/* Service Options */
.vp-service-finder-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vp-service-finder-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: var(--12);
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

/* Outlined Button (default) */
.vp-service-finder-btn {
    background: var(--Neutral-100);
    color: var(--Primary-primary);
    border: 1.5px solid var(--Primary-primary);
}

.vp-service-finder-btn:hover {
    background: var(--Primary-primary);
    color: var(--Neutral-100);
    box-shadow: 0 4px 12px 0 rgba(140, 88, 218, 0.25);
}

/* Primary Button (first option) */
.vp-service-finder-btn-primary {
    background: var(--Primary-primary);
    color: var(--Neutral-100);
    border: 1.5px solid var(--Primary-primary);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
}

.vp-service-finder-btn-primary:hover {
    background: var(--Secondary-1);
    border-color: var(--Secondary-1);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
}

/* Footer */
.vp-service-finder-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--Neutral-300);
}

.vp-service-finder-footer span {
    color: var(--Neutral-600);
    font-size: 14px;
    font-weight: 400;
}

.vp-service-finder-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--Primary-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vp-service-finder-link:hover {
    color: var(--Neutral-800);
}

.vp-service-finder-link svg {
    transition: transform 0.3s ease;
}

.vp-service-finder-link:hover svg {
    transform: translateX(3px);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .vp-service-finder {
        padding: 24px;
    }
    
    .vp-service-finder-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .vp-service-finder-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }
    
    .vp-service-finder-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .vp-service-finder-text h4 {
        font-size: 18px;
    }
    
    .vp-service-finder-text p {
        font-size: 13px;
    }
    
    .vp-service-finder-options {
        gap: 10px;
    }
    
    .vp-service-finder-btn {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .vp-service-finder-footer {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .vp-service-finder {
        padding: 20px;
    }
    
    .vp-service-finder-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ==========================================================================
   Quiz Section Styles
   Add to single-post.css or style.css
   ========================================================================== */

   .vp-quiz-section {
    padding: 100px 0;
    background: var(--Neutral-100);
}

.vp-quiz-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* ==========================================================================
   Left Side - Info
   ========================================================================== */
.vp-quiz-info {
    flex: 1;
    max-width: 480px;
}

.vp-quiz-info-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--Primary-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vp-quiz-info-icon svg {
    width: 32px;
    height: 32px;
}

.vp-quiz-info .vp-H2 {
    margin-bottom: 16px;
}

.vp-quiz-info-text {
    color: var(--Neutral-600);
    font-size: 18px;
    font-weight: 400;
    line-height: 148%;
    margin-bottom: 32px;
}

.vp-quiz-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vp-quiz-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--Neutral-700);
    font-size: 16px;
    font-weight: 500;
    line-height: 148%;
}

.vp-quiz-benefits li svg {
    flex-shrink: 0;
}

/* ==========================================================================
   Right Side - Quiz Card
   ========================================================================== */
.vp-quiz-card {
    flex: 1;
    max-width: 660px;
    border-radius: var(--24);
    border: 1px solid var(--Neutral-300);
    background: var(--Neutral-100);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
    padding: 40px;
}

/* Progress Bar */
.vp-quiz-progress {
    margin-bottom: 32px;
}

.vp-quiz-progress-bar {
    height: 6px;
    background: var(--Neutral-300);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.vp-quiz-progress-fill {
    height: 100%;
    background: var(--Primary-primary);
    border-radius: 3px;
    width: 33.33%;
    transition: width 0.4s ease;
}

.vp-quiz-progress-text {
    color: var(--Neutral-600);
    font-size: 14px;
    font-weight: 500;
}

/* Questions */
.vp-quiz-question {
    display: none;
}

.vp-quiz-question.active {
    display: block;
    animation: vpQuizSlideIn 0.3s ease;
}

@keyframes vpQuizSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vp-quiz-question-title {
    color: var(--Neutral-800);
    font-size: 22px;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 24px;
}

/* Options */
.vp-quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.vp-quiz-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--16);
    border: 1px solid var(--Neutral-400);
    background: var(--Neutral-100);
    cursor: pointer;
    transition: all 0.2s ease;
}

.vp-quiz-option:hover {
    border-color: var(--Primary-primary);
    background: var(--Primary-3);
}

.vp-quiz-option input {
    display: none;
}

.vp-quiz-option-radio {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--Neutral-400);
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

.vp-quiz-option input:checked + .vp-quiz-option-radio {
    border-color: var(--Primary-primary);
}

.vp-quiz-option input:checked + .vp-quiz-option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--Primary-primary);
    border-radius: 50%;
}

.vp-quiz-option input:checked ~ .vp-quiz-option-text {
    color: var(--Primary-primary);
    font-weight: 600;
}

.vp-quiz-option-text {
    color: var(--Neutral-700);
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    transition: all 0.2s ease;
}

/* Selected State */
.vp-quiz-option:has(input:checked) {
    border-color: var(--Primary-primary);
    background: var(--Primary-3);
}

/* Actions */
.vp-quiz-actions {
    display: flex;
    gap: 12px;
}

.vp-quiz-actions .vp-btn-primary-medium,
.vp-quiz-actions .vp-btn-stroke-white-medium {
    flex: 1;
    font-size: 16px;
}

.vp-quiz-actions .vp-btn-primary-medium:disabled {
    background: var(--Neutral-400);
    cursor: not-allowed;
    box-shadow: none;
}

.vp-quiz-actions .vp-btn-primary-medium:disabled:hover {
    background: var(--Neutral-400);
}

/* ==========================================================================
   Results
   ========================================================================== */
.vp-quiz-result {
    display: none;
    text-align: center;
}

.vp-quiz-result.active {
    display: block;
    animation: vpQuizFadeIn 0.4s ease;
}

@keyframes vpQuizFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.vp-quiz-result-icon {
    margin-bottom: 20px;
}

.vp-quiz-result-icon svg {
    width: 64px;
    height: 64px;
}

.vp-quiz-result-title {
    color: var(--Neutral-800);
    font-size: 24px;
    font-weight: 600;
    line-height: 132%;
    margin-bottom: 12px;
}

.vp-quiz-result-text {
    color: var(--Neutral-600);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Box */
.vp-quiz-result-services {
    background: var(--Neutral-200);
    border-radius: var(--16);
    padding: 20px 24px;
    margin-bottom: 28px;
    text-align: left;
}

.vp-quiz-result-services-label {
    color: var(--Primary-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.vp-quiz-result-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vp-quiz-result-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--Neutral-800);
    font-size: 15px;
    font-weight: 500;
    line-height: 148%;
}

.vp-quiz-result-services li svg {
    flex-shrink: 0;
}

/* Result Actions */
.vp-quiz-result-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.vp-quiz-result-actions .vp-btn-primary-medium,
.vp-quiz-result-actions .vp-btn-stroke-white-medium {
    flex: 1;
    justify-content: center;
}

/* Restart Button */
.vp-quiz-restart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--Neutral-600);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.2s ease;
    font-family: inherit;
}

.vp-quiz-restart:hover {
    color: var(--Primary-primary);
}

.vp-quiz-restart svg {
    transition: transform 0.3s ease;
}

.vp-quiz-restart:hover svg {
    transform: rotate(-45deg);
}

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */
@media (max-width: 1024px) {
    .vp-quiz-container {
        flex-direction: column;
        gap: 48px;
    }
    
    .vp-quiz-info {
        max-width: 100%;
        text-align: center;
    }
    
    .vp-quiz-info-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .vp-quiz-benefits {
        align-items: center;
    }
    
    .vp-quiz-card {
        max-width: 100%;
        width: 100%;
    }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */
@media (max-width: 768px) {
    .vp-quiz-section {
        padding: 60px 0;
    }
    
    .vp-quiz-container {
        gap: 32px;
    }
    
    .vp-quiz-info .vp-H2 {
        font-size: 28px;
    }
    
    .vp-quiz-info-text {
        font-size: 16px;
    }
    
    .vp-quiz-card {
        padding: 28px 24px;
    }
    
    .vp-quiz-question-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .vp-quiz-options {
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .vp-quiz-option {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .vp-quiz-option-text {
        font-size: 15px;
    }
    
    .vp-quiz-option-radio {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
    
    .vp-quiz-option input:checked + .vp-quiz-option-radio::after {
        width: 8px;
        height: 8px;
    }
    
    .vp-quiz-actions {
        flex-direction: column;
    }
    
    .vp-quiz-result-title {
        font-size: 22px;
    }
    
    .vp-quiz-result-text {
        font-size: 15px;
    }
    
    .vp-quiz-result-actions {
        flex-direction: column;
    }
    
    .vp-quiz-result-services {
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .vp-quiz-card {
        padding: 24px 20px;
    }
    
    .vp-quiz-info-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .vp-quiz-info-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .vp-quiz-benefits li {
        font-size: 15px;
    }
}

/* Post Author Card */
.vp-post-author-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    background: var(--Primary-3);
    border-radius: var(--16);
    margin-bottom: 32px;
    border: 1px solid var(--Primary-2);
}

.vp-post-author-image {
    flex-shrink: 0;
}

.vp-post-author-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--Neutral-100);
    box-shadow: 0 4px 12px rgba(110, 47, 208, 0.15);
}

.vp-post-author-image svg {
    width: 80px;
    height: 80px;
}

.vp-post-author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vp-post-author-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vp-post-author-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--Neutral-800);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.vp-post-author-name:hover {
    color: var(--Primary-primary);
}

.vp-post-author-role {
    font-size: 16px;
    font-weight: 500;
    color: var(--Primary-primary);
}

.vp-post-author-date {
    font-size: 14px;
    font-weight: 500;
    color: var(--Neutral-600);
    margin-top: 4px;
}

@media (max-width: 768px) { 
    
    .vp-post-author-image img,
    .vp-post-author-image svg {
        width: 70px;
        height: 70px;
    }
    
    .vp-post-author-name {
        font-size: 20px;
    }
    .vp-post-author-card {
        padding: 12px 16px;
        gap: 16px;
    }
}