@charset "UTF-8";
/* ==========================================================
   全力ドリーマーズ / タレント関連ページ
   設置場所: 子テーマ/assets/css/zd-talent.css
   ========================================================== */

.zd-talents-page,
.zd-talent-single,
.zd-tcar,
.zd-tcar-head {
    --zd-navy: #1A1B41;
    --zd-cyan: #00CFFF;
    --zd-pink: #E85298;
    --zd-radius: 18px;
    --zd-ease: cubic-bezier(0.17, 0.67, 0.14, 1.03);
}


/* ==========================================================
   共通パーツ
   ========================================================== */

/* 見出しの英字（Kanitのイタリック） */
.zd-tp-head-en,
.zd-ts-en,
.zd-ts-h2,
.zd-tcar-en,
.zd-tp-en,
.zd-ts-nav-label {
    font-family: 'Kanit', sans-serif;
    font-style: italic;
    letter-spacing: 0.03em;
}


/* ==========================================================
   1. トップページ用カルーセル [zd_talents_top]
   ========================================================== */

/* --- セクション見出し（TALENTS / 所属タレント） --- */
.zd-tcar-head {
    text-align: center;
    margin: 0 auto 46px;
    padding: 0 20px;
}
.zd-tcar-head-en,
.zd-tp-head-en {
    font-family: 'Kanit', sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.95;
    margin: 0;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, var(--zd-cyan), var(--zd-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.zd-tcar-head-ja,
.zd-tp-head-ja {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    color: var(--zd-navy);
    margin: 14px 0 0;
    padding-top: 16px;
}
/* 見出し下の飾り線 */
.zd-tcar-head-ja::before,
.zd-tp-head-ja::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--zd-cyan), var(--zd-pink));
}

@media (max-width: 768px) {
    .zd-tcar-head { margin-bottom: 30px; }
    .zd-tcar-head-ja,
    .zd-tp-head-ja {
        font-size: 0.85rem;
        letter-spacing: 0.16em;
        margin-top: 10px;
        padding-top: 13px;
    }
}

.zd-tcar {
    position: relative;
    width: 100%;
    /* 下の余白：次セクション（斜めに競り上がるフッター）と名前が
       ぶつからないよう大きめに確保しています */
    padding: 20px 0 140px;
}

.zd-tcar-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5vw 24px;
    scrollbar-width: none;
}
.zd-tcar-track::-webkit-scrollbar { display: none; }

.zd-tcar-card {
    flex: 0 0 auto;
    width: clamp(180px, 15vw, 260px);
    scroll-snap-align: center;
    text-decoration: none;
    color: var(--zd-navy);
}

/* キャラを載せる縦長パネル（2:5） */
.zd-tcar-figure {
    position: relative;
    display: block;
    aspect-ratio: 2 / 5;
    border-radius: var(--zd-radius);
    overflow: hidden;
    background: linear-gradient(165deg, var(--c1) 0%, var(--c2) 100%);
    box-shadow: 0 14px 30px rgba(26, 27, 65, 0.18);
    transition: transform 0.45s var(--zd-ease), box-shadow 0.45s var(--zd-ease);
}
.zd-tcar-figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transition: transform 0.6s var(--zd-ease);
}

.zd-tcar-card:hover .zd-tcar-figure {
    transform: translateY(-10px);
    box-shadow: 0 22px 44px rgba(26, 27, 65, 0.28);
}
.zd-tcar-card:hover .zd-tcar-figure img { transform: scale(1.06); }

.zd-tcar-label {
    display: block;
    text-align: center;
    margin-top: 16px;
}
.zd-tcar-ja {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.3;
}
.zd-tcar-en {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #8A8DA5;
}

/* 左右の矢印 */
.zd-tcar-arrow,
.zd-tcar-arrow:hover,
.zd-tcar-arrow:focus,
.zd-tcar-arrow:focus-visible,
.zd-tcar-arrow:active {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--zd-navy);
    background-image: none;
    color: #fff;
    outline: none;

    /* 矢印を円の中心に置く */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 1.15rem;
    font-family: sans-serif;

    cursor: pointer;
    box-shadow: 0 8px 20px rgba(26, 27, 65, 0.3);
    transition: background-color 0.3s, transform 0.3s;
    transform: translateY(-50%);
}
.zd-tcar-arrow:hover,
.zd-tcar-arrow:focus-visible {
    background-color: var(--zd-cyan);
    transform: translateY(-50%) scale(1.08);
}
.zd-tcar-prev { left: 1.5vw; }
.zd-tcar-next { right: 1.5vw; }

/* スクロールしきれる件数のときは矢印を消して中央寄せ（JSが .is-static を付与） */
.zd-tcar.is-static .zd-tcar-arrow { display: none; }
.zd-tcar.is-static .zd-tcar-track {
    justify-content: center;
    overflow-x: visible;
}

@media (max-width: 768px) {
    /* 下に MOVIE セクションが続くので詰める */
    .zd-tcar { padding-bottom: 30px; }

    /* 在籍3名が1画面に収まる幅。人数が増えたら横スクロールになります */
    .zd-tcar-track {
        gap: 8px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .zd-tcar-card { width: calc((100% - 16px) / 3); }

    .zd-tcar-arrow,
    .zd-tcar-arrow:hover,
    .zd-tcar-arrow:focus,
    .zd-tcar-arrow:active {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .zd-tcar-prev { left: 2px; }
    .zd-tcar-next { right: 2px; }

    .zd-tcar-ja { font-size: .82rem; }
    .zd-tcar-en { font-size: .62rem; margin-top: 2px; }
    .zd-tcar-label { margin-top: 10px; }
}


/* ==========================================================
   2. タレント一覧ページ（固定ページ /talents/）
   ========================================================== */
.zd-talents-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 5vw 140px;
}

.zd-tp-head {
    text-align: center;
    margin-bottom: 80px;
}
/* 見出し（TALENTS / 所属タレント）はトップページと共通のスタイルです */
.zd-tp-lead {
    max-width: 680px;
    margin: 30px auto 0;
    font-size: 1rem;
    line-height: 2;
    font-weight: 500;
    color: var(--zd-navy);
}

/* 期の見出し（1期生 / 2期生 …） */
.zd-tp-group { margin-bottom: 90px; }
.zd-tp-group:last-child { margin-bottom: 0; }

.zd-tp-gen {
    position: relative;
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: var(--zd-navy);
    margin: 0 0 54px;
    padding-bottom: 16px;
}
.zd-tp-gen::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 54px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--zd-cyan), var(--zd-pink));
}

/* カードのグリッド（中央寄せ・横の間隔を広めに） */
.zd-tp-grid {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, 240px);
    justify-content: center;
    gap: 70px 80px;
}

.zd-tp-card {
    display: block;
    text-decoration: none;
    color: var(--zd-navy);
}

/* 色パネル。キャラの頭がここから上にはみ出す */
.zd-tp-figure {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    margin-top: 44px;              /* はみ出す分の逃げ */
    border-radius: var(--zd-radius);
    background: linear-gradient(150deg, var(--c1) 0%, var(--c2) 100%);
    box-shadow: 0 12px 28px rgba(26, 27, 65, 0.14);
    transition: transform 0.45s var(--zd-ease), box-shadow 0.45s var(--zd-ease);
}
.zd-tp-figure img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 118%;
    height: auto;
    transform: translateX(-50%);
    transform-origin: center bottom;
    transition: transform 0.5s var(--zd-ease);
    pointer-events: none;
}

.zd-tp-card:hover .zd-tp-figure {
    transform: translateY(-8px) rotate(-1.5deg);
    box-shadow: 0 20px 40px rgba(26, 27, 65, 0.24);
}
.zd-tp-card:hover .zd-tp-figure img {
    transform: translateX(-50%) scale(1.07) rotate(1.5deg);
}

.zd-tp-name {
    display: block;
    text-align: center;
    margin-top: 18px;
}
.zd-tp-ja {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.3;
}
.zd-tp-en {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #8A8DA5;
}

.zd-tp-empty {
    text-align: center;
    color: #8A8DA5;
}

@media (max-width: 768px) {
    .zd-talents-page { padding: 80px 5vw 100px; }
    .zd-tp-head { margin-bottom: 50px; }
    .zd-tp-group { margin-bottom: 60px; }
    .zd-tp-gen {
        font-size: 1.05rem;
        letter-spacing: 0.14em;
        margin-bottom: 34px;
        padding-bottom: 12px;
    }

    .zd-tp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 20px;
        max-width: 520px;
    }
    .zd-tp-figure { margin-top: 34px; }
    .zd-tp-ja { font-size: 1rem; }
}


/* ==========================================================
   3. タレント個別ページ
   ========================================================== */
.zd-talent-single {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 5vw 140px;
}

/* 装飾がわずかにはみ出しても横スクロールが起きないようにする保険。
   clip は position:fixed のヘッダーには影響しません */
body.single-talent {
    overflow-x: clip;
}

/* 画像・埋め込みが親をはみ出さないようにする */
.zd-talent-single img,
.zd-talent-single svg,
.zd-talent-single iframe {
    max-width: 100%;
}

/* --- ヒーロー（案A：ブーストトレイル） --- */
.zd-ts-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    padding: 40px 0 60px;
}

/* 背後を左下から右上へ抜ける加速の軌跡
   横方向のはみ出しは、外側の padding(5vw) を超えないようにしています
   （超えると画面が横スクロールできてしまうため） */
.zd-ts-trail {
    position: absolute;
    inset: -6% -4%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.zd-ts-trail svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 読み込み後に流れ込むアニメーション */
.zd-ts-trail path,
.zd-ts-trail g {
    opacity: 0;
    transform: translate(-40px, 26px);
    animation: zdTrailIn 1s var(--zd-ease) forwards;
}
.zd-tr-band2 { animation-delay: .06s; }
.zd-tr-line1 { animation-delay: .12s; }
.zd-tr-line2 { animation-delay: .18s; }
.zd-tr-chev1 { animation-delay: .30s; }
.zd-tr-chev2 { animation-delay: .38s; }

@keyframes zdTrailIn {
    to { opacity: 1; transform: translate(0, 0); }
}

.zd-ts-visual {
    position: relative;
    z-index: 3;          /* 巨大英字(.zd-ts-name-bg)より必ず手前 */
    display: flex;
    align-items: flex-end;
    gap: 22px;
}

/* 立ち絵の置き場所。背景パネルは持たない */
.zd-ts-stage {
    position: relative;
    flex: 1 1 auto;
    aspect-ratio: 2 / 3;
}

/* 足元の接地感 */
.zd-ts-stage::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 3%;
    transform: translateX(-50%);
    width: 60%;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, var(--c2) 0%, rgba(255,255,255,0) 70%);
    opacity: .32;
    filter: blur(5px);
    z-index: 0;
}

.zd-ts-stand {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.45s ease, transform 0.6s var(--zd-ease);
    pointer-events: none;
    filter: drop-shadow(8px 14px 26px rgba(26, 27, 65, 0.18));
}
.zd-ts-stand.is-active {
    opacity: 1;
    transform: scale(1);
}

/* 差分の切替アイコン */
.zd-ts-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 0 0 auto;
}
/* Elementor(reset.css)のbutton初期スタイル(#c36)を打ち消すため、
   hover / focus / active も明示的に指定しています */
.zd-ts-icon,
.zd-ts-icon:hover,
.zd-ts-icon:focus,
.zd-ts-icon:focus-visible,
.zd-ts-icon:active {
    width: 68px;
    height: 68px;
    padding: 0;
    border: 3px solid #E6E8F0;
    border-radius: 50%;
    background-color: #fff;
    background-image: none;
    color: inherit;
    box-shadow: none;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s, transform 0.3s var(--zd-ease), box-shadow 0.3s;
}
.zd-ts-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.zd-ts-icon:hover,
.zd-ts-icon:focus-visible {
    border-color: var(--c1);
    transform: scale(1.08);
}
.zd-ts-icon.is-active,
.zd-ts-icon.is-active:hover,
.zd-ts-icon.is-active:focus {
    border-color: var(--c2);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(26, 27, 65, 0.16);
}
/* キーボード操作時だけリングを出す */
.zd-ts-icon:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 207, 255, .35);
}

/* 名前の巨大英字（線画） */
.zd-ts-meta { position: relative; z-index: 2; }

.zd-ts-name-bg {
    position: absolute;
    right: -7%;
    bottom: calc(100% - 26px);
    z-index: -1;   /* .zd-ts-meta の内側で最背面。立ち絵は z-index:3 で手前 */
    pointer-events: none;
    font-family: 'Kanit', sans-serif;
    font-style: italic;
    font-weight: 900;

    /* 立ち絵と重なって先頭の文字が隠れないよう、小さめ＋右寄せにしています */
    font-size: min(7.6vw, 104px);

    line-height: .85;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px var(--c2);
    opacity: .3;
}

/* --- 名前まわり --- */
.zd-ts-gen {
    display: inline-block;
    margin: 0 0 20px;
    padding: 10px 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--c1), var(--c2));
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    box-shadow: 0 6px 16px rgba(26, 27, 65, 0.14);
}
.zd-ts-name {
    margin: 0;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--zd-navy);
}
.zd-ts-en {
    margin: 10px 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8A8DA5;
    text-transform: uppercase;
}
.zd-ts-catch {
    margin: 26px 0 0;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.9;
    color: var(--zd-navy);
}

.zd-ts-sns {
    list-style: none;
    margin: 34px 0 0;
    padding: 0;
    display: flex;
    gap: 12px;
}
.zd-ts-sns a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--zd-navy);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.3s, transform 0.3s;
}
.zd-ts-sns a:hover { background: var(--c2); transform: translateY(-3px); }
.zd-ts-sns svg { width: 16px; height: 16px; fill: currentColor; }

/* --- プロフィール --- */
.zd-ts-body { margin-top: 100px; }

.zd-ts-panel {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px clamp(24px, 5vw, 64px);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #EDEFF5;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(26, 27, 65, 0.07);
}

.zd-ts-h2 {
    margin: 0 0 30px;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    color: var(--zd-navy);
    position: relative;
    padding-bottom: 14px;
}
.zd-ts-h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 76px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--c2), var(--zd-pink));
}

.zd-ts-spec {
    margin: 0 0 36px;
    display: grid;
    gap: 0;
}
.zd-ts-spec > div {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px dashed #E2E5EF;
}
.zd-ts-spec dt {
    flex: 0 0 110px;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #8A8DA5;
    letter-spacing: 0.08em;
}
.zd-ts-spec dd {
    margin: 0;
    font-weight: 700;
    color: var(--zd-navy);
}

.zd-ts-text,
.zd-ts-free {
    font-size: 1rem;
    line-height: 2.1;
    font-weight: 500;
    color: var(--zd-navy);
}
.zd-ts-free { margin-top: 28px; }

/* --- 前後ナビ（画像つき） --- */
.zd-ts-nav {
    margin-top: 90px;
    display: grid;
    /* 1行目に PREV / NEXT を中央寄せ、2行目に ALL TALENTS */
    grid-template-columns: repeat(2, minmax(0, 330px));
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}
.zd-ts-nav a { text-decoration: none; color: var(--zd-navy); }

.zd-ts-nav-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #EDEFF5;
    transition: transform 0.4s var(--zd-ease), box-shadow 0.4s var(--zd-ease), border-color 0.3s;
}
.zd-ts-nav-link:hover {
    transform: translateY(-4px);
    border-color: var(--c2);
    box-shadow: 0 16px 34px rgba(26, 27, 65, 0.14);
}

/* NEXT は右揃え・並びを反転 */
.zd-ts-nav-next {
    flex-direction: row-reverse;
    text-align: right;
}

/* キャラのサムネイル */
.zd-ts-nav-thumb {
    position: relative;
    flex: 0 0 auto;
    width: 82px;
    height: 82px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(150deg, var(--c1) 0%, var(--c2) 100%);
}
.zd-ts-nav-thumb img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 118%;
    height: auto;
    transform: translateX(-50%);
    transition: transform 0.5s var(--zd-ease);
}
.zd-ts-nav-link:hover .zd-ts-nav-thumb img {
    transform: translateX(-50%) scale(1.08);
}

.zd-ts-nav-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.zd-ts-nav-label {
    font-family: 'Kanit', sans-serif;
    font-style: italic;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #9497AE;
}
.zd-ts-nav-name {
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.3;
    transition: color 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.zd-ts-nav-en {
    font-family: 'Kanit', sans-serif;
    font-style: italic;
    font-size: 0.72rem;
    font-weight: 600;
    color: #9497AE;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.zd-ts-nav-link:hover .zd-ts-nav-name { color: var(--c2); }

.zd-ts-nav-all {
    /* 常に2行目・中央 */
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 14px;

    padding: 16px 46px;
    border-radius: 999px;
    background: var(--zd-navy);
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}
.zd-ts-nav-all:hover { background: var(--zd-cyan); transform: translateY(-3px); }


@media (max-width: 900px) {
    .zd-talent-single { padding: 70px 5vw 100px; }

    .zd-ts-hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 20px 0 40px;
    }
    .zd-ts-trail { inset: -4% -5%; }
    .zd-ts-name-bg { display: none; }
    .zd-ts-visual {
        flex-direction: column-reverse;
        align-items: center;
        gap: 18px;
    }
    .zd-ts-stage { width: 100%; }

    .zd-ts-icons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .zd-ts-icon { width: 56px; height: 56px; border-width: 2px; }

    .zd-ts-meta { text-align: center; }
    .zd-ts-sns { justify-content: center; }

    .zd-ts-body { margin-top: 60px; }
    .zd-ts-panel { padding: 36px 22px; }
    .zd-ts-h2 { font-size: 1.5rem; }
    .zd-ts-h2::after { left: 50%; transform: translateX(-50%); }
    .zd-ts-h2 { text-align: center; }
    .zd-ts-spec dt { flex-basis: 84px; }

    .zd-ts-nav {
        margin-top: 60px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .zd-ts-nav-all { margin-top: 8px; padding: 15px 32px; }
    .zd-ts-nav-link {
        gap: 12px;
        padding: 12px 14px;
        border-radius: 12px;
    }
    .zd-ts-nav-thumb { width: 62px; height: 62px; border-radius: 10px; }
    .zd-ts-nav-name { font-size: 0.92rem; }
    .zd-ts-nav-en { font-size: 0.66rem; }
    .zd-ts-nav-label { font-size: 0.7rem; }


}

@media (prefers-reduced-motion: reduce) {
    .zd-tcar-card:hover .zd-tcar-figure,
    .zd-tp-card:hover .zd-tp-figure,
    .zd-tp-card:hover .zd-tp-figure img { transform: none; }
    .zd-tcar-track { scroll-behavior: auto; }

    .zd-ts-trail path,
    .zd-ts-trail g {
        animation: none;
        opacity: 1;
        transform: none;
    }
}