.news :focus-visible {
    outline: 3px solid rgba(168, 85, 247, .55);
    outline-offset: 2px;
    border-radius: 14px;
}

.news .hero {
    padding: 48px 0 12px;
    text-align: center;
}

.news .hero h1 {
    margin: 0 auto 14px;
    font-size: clamp(32px, 4vw, 54px);
    letter-spacing: -.02em;
    max-width: 30ch;
}

.news .hero p {
    margin: 0 auto 18px;
    color: var(--muted);
    max-width: 86ch;
    font-size: 17px;
    line-height: 1.6;
}

.news .hero__note {
    display: inline-block;
    margin-top: 10px;
}

.news .pillrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 0;
}

.news .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .78);
    color: var(--muted);
    font-size: 13px;
    box-shadow: var(--shadow2);
}

.news .section-title {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 14px;
}

.news .section-title h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -.01em;
}

.news .section-intro {
    max-width: 78ch;
    margin: 0 auto 18px;
    color: var(--muted);
    text-align: center;
}

.news .feature {
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .80);
    box-shadow: var(--shadow2);
    position: relative;
    overflow: hidden;
    padding: 18px;
}

.news .feature:before {
    content: "";
    position: absolute;
    inset: -140px -180px auto auto;
    width: 560px;
    height: 460px;
    background: radial-gradient(ellipse 60% 45% at 35% 35%, rgba(168, 85, 247, .18), transparent 65%), radial-gradient(ellipse 55% 40% at 70% 45%, rgba(240, 171, 252, .14), transparent 70%), radial-gradient(ellipse 50% 35% at 45% 80%, rgba(91, 33, 182, .10), transparent 75%);
    filter: blur(4px);
    opacity: .95;
    pointer-events: none;
}

.news .feature > * {
    position: relative;
    z-index: 1;
}

.news .webinars-list {
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.news .webinar-main {
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 30px rgba(2, 6, 23, .06);
    padding: 16px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns:1fr 150px;
    gap: 14px;
    align-items: stretch;
}

.news .webinar-main:before {
    content: "";
    position: absolute;
    inset: -90px -140px auto auto;
    width: 360px;
    height: 280px;
    background: radial-gradient(ellipse 60% 45% at 35% 35%, rgba(168, 85, 247, .14), transparent 65%), radial-gradient(ellipse 55% 40% at 70% 45%, rgba(240, 171, 252, .12), transparent 70%);
    filter: blur(2px);
    opacity: .9;
    pointer-events: none;
}

.news .webinar-main > * {
    position: relative;
    z-index: 1;
}

.news .webinar-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 12px;
}

.news .webinar-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.news .kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(46, 16, 101, .86);
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(168, 85, 247, .22);
    background: linear-gradient(135deg, rgba(168, 85, 247, .12), rgba(91, 33, 182, .06));
    white-space: nowrap;
}

.news .badge {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .78);
    color: rgba(15, 23, 42, .78);
    white-space: nowrap;
}

.news .webinar-main h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: rgba(46, 16, 101, .92);
    letter-spacing: -.01em;
}

.news .webinar-main p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.news .webinar-media {
    margin-top: auto;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .70);
    overflow: hidden;
    position: relative;
    min-height: 190px;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .06);
}

.news .webinar-media:before {
    content: "";
    position: absolute;
    inset: -40% -35%;
    background: radial-gradient(circle at 30% 25%, rgba(240, 171, 252, .65), transparent 55%), radial-gradient(circle at 75% 35%, rgba(168, 85, 247, .55), transparent 55%), radial-gradient(circle at 45% 80%, rgba(91, 33, 182, .35), transparent 60%);
    filter: blur(10px);
    opacity: .95;
}

.news .webinar-media__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
}

.news .webinar-media__meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.news .wm-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .52);
    box-shadow: 0 8px 14px rgba(2, 6, 23, .05);
    font-size: 11.5px;
    color: rgba(15, 23, 42, .78);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.news .webinar-media__title {
    font-weight: 900;
    color: rgba(46, 16, 101, .92);
    letter-spacing: -.01em;
    font-size: 15px;
    line-height: 1.25;
}

.news .webinar-media__sub {
    font-size: 13.5px;
    color: rgba(15, 23, 42, .72);
}

.news .webinar-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    padding-top: 48px;
    min-width: 0;
}

.news .webinar-right .btn {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    padding: 12px 14px;
    font-size: 13.5px;
    font-weight: 900;
    margin-top: auto;
}

.news .side-badge {
    width: 100%;
    text-align: center;
    font-size: 10.5px;
    font-weight: 900;
    padding: 7px 8px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .78);
    color: rgba(15, 23, 42, .78);
    box-shadow: 0 10px 18px rgba(2, 6, 23, .04);
    line-height: 1.15;
}

.news .webinar-subgrid {
    display: grid;
    grid-template-columns:1fr;
    gap: 10px;
    align-content: start;
}

.news .webinar-sub {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .76);
    padding: 10px 12px;
    box-shadow: 0 10px 22px rgba(2, 6, 23, .05);
    position: relative;
    overflow: hidden;
}

.news .webinar-sub:before {
    content: "";
    position: absolute;
    inset: -90px -140px auto auto;
    width: 340px;
    height: 260px;
    background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, .10), transparent 64%);
    pointer-events: none;
    opacity: .8;
}

.news .webinar-sub > * {
    position: relative;
    z-index: 1;
}

.news .webinar-sub h4 {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(46, 16, 101, .92);
}

.news .webinar-sub p {
    margin: 0;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.65;
}

.news .news-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 14px;
}

.news .news-intro {
    max-width: 78ch;
    margin: 0;
    color: var(--muted);
    text-align: center;
}

.news .news-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 16px 0 18px;
}

.news .news-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.news .tab {
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .75);
    color: rgba(46, 16, 101, .92);
    font-weight: 900;
    font-size: 12.5px;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(2, 6, 23, .04);
}

.news .tab[aria-selected="true"] {
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
    background: linear-gradient(135deg, rgba(91, 33, 182, .95), rgba(168, 85, 247, .85));
    box-shadow: 0 14px 26px rgba(91, 33, 182, .28);
}

.news .news-info-row {
    width: min(980px, 100%);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: flex-start;
}

.news .next-highlight {
    flex: 1 1 420px;
    border-radius: 16px;
    border: 1px dashed rgba(168, 85, 247, .30);
    background: linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .55));
    box-shadow: 0 10px 18px rgba(2, 6, 23, .04);
    padding: 12px 14px;
    color: rgba(15, 23, 42, .82);
    font-size: 13px;
    line-height: 1.45;
}

.news .next-highlight b {
    color: rgba(46, 16, 101, .92);
}

.news .filters-inline {
    flex: 0 1 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.news .filters-inline select {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .80);
    font-size: 12.5px;
    color: rgba(46, 16, 101, .92);
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(2, 6, 23, .04);
}

.news .events-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    gap: 14px;
}

.news .event-wrap {
    grid-column: span 4;
    position: relative;
    padding-top: 18px;
}

.news .badge-tab {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 0;
    border-radius: 16px;
    padding: 10px 16px 26px;
    min-height: 52px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    line-height: 1.05;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, rgba(91, 33, 182, .95), rgba(168, 85, 247, .88));
    box-shadow: 0 14px 28px rgba(91, 33, 182, .22), inset 0 0 0 1px rgba(255, 255, 255, .12);
    transform: translateY(-10%);
    z-index: 0;
}

.news .event-card {
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 30px rgba(2, 6, 23, .06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    z-index: 1;
}

.news .event-media {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 171, 252, .42), rgba(168, 85, 247, .22));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.news .event-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news .ribbon-badge {
    position: relative;
    z-index: 1;
    max-width: 92%;
    text-align: center;
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 12.5px;
    line-height: 1.25;
    color: #fff;
    background: rgba(46, 16, 101, .78);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 10px 18px rgba(2, 6, 23, .20);
    backdrop-filter: blur(8px);
}

.news .event-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.news .eyebrow {
    font-weight: 1000;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(46, 16, 101, .88);
}

.news .event-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 950;
    color: rgba(46, 16, 101, .92);
    letter-spacing: -.01em;
}

.news .event-desc {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.news .event-footerline {
    margin-top: auto;
    font-size: 12.5px;
    color: var(--muted2);
    font-weight: 700;
}

.news .cta-row {
    padding: 0 16px 16px;
    display: flex;
    justify-content: center;
}

.news .btn-actualite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 950;
    font-size: 13px;
    line-height: 1.2;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 18px rgba(2, 6, 23, .04);
    cursor: pointer;
}

.news .btn-actualite.fill {
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
    background: linear-gradient(135deg, rgba(91, 33, 182, .95), rgba(168, 85, 247, .85));
    box-shadow: 0 14px 26px rgba(91, 33, 182, .28);
}

.news .btn-actualite.ghost {
    color: rgba(46, 16, 101, .92);
    border-color: rgba(168, 85, 247, .18);
    background: rgba(255, 255, 255, .78);
}

.news .past-timeline {
    width: min(980px, 100%);
    margin: 18px auto 0;
    position: relative;
    padding-left: 22px;
}

.news .past-timeline:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(168, 85, 247, .22);
}

.news .tl-item {
    position: relative;
    margin-left: 8px;
    padding-left: 18px;
    margin-bottom: 14px;
}

.news .tl-item:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(91, 33, 182, .95), rgba(168, 85, 247, .85));
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .9);
}

.news .tl-card {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 26px rgba(2, 6, 23, .06);
    padding: 12px;
}

.news .tl-title {
    font-size: 15px;
}

.news .tl-meta {
    margin-top: 6px;
}

.news .news-disclaimer {
    max-width: 920px;
    margin: 18px auto 0;
    text-align: center;
}

@media (max-width: 980px) {
    .news .webinars-list {
        grid-template-columns:1fr;
    }

    .news .webinar-main {
        grid-template-columns:1fr;
    }

    .news .webinar-subgrid {
        grid-template-columns:1fr;
    }

    .news .event-wrap {
        grid-column: span 12;
    }
}

@media (max-width: 560px) {
    .news .hero {
        padding: 34px 0 8px;
    }
}
