.year13-home {
    position: relative;
    background: #ffffff;
    color: #18214d;
}

.year13-home__container {
    width: calc(100% - 40px);
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.year13-home__section {
    padding: 88px 0;
}

.year13-home__section-title {
    margin: 0;
    color: #1b2455;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
}

.year13-home__section-text,
.year13-home__hero-text {
    margin: 18px 0 0;
    color: #4d5b8c;
    font-size: 1rem;
    line-height: 1.85;
}

.year13-home__section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 32px;
}

.year13-home__section-heading--center {
    justify-content: center;
    text-align: center;
}

.year13-home__hero {
    position: relative;
    overflow: hidden;
    min-height: 750px;
    background: #eef4ff;
}

.year13-home__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--year13-hero-bg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.year13-home__hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 28%, rgba(255, 255, 255, 0.24) 58%, rgba(255, 255, 255, 0) 100%);
}

.year13-home__hero--video::before {
    display: none;
}

.year13-home__hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.year13-home__hero-inner {
    position: relative;
    z-index: 1;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 88px;
    /* padding-bottom: 132px; */
}

.year13-home__hero-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
    gap: 40px;
    align-items: end;
}

.year13-home__hero-copy {
    width: 100%;
    padding: 0;
}

.year13-home__hero-kicker {
    margin: 0 0 18px;
    color: #1b2670;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.45;
}

.year13-home__hero-title {
    margin: 0;
    color: #17156f;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.year13-home__hero-title span {
    display: block;
}

.year13-home__hero-title span + span {
    margin-top: 8px;
}

.year13-home__hero-event-meta {
    margin: 18px 0 0;
    color: #5f6f93;
    font-size: 1.05rem;
    line-height: 1.6;
}

.year13-home__hero-aside {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.year13-home__countdown-block {
    width: min(100%, 24.375rem);
    margin-top: 0;
    padding: 1.375rem 1.5rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border: 0.0625rem solid rgba(22, 37, 78, 0.1);
    box-shadow: 0 1.375rem 3.25rem rgba(22, 37, 78, 0.12);
    backdrop-filter: blur(12px);
}

.year13-home__countdown-label {
    margin-bottom: 0.75rem;
    color: #4c5874;
    font-size: 1.25rem;
    font-weight: 500;
}

.year13-home__countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
}

.year13-home__countdown-item {
    min-height: 0;
    display: grid;
    grid-template-columns: 4rem 1rem;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.125rem;
    background: transparent;
    border: 0;
}

.year13-home__countdown-item strong {
    display: inline-block;
    width: 4rem;
    color: #17156f;
    font-family: Consolas, "Courier New", monospace;
    font-size: clamp(1.85rem, 2.3vw, 2.2rem);
    font-weight: 700;
    line-height: 1;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}

.year13-home__countdown-item span {
    display: inline-block;
    width: 1rem;
    color: #17156f;
    font-size: 1rem;
    line-height: 1.1;
    padding-bottom: 0.1875rem;
}

.year13-home__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.year13-home__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 3.125rem;
    padding: 0 1rem;
    border: 0;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.year13-home__button:hover,
.year13-home__button:focus {
    text-decoration: none;
    transform: translateY(-2px);
}

.year13-home__button--primary {
    background: #006bff;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(0, 107, 255, 0.24);
}

.year13-home__button--secondary {
    background: #684fd6;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(104, 79, 214, 0.22);
}

.year13-home__button--primary:hover,
.year13-home__button--primary:focus,
.year13-home__button--secondary:hover,
.year13-home__button--secondary:focus {
    color: #ffffff;
}

.year13-home__button--full {
    width: 100%;
}

/* Surface the legacy data-section metrics as a dedicated stats band. */
.year13-home__section--data {
    position: absolute;
    top: calc(730px - 3.25rem);
    left: 0;
    right: 0;
    z-index: 2;
    margin-top: 0;
    padding: 0;
}

.year13-home--no-hero .year13-home__section--data {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 1.75rem 0 1.75rem;
}

.year13-home__data-panel {
    overflow: hidden;
    border-radius: 0.75rem;
    background: #ffffff;
    border: 0.0625rem solid rgba(27, 36, 85, 0.06);
    box-shadow: 0 1.375rem 3.375rem rgba(20, 35, 84, 0.1);
}

.year13-home__data-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}

.year13-home__data-item {
    min-height: 6.25rem;
    padding: 1.125rem 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.year13-home__data-item + .year13-home__data-item {
    border-left: 0;
}

.year13-home__data-value {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.25rem;
    color: #0a005a;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.year13-home__data-value > span:last-child {
    font-size: 0.72em;
    line-height: 1.1;
}

.year13-home__data-label {
    margin-top: 0.625rem;
    color: #4c5874;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
}

.year13-home__section--story {
    padding-top: 2.25rem;
}

.year13-home__section--story-v2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #f6f9ff;
}

.year13-home__story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: center;
}

.year13-home__story-grid--v2 {
    grid-template-columns: repeat(52, minmax(0, 1fr));
    gap: 1.75rem 0;
    align-items: stretch;
}

.year13-home__story-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 0.5rem;
    background: #dbe8ff;
}

.year13-home__story-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.year13-home__story-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 3.25rem 1.75rem 1.25rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    background: linear-gradient(180deg, rgba(8, 24, 88, 0) 0%, rgba(20, 32, 96, 0.92) 100%);
}

.year13-home__story-card--portrait {
    grid-column: 1 / span 10;
    width: 16.875rem;
    height: 16.875rem;
    aspect-ratio: 1 / 1;
    min-height: 0;
    align-self: start;
    justify-self: start;
}

.year13-home__story-card--wide {
    grid-column: 13 / span 20;
    min-height: 16.25rem;
}

.year13-home__story-card--top-right {
    grid-column: 34 / span 19;
}

.year13-home__story-copy--v2 {
    grid-column: 1 / span 22;
    /* width: 35rem; */
    align-self: center;
    justify-self: start;
}

.year13-home__section-title--story {
    color: #0a005a;
    font-size: 2rem;
    line-height: 1.2;
}

.year13-home__section-text--story {
    margin-top: 1.625rem;
    color: #4c5874;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.95;
}

.year13-home__story-copy--v2 .year13-home__section-text--story + .year13-home__section-text--story {
    margin-top: 1.75rem;
}

.year13-home__story-card--speech,
.year13-home__story-card--award {
    min-height: 17.5rem;
}

.year13-home__story-card--speech {
    grid-column: 24 / span 14;
}

.year13-home__story-card--award {
    grid-column: 39 / span 14;
    min-height: 17.5rem;
}

.year13-home__story-quote {
    grid-column: 1 / span 22;
    box-sizing: border-box;
    /* width: 35rem; */
    margin: 0;
    justify-self: start;
    padding: 2.75rem 3.375rem 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #1468f8 0%, #6c48d7 100%);
    color: #ffffff;
}

.year13-home__story-quote p {
    margin: 0;
    font-size: 1.625rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1.65;
}

.year13-home__story-quote footer {
    margin-top: 1.625rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.75;
}

.year13-home__story-card--audience {
    grid-column: 24 / span 29;
    min-height: 13.75rem;
}

.year13-home__story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.year13-home__story-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: #eef4ff;
    color: #22316a;
    font-size: 0.92rem;
    font-weight: 600;
}

.year13-home__story-gallery {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.year13-home__story-item {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #dbe8ff;
}

.year13-home__story-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.year13-home__story-item--1,
.year13-home__story-item--3,
.year13-home__story-item--6 {
    grid-column: span 2;
}

.year13-home__story-item--2,
.year13-home__story-item--4,
.year13-home__story-item--5,
.year13-home__story-item--7 {
    grid-column: span 4;
}

.year13-home__section--reasons {
    padding-top: 78px;
    padding-bottom: 96px;
    background: #ffffff;
}

.year13-home__reasons-intro {
    max-width: 980px;
    margin: 0 auto 86px;
    text-align: center;
}

.year13-home__section-title--reasons {
    color: #17156f;
    font-size: 2.25rem;
    line-height: 1.28;
}

.year13-home__section-text--reasons {
    margin-top: 24px;
    color: #4C5874;
    font-size: 1.08rem;
    line-height: 1.7;
    font-weight: 400;
}

.year13-home__reasons-actions {
    margin-top: 42px;
}

.year13-home__reasons-actions .year13-home__cta-group {
    justify-content: center;
    margin-top: 0;
}

.year13-home__reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.year13-home__reason-card {
    position: relative;
    min-height: 232px;
    padding: 28px 24px 26px;
    border-radius: 24px;
    background: #f7faff;
    border: 1px solid rgba(27, 36, 85, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.year13-home__reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(20, 35, 84, 0.08);
}

.year13-home__reason-number {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 107, 255, 1), rgba(104, 79, 214, 1));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.year13-home__reason-card:hover .year13-home__reason-number {
    opacity: 0.6;
}

.year13-home__reason-card h3 {
    margin: 0 0 14px;
    padding-right: 88px;
    color: #1b2455;
    font-size: 1.45rem;
    font-weight: 700;
}

.year13-home__reason-card p {
    margin: 0;
    color: #5e6d98;
    font-size: 0.96rem;
    line-height: 1.8;
}

.year13-home__reasons-grid--v2 {
    gap: 44px;
    align-items: start;
}

.year13-home__reason-card--v2 {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 1.45rem;
    align-items: center;
    overflow: visible;
}

.year13-home__reason-card--v2:hover {
    transform: none;
    box-shadow: none;
}

.year13-home__reason-number--v2 {
    position: static;
    display: block;
    width: 7.5rem;
    min-width: 7.5rem;
    font-size: clamp(10.6rem, 11.8vw, 12.4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    background-image: linear-gradient(180deg, #006bff 0%, #694bd5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.year13-home__reason-card--v2:hover .year13-home__reason-number--v2 {
    opacity: 0.6;
}

.year13-home__reason-copy {
    padding-top: 0;
}

.year13-home__reason-card--v2 h3 {
    margin: 0 0 12px;
    padding-right: 0;
    color: #17156f;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
}

.year13-home__reason-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.year13-home__reason-list li {
    color: #5f6f93;
    font-size: 1rem;
    line-height: 1.62;
}

.year13-home__reason-list li + li {
    margin-top: 4px;
}

.year13-home__reason-list strong {
    color: #17156f;
    font-weight: 700;
}

.year13-home__section--guests {
    background: #f9fbff;
    overflow: hidden;
}

.year13-home__section--guests .year13-home__section-title {
    color: #0a005a;
    font-size: 2.25rem;
    font-weight: 800;
}

#year13GuestCarousel {
    --year13-guest-edge: max(20px, calc((100vw - 1300px) / 2));
    width: calc(100vw - var(--year13-guest-edge));
    overflow: visible;
}

#year13GuestCarousel .owl-stage-outer {
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc(var(--year13-guest-edge) * -1);
    padding-left: var(--year13-guest-edge);
    overflow: hidden;
}

.year13-home__carousel-actions {
    display: flex;
    gap: 10px;
}

.year13-home__carousel-button {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 50%;
    background: #b8c7f7;
    color: #ffffff;
    font-size: 0;
    line-height: 1;
    box-shadow: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.year13-home__carousel-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.05rem;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.year13-home__carousel-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(-34%, -50%) rotate(45deg);
}

.year13-home__carousel-button[data-direction="prev"]::after {
    transform: translate(-66%, -50%) rotate(225deg);
}

.year13-home__carousel-button:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}

.year13-home__section--guests .year13-home__carousel-button {
    background: #b8c7f7;
    color: #ffffff;
}

.year13-home__owl .owl-stage {
    display: flex;
}

.year13-home__owl .owl-item {
    height: auto;
}

.year13-home__owl .owl-item > div {
    height: 100%;
}

.year13-home__guest-slide {
    width: 15rem;
}

.year13-home__guest-card {
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: none;
}

.year13-home__guest-image {
    position: relative;
    aspect-ratio: 1 / 1.18;
    overflow: hidden;
    background: #e8efff;
}

.year13-home__guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.year13-home__guest-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 1.1rem;
    background: linear-gradient(135deg, rgba(0, 107, 255, 0.9), rgba(105, 75, 213, 0.78));
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 2;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.year13-home__guest-card:hover .year13-home__guest-overlay {
    opacity: 1;
}

.year13-home__guest-body {
    min-height: 5.75rem;
    padding: 1.25rem 1.25rem 1.1rem;
}

.year13-home__guest-body h3 {
    margin: 0 0 0.65rem;
    color: #05055f;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.2;
}

.year13-home__guest-description {
    display: -webkit-box;
    overflow: hidden;
    color: #05055f;
    font-size: 0.92rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.year13-home__section--opinions {
    padding-top: 98px;
    background: #ffffff;
}

.year13-home__section-heading--opinion {
    align-items: center;
    margin-bottom: 24px;
}

.year13-home__section-title--opinion {
    color: #0a005a;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
}

.year13-home__carousel-actions--soft {
    gap: 8px;
}

.year13-home__carousel-button--soft {
    background: #b8c7f7;
    color: #ffffff;
}

.year13-home__opinion-shell {
    padding-top: 8px;
}

.year13-home__opinion-slide {
    display: grid;
    grid-template-columns: minmax(0, 43.75rem) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.year13-home__opinion-media {
    width: min(100%, 43.75rem);
    overflow: hidden;
    border-radius: 0.375rem;
}

.year13-home__opinion-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.year13-home__opinion-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.25rem;
}

.year13-home__opinion-quote {
    margin: 0;
    color: #006bff;
    font-size: 3rem;
    line-height: 4.625rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    
}

.year13-home__opinion-signature {
    width: min(16.25rem, 100%);
    margin-top: 2.25rem;
    margin-left: auto;
    text-align: right;
}


.year13-home__opinion-signature strong {
    display: block;
    color: #0a005a;
    font-size: 1.1rem;
    font-weight: 700;
}

.year13-home__opinion-meta {
    margin-top: 0.5rem;
    color: #0a005a;
    font-size: 0.88rem;
    line-height: 1.75;
}

.year13-home__section--partners {
    background: #f7f9ff;
    overflow: hidden;
}

.year13-home__partners-shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 24px 0 58px;
    overflow: hidden;
}

.partner-marquee-viewport {
    overflow: hidden;
    padding-inline: 0;
}

.partner-marquee-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--partner-row-gap, 1.375rem);
}

.partner-marquee-row-wrap {
    width: 180vw;
    overflow: hidden;
}

.partner-marquee-card {
    width: var(--partner-card-width, 11.875rem);
}

.partner-marquee-row {
    display: flex;
    gap: var(--partner-row-gap, 1rem);
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.partner-marquee-row-wrap[data-row="1"],
.partner-marquee-row-wrap[data-row="3"] {
    margin-left: calc((var(--partner-card-width, 12rem) + var(--partner-row-gap, 1rem)) * -0.5);
}

.year13-home__partner-card {
    width: var(--partner-card-width, 11.875rem);
    height: 4.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: none;
}

.year13-home__partner-card img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.year13-home__section--videos {
    padding-top: 98px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.year13-home__text-link {
    display: inline-flex;
    align-items: center;
    color: #2d71ff;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
}

.year13-home__text-link:hover {
    color: #684fd6;
    text-decoration: none;
}

.year13-home__section-heading--video {
    align-items: center;
    margin-bottom: 28px;
}

.year13-home__section-title--video {
    color: #0a005a;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
}

.year13-home__text-link--video {
    gap: 10px;
    color: #1d278a;
}

.year13-home__text-link-icon {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b8c7f7;
    color: #ffffff;
    font-size: 0;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.year13-home__text-link-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.05rem;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.year13-home__text-link-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(-34%, -50%) rotate(45deg);
}

.year13-home__text-link--video:hover .year13-home__text-link-icon {
    transform: translateY(-2px);
    background: #b8c7f7;
    color: #ffffff;
}

.year13-home__video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.year13-home__video-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.year13-home__video-card:hover {
    transform: none;
    box-shadow: none;
}

.year13-home__video-media {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 42px rgba(20, 35, 84, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.year13-home__video-card:hover .year13-home__video-media {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(20, 35, 84, 0.16);
}

.year13-home__video-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 17, 45, 0) 40%, rgba(9, 17, 45, 0.16) 74%, rgba(9, 17, 45, 0.28) 100%);
}

.year13-home__video-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.year13-home__video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 14px 32px rgba(20, 35, 84, 0.16);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.year13-home__video-play .finet {
    display: none;
}

.year13-home__video-play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 17px solid currentColor;
}

.year13-home__video-card:hover .year13-home__video-play {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 24px 48px rgba(20, 35, 84, 0.24);
}

.year13-home__video-title {
    display: -webkit-box;
    min-height: 0;
    overflow: hidden;
    color: #162262;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.55;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.year13-home__video-title:hover {
    color: #2d71ff;
    text-decoration: none;
}

.year13-home__empty {
    margin: 0;
    color: #61719f;
    font-size: 1rem;
}

.year13-home__sponsor-modal .modal-dialog,
.year13-home__video-modal .modal-dialog {
    width: min(34.25rem, calc(100% - 2rem));
    margin: 48px auto;
}

.year13-home__video-modal .modal-dialog {
    width: min(1100px, calc(100% - 32px));
}

.year13-home__sponsor-modal .modal-content,
.year13-home__video-modal-content {
    border: 0.125rem solid #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1.625rem 4rem rgba(20, 35, 84, 0.2);
}

.year13-home__sponsor-modal .modal-body {
    position: relative;
    padding: 3rem 3.9375rem 2.8125rem;
    background: #d6d6d6;
}

.year13-home__modal-close {
    position: absolute;
    top: 1.125rem;
    right: 1.125rem;
    z-index: 2;
    width: 1.5rem;
    height: 1.5rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #354568;
    font-size: 1.625rem;
    line-height: 1;
    opacity: 1;
}

.year13-home__modal-close--inverse {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.year13-home__modal-copy {
    margin-bottom: 2.125rem;
}

.year13-home__modal-copy h3 {
    margin: 0;
    color: #0a005a;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.year13-home__sponsor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.6875rem;
}

.year13-home__sponsor-item {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
}

.year13-home__sponsor-item img {
    display: block;
    width: 100%;
    max-width: 12.5rem;
    border-radius: 0.375rem;
    background: #ffffff;
    margin: 0 auto 0.625rem;
}

.year13-home__sponsor-item figcaption {
    color: #17156f;
    font-size: 1.25rem;
    line-height: 1.2;
}

.year13-home__sponsor-modal .year13-home__button--full {
    height: 3.75rem;
    border-radius: 0.625rem;
    background: linear-gradient(90deg, #006bff 0%, #684fd6 100%);
    box-shadow: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
}

.year13-home__video-modal-content {
    position: relative;
    background: #000000;
}

.year13-home__video-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

@media (min-width: 1024px) {
    .partner-marquee-stack {
        gap: var(--partner-row-gap, 1.375rem);
    }
}

@media (max-width: 1279px) {
    .year13-home__data-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .year13-home__data-item {
        border-top: 1px solid rgba(27, 36, 85, 0.08);
        border-left: 1px solid rgba(27, 36, 85, 0.08);
    }

    .year13-home__data-item:nth-child(-n+3) {
        border-top: 0;
    }

    .year13-home__data-item:nth-child(3n+1) {
        border-left: 0;
    }

    .year13-home__reasons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .year13-home__reasons-grid--v2 {
        gap: 42px 28px;
    }

    .year13-home__video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    .year13-home__section {
        padding: 68px 0;
    }

    .year13-home__section--reasons {
        padding-top: 68px;
        padding-bottom: 84px;
    }

    .year13-home__section--data {
        top: calc(640px - 2.5rem);
    }

    .year13-home__hero,
    .year13-home__hero-inner {
        min-height: 640px;
    }

    .year13-home__hero::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.78) 40%, rgba(255, 255, 255, 0.24) 100%);
    }

    .year13-home__hero-layout,
    .year13-home__story-grid,
    .year13-home__opinion-slide {
        grid-template-columns: 1fr;
    }

    .year13-home__opinion-media {
        width: 100%;
    }

    .year13-home__opinion-quote {
        font-size: 3rem;
        line-height: 3.625rem;
    }

    .year13-home__hero-inner {
        align-items: flex-start;
        padding-top: 72px;
        /* padding-bottom: 108px; */
    }

    .year13-home__data-grid {
        grid-template-columns: 1fr;
    }

    .year13-home__hero-aside {
        justify-content: flex-start;
    }

    .year13-home__countdown-block {
        width: min(100%, 420px);
    }

    .year13-home__countdown {
        gap: 12px;
    }

    .year13-home__data-item {
        border-top: 1px solid rgba(27, 36, 85, 0.08);
        border-left: 0;
    }

    .year13-home__data-item:first-child {
        border-top: 0;
    }

    .year13-home__story-grid--v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .year13-home__story-card--portrait,
    .year13-home__story-card--wide,
    .year13-home__story-card--speech,
    .year13-home__story-card--award,
    .year13-home__story-copy--v2,
    .year13-home__story-quote,
    .year13-home__story-card--audience {
        grid-column: span 1;
        min-height: 0;
    }

    .year13-home__story-copy--v2,
    .year13-home__story-quote,
    .year13-home__story-card--audience {
        grid-column: 1 / -1;
        width: 100%;
    }

    .year13-home__story-card--portrait {
        width: 100%;
        height: auto;
    }

    .year13-home__story-quote {
        padding: 36px 30px 32px;
    }

    .year13-home__story-quote p {
        font-size: 1.95rem;
    }

    .year13-home__section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .year13-home__section--guests .year13-home__section-heading,
    .year13-home__section-heading--opinion,
    .year13-home__section-heading--video {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .year13-home__reason-card--v2 {
        grid-template-columns: 6.25rem minmax(0, 1fr);
    }

    .year13-home__reason-number--v2 {
        width: 6.25rem;
        min-width: 6.25rem;
        font-size: 9rem;
    }

    .year13-home__story-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .year13-home__story-item--1,
    .year13-home__story-item--2,
    .year13-home__story-item--3,
    .year13-home__story-item--4,
    .year13-home__story-item--5,
    .year13-home__story-item--6,
    .year13-home__story-item--7 {
        grid-column: span 1;
    }

    .year13-home__opinion-signature {
        margin-left: 0;
        text-align: left;
    }

}

@media (max-width: 767px) {
    .year13-home__container {
        width: calc(100% - 24px);
    }

    .year13-home__section-title--reasons {
        font-size: 1.95rem;
    }

    .year13-home__section-text--reasons {
        font-size: 1rem;
    }

    .year13-home__reasons-intro {
        margin-bottom: 44px;
    }

    .year13-home__section--data {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-top: -28px;
        padding-bottom: 20px;
    }

    .year13-home__hero {
        min-height: auto;
    }

    .year13-home__hero-copy {
        width: 100%;
        padding: 0;
    }

    .year13-home__hero-inner {
        padding-top: 64px;
        /* padding-bottom: 80px; */
    }

    .year13-home__hero-kicker {
        font-size: 0.95rem;
    }

    .year13-home__hero-meta {
        flex-direction: column;
        align-items: stretch;
    }

    .year13-home__hero-event-meta {
        font-size: 1rem;
    }

    .year13-home__cta-group {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 10rem));
        gap: 10px;
        align-items: stretch;
        justify-content: center;
    }

    .year13-home__button {
        width: min(10rem, 100%);
        height: 3.125rem;
        min-width: 0;
        padding: 0 1rem;
        font-size: 1.25rem;
    }

    .year13-home__data-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .year13-home__data-item {
        min-height: 0;
        padding: 20px 18px;
        border-left: 1px solid rgba(27, 36, 85, 0.08);
        border-top: 1px solid rgba(27, 36, 85, 0.08);
    }

    .year13-home__data-item:first-child,
    .year13-home__data-item:nth-child(2) {
        border-top: 0;
    }

    .year13-home__data-item:nth-child(2n+1) {
        border-left: 0;
    }

    .year13-home__data-value {
        font-size: 1.95rem;
    }

    .year13-home__opinion-quote {
        font-size: 2.25rem;
        line-height: 2.875rem;
    }

    .year13-home__countdown {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .year13-home__countdown-block {
        width: 100%;
        padding: 18px 16px;
    }

    .year13-home__countdown-label {
        margin-bottom: 0.625rem;
        font-size: 1.25rem;
    }

    .year13-home__countdown-item {
        grid-template-columns: 3.25rem 1rem;
        gap: 0.125rem;
    }

    .year13-home__countdown-item strong {
        width: 3.25rem;
        font-size: 1.45rem;
    }

    .year13-home__countdown-item span {
        font-size: 0.82rem;
        padding-bottom: 0;
    }

    .year13-home__section--story-v2 {
        padding-bottom: 72px;
    }

    .year13-home__story-grid--v2 {
        grid-template-columns: 1fr;
    }

    .year13-home__story-card--portrait,
    .year13-home__story-card--wide,
    .year13-home__story-card--speech,
    .year13-home__story-card--award,
    .year13-home__story-copy--v2,
    .year13-home__story-quote,
    .year13-home__story-card--audience {
        grid-column: span 1;
    }

    .year13-home__story-copy--v2 {
        order: 4;
    }

    .year13-home__story-card--speech {
        order: 5;
    }

    .year13-home__story-card--award {
        order: 6;
    }

    .year13-home__story-quote {
        order: 7;
        padding: 28px 24px 26px;
    }

    .year13-home__story-card--audience {
        order: 8;
    }

    .year13-home__sponsor-modal .modal-dialog {
        width: calc(100% - 12px);
        margin: 6px auto;
    }

    .year13-home__sponsor-modal .modal-content {
        border-radius: 18px;
        overflow: visible;
    }

    .year13-home__sponsor-modal .modal-body {
        max-height: none;
        padding: 14px 12px 12px;
        overflow: visible;
    }

    .year13-home__modal-copy h3 {
        font-size: 1.25rem;
    }

    .year13-home__sponsor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 12px;
    }

    .year13-home__sponsor-item {
        padding: 10px 8px;
        border-radius: 14px;
    }

    .year13-home__sponsor-item img {
        max-width: 9.5rem;
        margin-bottom: 6px;
    }

    .year13-home__sponsor-item figcaption {
        font-size: 0.8rem;
    }

    .year13-home__sponsor-modal .year13-home__button--full {
        display: flex;
        width: 100%;
        height: 3.75rem;
        min-height: 3.75rem;
        margin-right: auto;
        margin-left: auto;
        font-size: 1.25rem;
    }

    .year13-home__section-title--story {
        font-size: 2rem;
    }

    .year13-home__section-text--story {
        margin-top: 18px;
        line-height: 1.8;
    }

    .year13-home__story-quote p {
        font-size: 1.55rem;
        line-height: 1.7;
    }

    .year13-home__reasons-grid,
    .year13-home__video-grid,
    .year13-home__sponsor-grid,
    .year13-home__story-gallery {
        grid-template-columns: 1fr;
    }

    .year13-home__reasons-grid--v2 {
        padding-left: 1rem;
    }

    .year13-home__sponsor-modal .year13-home__sponsor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-marquee-row-wrap {
        width: 210vw;
    }

    #year13GuestCarousel {
        --year13-guest-edge: 0px;
        width: 100%;
    }

    .year13-home__guest-slide {
        width: min(78vw, 15rem);
    }

    .year13-home__reason-card--v2 {
        grid-template-columns: 5.25rem minmax(0, 1fr);
        gap: 14px;
    }

    .year13-home__reason-number--v2 {
        width: 5.25rem;
        min-width: 5.25rem;
        font-size: 7.2rem;
    }

    .year13-home__reason-copy {
        padding-top: 8px;
    }

    .year13-home__video-card {
        padding: 0;
        border-radius: 0;
    }

    .year13-home__video-play {
        width: 4rem;
        height: 4rem;
    }

    .year13-home__section-title--opinion {
        font-size: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .partner-marquee-row {
        transform: translateX(0) !important;
        transition: none !important;
    }

    .year13-home__button,
    .year13-home__carousel-button,
    .year13-home__reason-card,
    .year13-home__reason-number {
        transition: none;
    }
}
