.ard-chairmans-vision-widget {
    background-color: #1A1A1A; /* Default dark background */
    padding: 80px 20px;
    overflow: hidden;
}

.ard-cv-container {
    max-width: 1200px; /* Matched to theme container width */
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

/* Text Side */
.ard-cv-content-wrapper {
    position: relative;
    padding-left: 40px; /* Space for the line */
    order: 2;
}

.ard-cv-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: #C5A059; /* Primary Gold */
}

.ard-cv-title {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.ard-cv-description {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75;
    color: #D1D5DB; /* Gray 300 */
    margin-bottom: 24px;
}

.ard-cv-description:last-child {
    margin-bottom: 0;
}

/* Image Side */
.ard-cv-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
    height: 100%;
    order: 1;
    overflow: hidden;
    border-radius: 8px; /* Optional rounded corners */
}

.ard-cv-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.ard-cv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1A1A1A, rgba(26, 26, 26, 0.5), transparent);
}

/* Signature Block */
.ard-cv-signature {
    margin-top: 40px;
}

.ard-cv-sig-line {
    width: 60px;
    height: 3px;
    background-color: #C5A059;
    margin-bottom: 16px;
}

.ard-cv-sig-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
    line-height: 1.2;
}

.ard-cv-sig-title {
    font-size: 1rem;
    font-weight: 500;
    color: #0000FF; /* Default blue, overridden by controls */
    line-height: 1.4;
}

/* Animations */
.ard-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.ard-animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.ard-cv-accent-line.ard-animate-on-scroll { transition-delay: 0s; }
.ard-cv-title.ard-animate-on-scroll { transition-delay: 0.1s; }
.ard-cv-description.ard-animate-on-scroll:nth-of-type(1) { transition-delay: 0.2s; }
.ard-cv-description.ard-animate-on-scroll:nth-of-type(2) { transition-delay: 0.3s; }
.ard-cv-signature.ard-animate-on-scroll { transition-delay: 0.4s; }
.ard-cv-image-wrapper.ard-animate-on-scroll { transition-delay: 0.2s; }

/* Responsive */
@media (min-width: 1024px) {
    .ard-chairmans-vision-widget {
        padding: 128px 32px;
    }

    .ard-cv-container {
        grid-template-columns: 1fr 1fr;
        gap: 96px;
    }

    .ard-cv-content-wrapper {
        order: 1;
    }

    .ard-cv-image-wrapper {
        order: 2;
        min-height: 500px;
    }

    .ard-cv-title {
        font-size: 3rem; /* 48px */
    }

    .ard-cv-overlay {
        background: linear-gradient(to right, #1A1A1A, rgba(26, 26, 26, 0.5), transparent);
    }
}
