.orixine-featured-insight {
    --orixine-background: #0B3B3A;
    --orixine-font-family: inherit;
    --orixine-heading-size: 34px;
    --orixine-heading-weight: 600;
    --orixine-heading-color: #FFFFFF;
    --orixine-item-title-size: 24px;
    --orixine-item-title-weight: 600;
    --orixine-item-title-color: #FFFFFF;
    --orixine-body-size: 14px;
    --orixine-body-color: #E2E8F0;
    --orixine-gold: #D97706;
    --orixine-green: #6DBA91;
    width: 100vw;
    max-width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    padding: 52px 0;
    box-sizing: border-box;
    background: var(--orixine-background);
    color: #fff;
    font-family: var(--orixine-font-family);
}

/* Full-bleed row: 33% image-only column + 67% content column. */
.orixine-insight-row {
    width: 100%;
    min-height: 300px;
    display: grid;
    grid-template-columns: 33.333% 66.667%;
    align-items: center;
}

.orixine-insight-cover-column,
.orixine-insight-content-column {
    min-width: 0;
    box-sizing: border-box;
}

.orixine-insight-cover-column {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 56px;
}

.orixine-insight-cover-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.orixine-insight-cover {
    display: block;
    width: 170px;
    max-width: 100%;
    height: 235px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 2px;
    box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

.orixine-insight-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(255,255,255,.08);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.orixine-insight-content-column {
    padding: 28px clamp(40px, 8vw, 120px) 28px 28px;
}

.orixine-insight-heading {
    margin: 0 0 24px;
}

.orixine-insight-heading h2 {
    margin: 0;
    color: var(--orixine-heading-color);
    font-size: var(--orixine-heading-size);
    line-height: 1.15;
    font-weight: var(--orixine-heading-weight);
    letter-spacing: -0.02em;
}

.orixine-insight-slider {
    width: 100%;
    overflow: hidden;
}

.orixine-insight-track { position: relative; }

.orixine-insight-slide {
    display: none;
    width: 100%;
    min-height: 150px;
}

.orixine-insight-slide.is-active {
    display: block;
    animation: orixineInsightFade .35s ease;
}

@keyframes orixineInsightFade {
    from { opacity: .15; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.orixine-insight-slide-content h3 {
    margin: 0 0 10px;
    color: var(--orixine-item-title-color);
    font-size: var(--orixine-item-title-size);
    line-height: 1.16;
    font-weight: var(--orixine-item-title-weight);
}

.orixine-insight-slide-content p {
    max-width: 760px;
    margin: 0 0 20px;
    color: var(--orixine-body-color);
    font-size: var(--orixine-body-size);
    line-height: 1.55;
}

.orixine-insight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.orixine-download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    background: var(--orixine-gold);
    color: #fff !important;
    border: 1px solid var(--orixine-gold);
    border-radius: 3px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    transition: opacity .2s ease, transform .2s ease;
}

.orixine-download-button:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.orixine-insight-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 25px 0 0;
}

.orixine-insight-prev,
.orixine-insight-next {
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.75);
    cursor: pointer;
    font-size: 16px;
}

.orixine-insight-dots { display: flex; align-items: center; gap: 7px; }

.orixine-insight-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
}

.orixine-insight-dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

.orixine-empty-insight {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    border: 1px dashed rgba(255,255,255,.3);
    background: rgba(255,255,255,.05);
    color: #fff;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .orixine-insight-row { grid-template-columns: 33.333% 66.667%; }
    .orixine-insight-cover-column { padding: 20px 24px; }
    .orixine-insight-cover { width: 155px; height: 205px; }
    .orixine-insight-content-column { padding-right: 45px; }
    .orixine-insight-heading h2 { font-size: 30px; }
    .orixine-insight-slide-content h3 { font-size: 21px; }
}

@media (max-width: 767px) {
    .orixine-featured-insight { padding: 40px 0; }
    .orixine-insight-row {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .orixine-insight-cover-column {
        padding: 0 20px 28px;
    }
    .orixine-insight-cover { width: 150px; height: 200px; }
    .orixine-insight-content-column { padding: 0 24px; }
    .orixine-insight-heading { margin-bottom: 20px; }
    .orixine-insight-heading h2 { font-size: 28px; }
    .orixine-insight-slide-content h3 { font-size: 20px; }
    .orixine-insight-slide-content p { font-size: 13px; }
    .orixine-insight-controls { justify-content: center; }
}
