/* UNIVGA — lecture éditoriale des articles de veille */

body.uvg-article-page {
    --navy: #0b1e4d;
    --navy-2: #0a1842;
    --gold: #c9a24a;
    --ink: #1c2434;
    --muted: #5a6474;
    --ivory: #f4efe4;
    --paper: #f6f5f2;
    background: var(--ivory);
}
body.uvg-article-page .rh-outer-wrap {
    padding: 0 !important;
    margin: 0 !important;
    background: var(--ivory);
    overflow: visible;
}
body.uvg-article-page .title_single_area,
body.uvg-article-page .breadcrumb,
body.uvg-article-page .post-meta,
body.uvg-article-page .top_share,
body.uvg-article-page .heart_thumb_wrap,
body.uvg-article-page .favour_in_image,
body.uvg-article-page .rh-user-favor-shop,
body.uvg-article-page .wpsm_pretty_hover,
body.uvg-article-page .rh_woo_star,
body.uvg-article-page #comments,
body.uvg-article-page .related_articles {
    display: none !important;
}

.uvg-article {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    background: var(--ivory);
}
.uvg-article,
.uvg-article * {
    box-sizing: border-box;
}

/* ── Hero ── */
.uvg-article__hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 70% at 12% 8%, rgba(59, 130, 246, .38) 0%, transparent 52%),
        radial-gradient(ellipse 70% 55% at 92% 88%, rgba(34, 211, 238, .16) 0%, transparent 48%),
        radial-gradient(ellipse 45% 40% at 55% 45%, rgba(251, 191, 36, .12) 0%, transparent 55%),
        radial-gradient(120% 100% at 80% 0%, #1e3a8a 0%, #0b1020 55%, #05081a 100%);
    padding: 28px clamp(20px, 3vw, 48px) 72px;
    min-height: min(72vh, 780px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}
.uvg-article__hero-photo {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 28%;
    filter: saturate(.82) brightness(.72);
    opacity: .62;
}
.uvg-article__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(34, 211, 238, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, .07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 28%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 28%, transparent 85%);
    pointer-events: none;
    opacity: .45;
}
.uvg-article__hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 58% at 50% 48%, rgba(10, 24, 66, .18) 0%, rgba(5, 8, 26, .12) 62%, rgba(5, 8, 26, .38) 100%),
        linear-gradient(180deg, rgba(10, 24, 66, .16) 0%, rgba(11, 30, 77, .06) 38%, rgba(5, 8, 26, .5) 100%),
        linear-gradient(90deg, rgba(5, 8, 26, .32) 0%, transparent 58%);
    pointer-events: none;
}
.uvg-article__hero-inner,
.uvg-article__hero > .uvg-article__kicker {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.uvg-article__hero > .uvg-article__kicker {
    margin-bottom: 0;
}
.uvg-article__kicker,
.uvg-article__kicker a {
    display: inline-block;
    margin: 0 0 14px;
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
}
.uvg-article__kicker a:hover {
    color: #e8c56b;
}
.uvg-article__hero h1 {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4.4vw, 3.15rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
    color: #fff;
}
.uvg-article__dek {
    margin: 0 0 18px;
    max-width: 52em;
    font-size: 1.12rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .82);
}
.uvg-article__meta {
    margin: 0;
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(232, 197, 107, .9);
}

/* ── Corps ── */
.uvg-article__paper {
    background: var(--ivory);
    padding: 56px clamp(20px, 3vw, 48px) 72px;
}
.uvg-article__body {
    max-width: 1360px;
    margin: 0 auto;
    font-size: 1.08rem;
    color: var(--ink);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    column-gap: clamp(32px, 4vw, 56px);
    align-items: start;
}
@media (min-width: 980px) {
    .uvg-article__body {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    }
    .uvg-article__body > * {
        grid-column: 1;
    }
    .uvg-article__rail {
        grid-column: 2;
        grid-row: 1 / span 40;
        display: flex;
        flex-direction: column;
        gap: 22px;
        margin: 0;
        align-self: start;
    }
    .uvg-article__rail .veille-oneminute,
    .uvg-article__rail .veille-univga-encart {
        margin: 0;
    }
}
.uvg-article__body h2 {
    margin: 2.1em 0 .7em;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.25;
    color: var(--navy);
}
.uvg-article__body h2:first-child {
    margin-top: 0;
}
.uvg-article__body p {
    margin: 0 0 1.05em;
    color: #2a3344;
}
.uvg-article__body a {
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
}
.uvg-article__body .uvg-article__mini,
.uvg-article__body .uvg-article__mini:hover {
    border-bottom: 0;
    color: inherit;
}
.uvg-article__body a:hover {
    color: var(--gold);
}
.uvg-article__body ul,
.uvg-article__body ol {
    margin: 0 0 1.4em;
    padding-left: 1.2em;
}
.uvg-article__body li + li {
    margin-top: .45em;
}

.uvg-article .veille-intro p {
    font-size: 1.14rem;
    line-height: 1.72;
    color: var(--ink);
}

.uvg-article .veille-oneminute {
    margin: 1.6em 0 2em;
    padding: 22px 26px 20px;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: 12px 12px 0 0 rgba(201, 162, 74, .28);
    border-left: 4px solid var(--gold);
}
.uvg-article .veille-oneminute__label {
    color: var(--gold);
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.uvg-article .veille-oneminute li {
    color: var(--navy);
    font-weight: 400;
}

.uvg-article .veille-case-study {
    margin: 1em 0 2em;
    padding: 22px 24px;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: 12px 12px 0 0 rgba(11, 30, 77, .08);
}
.uvg-article .veille-case-study__intro {
    color: #3a4456;
}
.uvg-article .veille-case-study__col {
    border-radius: 0;
}
.uvg-article .veille-case-study__col--do {
    background: rgba(11, 30, 77, .05);
    border: 1px solid rgba(11, 30, 77, .16);
}
.uvg-article .veille-case-study__col--dont {
    background: rgba(74, 16, 24, .06);
    border: 1px solid rgba(74, 16, 24, .2);
}
.uvg-article .veille-case-study__col--do .veille-case-study__label {
    color: var(--navy);
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.uvg-article .veille-case-study__col--dont .veille-case-study__label {
    color: #4a1018;
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.uvg-article .veille-univga-voice {
    margin: 1.2em 0 1.8em;
    padding: 28px 30px 24px;
    background: var(--navy);
    border: 0;
    border-radius: 0;
    box-shadow: 12px 12px 0 0 rgba(201, 162, 74, .32);
}
.uvg-article .veille-univga-voice p {
    color: rgba(232, 236, 248, .86);
}
.uvg-article h2 + .veille-univga-voice {
    margin-top: .4em;
}

.uvg-article .veille-univga-encart {
    margin: 0 0 2.2em;
    padding: 22px 22px 20px;
    background: #fff;
    border: 1px solid rgba(201, 162, 74, .45);
    border-radius: 0;
    box-shadow: 12px 12px 0 0 rgba(11, 30, 77, .08);
}
.uvg-article .veille-univga-encart__label {
    color: var(--gold);
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.uvg-article .veille-univga-encart p:not(.veille-univga-encart__label) {
    color: var(--ink);
}
.uvg-article .veille-univga-encart a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 0 0 2px;
    background: none;
    border-radius: 0;
    color: var(--navy) !important;
    border-bottom: 1px solid var(--gold);
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-shadow: none;
    transform: none;
}
.uvg-article .veille-univga-encart a:hover {
    color: var(--gold) !important;
    transform: none;
    box-shadow: none;
}

.uvg-article__body > ol {
    list-style: none;
    padding: 0;
    counter-reset: src;
}
.uvg-article__body > ol > li {
    counter-increment: src;
    position: relative;
    padding-left: 2.1em;
    margin-bottom: .7em;
    font-size: .98rem;
}
.uvg-article__body > ol > li::before {
    content: counter(src);
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--gold);
}

.uvg-article__rail-posts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.uvg-article__rail-posts .uvg-article__kicker {
    margin: 4px 0 0;
}
.uvg-article__mini {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    border-bottom: 0;
    background: #fff;
    box-shadow: 8px 8px 0 0 rgba(201, 162, 74, .28);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.uvg-article__mini:hover {
    transform: translateY(-3px);
    box-shadow: 10px 10px 0 0 rgba(201, 162, 74, .38);
    color: inherit;
}
.uvg-article__mini figure {
    margin: 0;
    height: 88px;
    background: var(--navy);
    overflow: hidden;
}
.uvg-article__mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.uvg-article__mini-body {
    padding: 10px 12px 10px 0;
    min-width: 0;
}
.uvg-article__mini time {
    display: block;
    margin: 0 0 4px;
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}
.uvg-article__mini h3 {
    margin: 0;
    font-size: .92rem;
    line-height: 1.3;
    color: var(--navy);
}

.uvg-article .uvg-fcc {
    border-radius: 16px;
    overflow: hidden;
    background: #0b1120;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 12px 32px rgba(11, 17, 32, .28);
}
.uvg-article .uvg-fcc,
.uvg-article .uvg-fcc *:not(svg):not(path) {
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.uvg-fcc__icon {
    display: inline-block;
    width: .86em;
    height: .86em;
    flex-shrink: 0;
    fill: currentColor;
    vertical-align: -0.12em;
}
.uvg-article__body .uvg-fcc__link,
.uvg-article__body .uvg-fcc__link:hover {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-bottom: 0;
}
.uvg-fcc__visual {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #081018;
}
.uvg-fcc__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.uvg-fcc__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(11, 17, 32, .82) 100%);
}
.uvg-fcc__pill {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 4px;
    background: #fccb40;
    color: #1a1200;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.uvg-fcc__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 16px 18px;
}
.uvg-fcc__title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
}
.uvg-fcc__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.uvg-fcc__chips span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(148, 197, 255, .28);
    color: #9ec8ea;
    font-size: .68rem;
    font-weight: 600;
}
.uvg-fcc__chips .uvg-fcc__icon {
    color: #67c6f3;
    width: .78em;
    height: .78em;
}
.uvg-fcc__rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.uvg-fcc__rating .uvg-fcc__icon {
    color: #f5b942;
    width: 12px;
    height: 12px;
}
.uvg-fcc__rating small {
    margin-left: 5px;
    color: #94a3b8;
    font-size: 11px;
}
.uvg-fcc__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.uvg-fcc__price-row strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fccb40;
}
.uvg-fcc__badges {
    display: inline-flex;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
}
.uvg-fcc__badges span {
    padding: 6px 9px;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
}
.uvg-fcc__badges span:first-child {
    background: #2a3148;
}
.uvg-fcc__badges span:last-child {
    background: #7c5cbf;
}
.uvg-fcc__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 14px;
    border-radius: 10px;
    background: #fccb40;
    color: #1a1200;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.uvg-fcc__cta .uvg-fcc__icon {
    width: .78em;
    height: .78em;
}

/* ── Connexes ── */
.uvg-article__related {
    background: #fff;
    padding: 48px clamp(20px, 3vw, 48px) 72px;
}
.uvg-article__related-inner {
    max-width: 1360px;
    margin: 0 auto;
}
.uvg-article__related h2 {
    margin: 0 0 28px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.5rem, 2.6vw, 2.05rem);
    color: var(--navy);
}
.uvg-article__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.uvg-article__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--ivory);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    box-shadow: 12px 12px 0 0 rgba(201, 162, 74, .32);
    transition: transform .3s ease, box-shadow .3s ease;
}
.uvg-article__card:hover {
    transform: translateY(-6px);
    box-shadow: 16px 16px 0 0 rgba(201, 162, 74, .42);
    color: inherit;
}
.uvg-article__card figure {
    margin: 0;
    height: 180px;
    overflow: hidden;
    background: var(--navy);
}
.uvg-article__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.uvg-article__card-body {
    position: relative;
    padding: 20px 22px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.uvg-article__card-body::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 0;
    width: 4px;
    background: var(--gold);
}
.uvg-article__card time {
    display: block;
    margin: 0 0 8px;
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}
.uvg-article__card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.3;
    color: var(--navy);
}
.uvg-article__card p {
    margin: 0 0 16px;
    font-size: .92rem;
    line-height: 1.55;
    color: var(--muted);
    flex: 1;
}
.uvg-article__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    align-self: flex-start;
}
.uvg-article__more::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: -1px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
}

@media (max-width: 900px) {
    .uvg-article__cards {
        grid-template-columns: 1fr;
    }
    .uvg-article__hero {
        padding: 22px 20px 48px;
        min-height: 54vh;
    }
    .uvg-article__paper {
        padding: 36px 18px 56px;
    }
    .uvg-article__body {
        grid-template-columns: minmax(0, 1fr);
    }
    .uvg-article__rail {
        grid-column: 1;
        grid-row: auto;
        position: static;
        gap: 18px;
        margin: 1.6em 0 2em;
    }
    .uvg-article .veille-oneminute,
    .uvg-article .veille-univga-encart {
        margin: 0;
    }
    .uvg-article .veille-case-study__grid {
        grid-template-columns: 1fr;
    }
}
