/* TYT Knowledge frontend views - v0.8.45 Cluster Navigation row-locked layout */
.tyt-view,
.tyt-view * { box-sizing: border-box; }

.tyt-view {
    width: 100%;
    clear: both;
    margin: 32px auto;
}

/* Shared Hero Navigation: mirrors the TYT homepage hero. */
.tyt-view--target-pillar {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1220px, calc(100vw - 40px));
    max-width: none !important;
    margin: 42px 0 48px !important;
    padding: 56px 48px 48px !important;
    border-radius: 36px;
    background: linear-gradient(135deg, #7F3D7A, #B0578F);
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(57, 74, 84, 0.16);
    overflow: hidden;
}

.tyt-view__heading {
    margin: 0 0 18px !important;
    color: #394A54;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.tyt-view--target-pillar .tyt-view__heading {
    max-width: 860px;
    margin: 0 0 18px !important;
    color: #ffffff !important;
    font-size: clamp(42px, 6vw, 72px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
    font-weight: 800 !important;
}

.tyt-view__intro {
    max-width: 760px;
    margin: 0 0 40px !important;
    color: #ffffff !important;
    font-size: 21px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}

.tyt-view__items {
    display: grid !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    align-items: stretch;
    gap: 24px;
}

.tyt-view--cols-1 .tyt-view__items { grid-template-columns: 1fr; }
.tyt-view--cols-2 .tyt-view__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tyt-view--cols-3 .tyt-view__items { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tyt-view--cols-4 .tyt-view__items { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.tyt-view--target-pillar .tyt-view__items,
.tyt-view--target-pillar.tyt-view--cols-4 .tyt-view__items,
.tyt-view--target-pillar .tyt-view__items--primary,
.tyt-view--target-pillar .tyt-view__items--extra {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.tyt-view-card {
    position: relative;
    display: flex !important;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    min-height: 230px;
    margin: 0 !important;
    padding: 30px 26px 76px !important;
    float: none !important;
    clear: none !important;
    background: #ffffff !important;
    color: #394A54 !important;
    text-decoration: none !important;
    border: 0 !important;
    border-radius: 26px;
    box-shadow: 0 14px 32px rgba(57, 74, 84, 0.14);
    transition: transform .22s ease, box-shadow .22s ease;
    overflow: hidden;
}

.tyt-view-card:hover,
.tyt-view-card:focus {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(57, 74, 84, 0.20);
    color: #394A54 !important;
    outline: none;
}

.tyt-view-card__title {
    display: block;
    margin: 0 0 14px !important;
    color: #394A54 !important;
    font-size: 23px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    letter-spacing: normal !important;
}

.tyt-view-card__description {
    display: block;
    margin: 0 !important;
    color: #4A5568 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}

.tyt-view-card__arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #E6E6E6;
    color: #394A54;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(57, 74, 84, 0.08);
    transition: transform .22s ease, box-shadow .22s ease;
}

.tyt-view-card:hover .tyt-view-card__arrow,
.tyt-view-card:focus .tyt-view-card__arrow {
    transform: translateX(4px);
    box-shadow: 0 10px 22px rgba(57, 74, 84, 0.14);
}

.tyt-view__reveal-wrap {
    display: flex;
    justify-content: center;
    margin: 28px 0 0 !important;
}

.tyt-view__reveal {
    appearance: none;
    border: 0;
    border-radius: 18px;
    background: #ffffff;
    color: #394A54;
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
    padding: 17px 28px;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(57, 74, 84, 0.16);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.tyt-view__reveal::after {
    content: "⌄";
    display: inline-block;
    margin-left: 12px;
    font-size: 20px;
    line-height: 0;
    transform: translateY(-1px);
}

.tyt-view--expanded .tyt-view__reveal::after { transform: rotate(180deg) translateY(1px); }

.tyt-view__reveal:hover,
.tyt-view__reveal:focus {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(57, 74, 84, 0.20);
    outline: none;
}

.tyt-view__items--extra {
    display: none !important;
    margin-top: 28px !important;
    padding-top: 30px !important;
    border-top: 1px solid rgba(255,255,255,.38);
}

.tyt-view--expanded .tyt-view__items--extra { display: grid !important; }

.tyt-view:not(.tyt-view--expanded) .tyt-view__items--extra,
.tyt-view .tyt-view__items--extra[hidden] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

/* Contextual Cluster Navigation: compact in-article navigation from Pillar to Blueprint Clusters. */
.tyt-view--target-cluster {
    position: relative;
    left: auto !important;
    transform: none !important;
    width: min(1220px, calc(100vw - 40px)) !important;
    max-width: 1220px !important;
    margin: 72px auto !important;
    padding: 8px 0 24px !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.tyt-view--target-cluster .tyt-view__eyebrow {
    display: none !important;
}

.tyt-view--target-cluster .tyt-view__heading {
    max-width: 900px;
    margin: 0 0 16px !important;
    text-align: left;
    color: #394A54 !important;
    font-size: clamp(30px, 3.2vw, 44px) !important;
    line-height: 1.12 !important;
    font-weight: 700 !important;
    letter-spacing: -0.035em !important;
}

.tyt-view--target-cluster .tyt-view__intro--cluster {
    max-width: 820px;
    margin: 0 0 42px !important;
    text-align: left;
    color: #4A5568 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

.tyt-view--target-cluster .tyt-view__items,
.tyt-view--target-cluster.tyt-view--cols-3 .tyt-view__items,
.tyt-view--target-cluster .tyt-view__items--primary,
.tyt-view--target-cluster .tyt-view__items--extra {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px 32px !important;
    align-items: stretch !important;
    justify-items: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.tyt-view--target-cluster .tyt-view-card,
.tyt-view--target-cluster .tyt-view-card:nth-child(n) {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;
    flex: initial !important;
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    min-height: 150px !important;
    margin: 0 !important;
    padding: 30px 84px 30px 36px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1px solid rgba(57, 74, 84, 0.06) !important;
    box-shadow: 0 12px 28px rgba(57, 74, 84, 0.08) !important;
    float: none !important;
    clear: none !important;
}

.tyt-view--target-cluster .tyt-view-card:hover,
.tyt-view--target-cluster .tyt-view-card:focus {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 34px rgba(57, 74, 84, 0.12) !important;
}

.tyt-view--target-cluster .tyt-view-card__title {
    display: block;
    min-width: 0;
    margin: 0 !important;
    color: #394A54 !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
    font-weight: 650 !important;
    letter-spacing: -0.015em !important;
}

.tyt-view--target-cluster .tyt-view-card__description { display: none !important; }

.tyt-view--target-cluster .tyt-view-card__arrow {
    right: 28px !important;
    bottom: 50% !important;
    transform: translateY(50%) !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
}

.tyt-view--target-cluster .tyt-view-card:hover .tyt-view-card__arrow,
.tyt-view--target-cluster .tyt-view-card:focus .tyt-view-card__arrow {
    transform: translateY(50%) translateX(4px) !important;
}

.tyt-view--target-cluster .tyt-view__reveal-wrap { margin-top: 42px !important; }

.tyt-view--target-cluster .tyt-view__reveal {
    background: #E2E5E8 !important;
    color: #394A54 !important;
    box-shadow: none !important;
}

.tyt-view--target-cluster .tyt-view__reveal:hover,
.tyt-view--target-cluster .tyt-view__reveal:focus {
    background: #D7DBDF !important;
    box-shadow: none !important;
}

.tyt-view--target-cluster .tyt-view__items--extra {
    border-top: 0 !important;
    margin-top: 28px !important;
    padding-top: 0 !important;
}

.tyt-view-empty {
    border: 1px dashed rgba(158, 90, 146, 0.45);
    background: #ffffff;
    color: #394A54;
    padding: 18px 20px;
    border-radius: 22px;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.6;
}

@media (min-width: 901px) {
    .tyt-view--target-pillar .tyt-view__items,
    .tyt-view--target-pillar.tyt-view--cols-4 .tyt-view__items,
    .tyt-view--target-pillar .tyt-view__items--primary,
    .tyt-view--target-pillar .tyt-view__items--extra {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 701px) and (max-width: 900px) {
    .tyt-view--target-pillar .tyt-view__items,
    .tyt-view--target-pillar.tyt-view--cols-4 .tyt-view__items,
    .tyt-view--target-pillar .tyt-view__items--primary,
    .tyt-view--target-pillar .tyt-view__items--extra {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}

@media (max-width: 700px) {
    .tyt-view { margin: 20px auto; }

    .tyt-view--target-pillar {
        width: calc(100vw - 24px);
        margin-top: 26px !important;
        margin-bottom: 34px !important;
        padding: 34px 16px 28px !important;
        border-radius: 26px;
    }

    .tyt-view--target-pillar .tyt-view__heading {
        font-size: 42px !important;
        letter-spacing: -0.035em !important;
        margin-bottom: 18px !important;
    }

    .tyt-view__intro {
        font-size: 17px !important;
        margin-bottom: 28px !important;
    }

    .tyt-view__items,
    .tyt-view--target-pillar .tyt-view__items,
    .tyt-view--target-pillar.tyt-view--cols-4 .tyt-view__items,
    .tyt-view--target-pillar .tyt-view__items--primary {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .tyt-view-card {
        min-height: auto;
        padding: 26px 22px 72px !important;
    }

    .tyt-view-card__title { font-size: 22px !important; }

    .tyt-view__reveal {
        width: 100%;
        padding: 16px 20px;
    }

    .tyt-view--target-cluster {
        width: auto !important;
        max-width: none !important;
        margin: 56px -12px !important;
        padding: 42px 16px !important;
    }

    .tyt-view--target-cluster .tyt-view__heading {
        font-size: 34px !important;
        margin-bottom: 16px !important;
    }

    .tyt-view--target-cluster .tyt-view__intro--cluster {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }

    .tyt-view--target-cluster .tyt-view-card,
    .tyt-view--target-cluster .tyt-view-card:nth-child(n) {
        min-height: auto !important;
        padding: 26px 70px 26px 26px !important;
        border-radius: 14px;
    }

    .tyt-view--target-cluster .tyt-view-card__title { font-size: 21px !important; }
}


@media (max-width: 760px) {
    .tyt-view--target-cluster .tyt-view__items,
    .tyt-view--target-cluster.tyt-view--cols-3 .tyt-view__items,
    .tyt-view--target-cluster .tyt-view__items--primary,
    .tyt-view--target-cluster .tyt-view__items--extra {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
}


/* v0.8.42: Cluster Navigation hard layout isolation.
   The shortcode can be rendered inside narrow/odd block-template wrappers, so this uses
   a dedicated component class and resets child anchor sizing aggressively. */
.tyt-cluster-nav {
    max-width: 1220px !important;
    width: min(1220px, calc(100vw - 40px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: #ffffff !important;
}
.tyt-cluster-nav .tyt-cluster-nav__grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}
.tyt-cluster-nav .tyt-cluster-nav__grid > .tyt-view-card {
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}
.tyt-cluster-nav .tyt-view-card__title {
    font-weight: 500 !important;
}
@media (max-width: 900px) {
    .tyt-cluster-nav .tyt-cluster-nav__grid {
        grid-template-columns: 1fr !important;
    }
}

/* v0.8.43: Cluster Navigation v2 — isolated production component.
   This replaces the inherited .tyt-view cluster layout so WordPress block/template
   wrappers cannot force the 2/1/2/1 card pattern. */
.tyt-cluster-nav-v2,
.tyt-cluster-nav-v2 * {
    box-sizing: border-box !important;
}

.tyt-cluster-nav-v2 {
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(1220px, calc(100vw - 40px)) !important;
    max-width: 1220px !important;
    margin: 72px 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    clear: both !important;
}

.tyt-cluster-nav-v2__heading {
    max-width: 900px !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    color: #394A54 !important;
    font-size: clamp(28px, 3vw, 38px) !important;
    line-height: 1.14 !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    text-align: left !important;
}

.tyt-cluster-nav-v2__intro {
    max-width: 760px !important;
    margin: 0 0 36px !important;
    padding: 0 !important;
    color: #4A5568 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    text-align: left !important;
}

.tyt-cluster-nav-v2__grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
    justify-items: stretch !important;
}

.tyt-cluster-nav-v2__grid[hidden] {
    display: none !important;
}

.tyt-cluster-nav-v2__card {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 116px !important;
    margin: 0 !important;
    padding: 26px 78px 26px 30px !important;
    float: none !important;
    clear: none !important;
    grid-column: auto !important;
    grid-row: auto !important;
    background: #ffffff !important;
    color: #394A54 !important;
    text-decoration: none !important;
    border: 1px solid rgba(57,74,84,0.06) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 24px rgba(57, 74, 84, 0.08) !important;
    transition: transform .22s ease, box-shadow .22s ease !important;
    overflow: hidden !important;
}

.tyt-cluster-nav-v2__card:hover,
.tyt-cluster-nav-v2__card:focus {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 34px rgba(57, 74, 84, 0.12) !important;
    color: #394A54 !important;
    outline: none !important;
}

.tyt-cluster-nav-v2__card-title {
    display: block !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #394A54 !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
    text-align: left !important;
}

.tyt-cluster-nav-v2__arrow {
    position: absolute !important;
    right: 24px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: inline-flex !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid #E6E6E6 !important;
    color: #394A54 !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: 0 8px 18px rgba(57, 74, 84, 0.08) !important;
    transition: transform .22s ease, box-shadow .22s ease !important;
}

.tyt-cluster-nav-v2__card:hover .tyt-cluster-nav-v2__arrow,
.tyt-cluster-nav-v2__card:focus .tyt-cluster-nav-v2__arrow {
    transform: translateY(-50%) translateX(4px) !important;
    box-shadow: 0 10px 22px rgba(57, 74, 84, 0.14) !important;
}

.tyt-cluster-nav-v2__reveal-wrap {
    display: flex !important;
    justify-content: center !important;
    margin: 34px 0 0 !important;
}

.tyt-cluster-nav-v2__reveal {
    appearance: none !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: #E2E5E8 !important;
    color: #394A54 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    padding: 16px 28px !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: transform .2s ease, background .2s ease !important;
}

.tyt-cluster-nav-v2__reveal:hover,
.tyt-cluster-nav-v2__reveal:focus {
    background: #D7DBDF !important;
    transform: translateY(-1px) !important;
    outline: none !important;
}

.tyt-cluster-nav-v2__grid--extra {
    margin-top: 26px !important;
}

@media (max-width: 900px) {
    .tyt-cluster-nav-v2__grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
}

@media (max-width: 700px) {
    .tyt-cluster-nav-v2 {
        width: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 56px -12px !important;
        padding: 0 12px !important;
    }

    .tyt-cluster-nav-v2__heading {
        font-size: 30px !important;
    }

    .tyt-cluster-nav-v2__intro {
        font-size: 16px !important;
        margin-bottom: 28px !important;
    }

    .tyt-cluster-nav-v2__card {
        min-height: auto !important;
        padding: 24px 70px 24px 24px !important;
        border-radius: 18px !important;
    }

    .tyt-cluster-nav-v2__card-title {
        font-size: 19px !important;
    }
}


/* v0.8.45: Cluster Navigation v3 — row-locked 3-card layout.
   The previous grid was visually correct but some template/block output still
   flowed as 2/1/2/1. This layout groups cards into explicit rows of three so
   desktop cannot reflow into uneven rows. */
.tyt-cluster-nav-v3,
.tyt-cluster-nav-v3 * {
    box-sizing: border-box !important;
}

.tyt-cluster-nav-v3 {
    width: min(1220px, calc(100vw - 40px)) !important;
    max-width: 1220px !important;
    margin: 72px auto !important;
    padding: 0 !important;
    background: #ffffff !important;
    border: 0 !important;
    box-shadow: none !important;
    clear: both !important;
}

.tyt-cluster-nav-v3__heading {
    max-width: 900px !important;
    margin: 0 0 12px !important;
    color: #394A54 !important;
    font-size: clamp(26px, 2.5vw, 34px) !important;
    line-height: 1.16 !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    text-align: left !important;
}

.tyt-cluster-nav-v3__intro {
    max-width: 760px !important;
    margin: 0 0 32px !important;
    color: #4A5568 !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
    text-align: left !important;
}

.tyt-cluster-nav-v3__rows {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.tyt-cluster-nav-v3__row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    align-items: stretch !important;
}

.tyt-cluster-nav-v3__row:last-child {
    margin-bottom: 0 !important;
}

.tyt-cluster-nav-v3__card {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 104px !important;
    margin: 0 !important;
    padding: 24px 72px 24px 28px !important;
    float: none !important;
    clear: none !important;
    background: #ffffff !important;
    color: #394A54 !important;
    text-decoration: none !important;
    border: 1px solid rgba(57,74,84,0.06) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 24px rgba(57, 74, 84, 0.08) !important;
    transition: transform .22s ease, box-shadow .22s ease !important;
    overflow: hidden !important;
}

.tyt-cluster-nav-v3__card:hover,
.tyt-cluster-nav-v3__card:focus {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 34px rgba(57, 74, 84, 0.12) !important;
    color: #394A54 !important;
    outline: none !important;
}

.tyt-cluster-nav-v3__card-title {
    display: block !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #394A54 !important;
    font-size: 19px !important;
    line-height: 1.28 !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
    text-align: left !important;
}

.tyt-cluster-nav-v3__arrow {
    position: absolute !important;
    right: 22px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid #E6E6E6 !important;
    color: #394A54 !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: 0 8px 18px rgba(57, 74, 84, 0.08) !important;
    transition: transform .22s ease, box-shadow .22s ease !important;
}

.tyt-cluster-nav-v3__card:hover .tyt-cluster-nav-v3__arrow,
.tyt-cluster-nav-v3__card:focus .tyt-cluster-nav-v3__arrow {
    transform: translateY(-50%) translateX(4px) !important;
    box-shadow: 0 10px 22px rgba(57, 74, 84, 0.14) !important;
}

.tyt-cluster-nav-v3__reveal-wrap {
    display: flex !important;
    justify-content: center !important;
    margin: 34px 0 0 !important;
}

.tyt-cluster-nav-v3__reveal {
    appearance: none !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: #E2E5E8 !important;
    color: #394A54 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    padding: 16px 28px !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: transform .2s ease, background .2s ease !important;
}

.tyt-cluster-nav-v3__reveal:hover,
.tyt-cluster-nav-v3__reveal:focus {
    background: #D7DBDF !important;
    transform: translateY(-1px) !important;
    outline: none !important;
}

.tyt-cluster-nav-v3__extra[hidden] {
    display: none !important;
}

.tyt-cluster-nav-v3__extra {
    margin-top: 20px !important;
}

@media (max-width: 760px) {
    .tyt-cluster-nav-v3 {
        width: auto !important;
        margin: 56px -12px !important;
        padding: 0 12px !important;
    }

    .tyt-cluster-nav-v3__heading {
        font-size: 28px !important;
    }

    .tyt-cluster-nav-v3__intro {
        font-size: 16px !important;
        margin-bottom: 26px !important;
    }

    .tyt-cluster-nav-v3__row {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-bottom: 14px !important;
    }

    .tyt-cluster-nav-v3__card {
        min-height: auto !important;
        padding: 23px 68px 23px 24px !important;
        border-radius: 18px !important;
    }

    .tyt-cluster-nav-v3__card-title {
        font-size: 18px !important;
    }
}

/* v0.8.45: inline-locked Cluster Navigation based on the working homepage card pattern. */
.tyt-depth-nav,
.tyt-depth-nav * {
    box-sizing: border-box;
}
.tyt-depth-nav__card:hover,
.tyt-depth-nav__card:focus {
    transform: translateY(-4px) !important;
    box-shadow: 0 18px 40px rgba(57,74,84,0.14) !important;
    color: #394A54 !important;
    outline: none !important;
}
.tyt-depth-nav__card:hover .tyt-depth-nav__arrow,
.tyt-depth-nav__card:focus .tyt-depth-nav__arrow {
    transform: translateY(-50%) translateX(4px) !important;
}
.tyt-depth-nav__reveal:hover,
.tyt-depth-nav__reveal:focus {
    background: #D7DBDF !important;
    transform: translateY(-1px) !important;
    outline: none !important;
}
@media (max-width: 900px) {
    .tyt-depth-nav__grid {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 700px) {
    .tyt-depth-nav {
        margin: 56px auto !important;
        padding: 0 4px !important;
    }
    .tyt-depth-nav__heading h2 {
        font-size: 26px !important;
    }
    .tyt-depth-nav__heading p {
        font-size: 16px !important;
    }
    .tyt-depth-nav__card {
        min-height: auto !important;
        padding: 24px 70px 24px 24px !important;
        border-radius: 22px !important;
    }
    .tyt-depth-nav__card-title {
        font-size: 18px !important;
    }
}

/* TYT Cluster Navigation: protect shortcode output from wpautop/<br> grid items */
.tyt-depth-nav__grid > br,
.tyt-depth-nav__card > br,
.tyt-depth-nav__card-title > br,
.tyt-depth-nav__arrow > br {
  display: none !important;
}
.tyt-depth-nav__grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.tyt-depth-nav__grid > .tyt-depth-nav__card {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}
@media (max-width: 900px) {
  .tyt-depth-nav__grid { grid-template-columns: 1fr !important; }
}

/* TYT Resource Intelligence front-end rendering */
.tyt-resource {
    box-sizing: border-box;
    margin: 28px 0;
    border-radius: 22px;
    border: 1px solid rgba(0,48,63,.10);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(0,48,63,.08);
    overflow: hidden;
}
.tyt-resource-card {
    display: grid;
    grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
    gap: 0;
}
.tyt-resource-image {
    min-height: 100%;
    background: #EDEDED;
}
.tyt-resource-image img,
.tyt-resource-banner-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tyt-resource-body,
.tyt-resource-banner-content {
    padding: 24px;
}
.tyt-resource-eyebrow {
    margin: 0 0 8px !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9E5A92;
}
.tyt-resource h3 {
    margin: 0 0 10px !important;
    font-size: clamp(20px, 2.3vw, 26px);
    line-height: 1.2;
    color: #00303F;
}
.tyt-resource p {
    color: #243f48;
}
.tyt-resource-asset-name {
    margin-top: -4px !important;
    font-weight: 700;
    color: #00303F !important;
}
.tyt-resource-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #9E5A92;
    color: #fff !important;
    font-weight: 800;
    text-decoration: none !important;
}
.tyt-resource-button:hover,
.tyt-resource-button:focus {
    filter: brightness(.95);
    color: #fff !important;
}
.tyt-resource-disclosure {
    margin: 12px 0 0 !important;
    font-size: 12px;
    line-height: 1.45;
    color: #5d7077 !important;
}
.tyt-resource-banner {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    background: linear-gradient(135deg, #ffffff 0%, #f7eef5 100%);
}
.tyt-resource-inline {
    box-shadow: none;
    border-left: 5px solid #9E5A92;
}
.tyt-resource-sidebar-card {
    display: block;
}
.tyt-resource-footer {
    background: #f7f4f7;
}
.tyt-resource-download {
    border-style: dashed;
}
.tyt-resource-cta-wrap {
    margin: 20px 0;
}
.tyt-resource-recommendations {
    margin: 30px 0;
}
@media (max-width: 700px) {
    .tyt-resource-card,
    .tyt-resource-banner {
        grid-template-columns: 1fr;
    }
    .tyt-resource-image,
    .tyt-resource-banner-image {
        max-height: 220px;
    }
    .tyt-resource-body,
    .tyt-resource-banner-content {
        padding: 20px;
    }
}

/* TYT Resource Intelligence front-end styling v0.9.5 */
:root {
    --tyt-resource-purple: #9E5A92;
    --tyt-resource-navy: #00303F;
    --tyt-resource-teal: #0389AA;
    --tyt-resource-gold: #DCAE1D;
    --tyt-resource-soft: #fbf7fa;
    --tyt-resource-border: rgba(158, 90, 146, .18);
}

.tyt-resource {
    position: relative;
    box-sizing: border-box;
    margin: 32px 0 !important;
    border-radius: 24px !important;
    border: 1px solid var(--tyt-resource-border) !important;
    background: #fff !important;
    box-shadow: 0 18px 45px rgba(0, 48, 63, .09) !important;
    overflow: hidden !important;
    isolation: isolate;
}

.tyt-resource::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(180deg, var(--tyt-resource-purple), var(--tyt-resource-teal));
    z-index: 1;
}

.tyt-resource-card {
    display: grid !important;
    grid-template-columns: minmax(0, 190px) minmax(0, 1fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
}

.tyt-resource-card:not(:has(.tyt-resource-image)) {
    grid-template-columns: 1fr !important;
}

.tyt-resource-image {
    min-height: 210px !important;
    background: linear-gradient(135deg, #f8f1f6 0%, #eef8fb 100%) !important;
}

.tyt-resource-image img,
.tyt-resource-banner-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.tyt-resource-body,
.tyt-resource-banner-content {
    position: relative;
    z-index: 2;
    padding: 28px 30px 28px 34px !important;
}

.tyt-resource-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 12px !important;
    padding: 6px 11px !important;
    border-radius: 999px !important;
    background: #fbf7fa !important;
    color: var(--tyt-resource-purple) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.tyt-resource h3 {
    margin: 0 0 10px !important;
    color: var(--tyt-resource-navy) !important;
    font-size: clamp(21px, 2vw, 27px) !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    letter-spacing: -.02em !important;
}

.tyt-resource p {
    max-width: 68ch !important;
    margin-top: 0 !important;
    color: #294b55 !important;
    font-size: 16px !important;
    line-height: 1.62 !important;
}

.tyt-resource-asset-name {
    margin: 0 0 10px !important;
    color: #5b2f55 !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    line-height: 1.45 !important;
}

.tyt-resource-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    margin-top: 6px !important;
    padding: 12px 20px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--tyt-resource-purple), #84477b) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-decoration: none !important;
    box-shadow: 0 10px 22px rgba(158, 90, 146, .22) !important;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
}

.tyt-resource-button::after {
    content: "→";
    margin-left: 8px;
    font-weight: 900;
}

.tyt-resource-button:hover,
.tyt-resource-button:focus {
    color: #fff !important;
    filter: brightness(.98) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 13px 26px rgba(158, 90, 146, .28) !important;
}

.tyt-resource-disclosure {
    max-width: 72ch !important;
    margin: 14px 0 0 !important;
    color: #657982 !important;
    font-size: 12.5px !important;
    line-height: 1.5 !important;
}

.tyt-resource-banner {
    display: grid !important;
    grid-template-columns: minmax(0, 230px) minmax(0, 1fr) !important;
    align-items: stretch !important;
    background: linear-gradient(135deg, #fff 0%, #fbf7fa 52%, #edf8fb 100%) !important;
}

.tyt-resource-banner::before {
    width: 8px;
}

.tyt-resource-banner-image {
    display: block !important;
    min-height: 210px !important;
    background: #f4edf3 !important;
}

.tyt-resource-inline {
    display: block !important;
    box-shadow: none !important;
    background: #fbf7fa !important;
    border-color: rgba(158, 90, 146, .24) !important;
}

.tyt-resource-inline::before {
    width: 6px;
}

.tyt-resource-sidebar-card {
    display: block !important;
    border-radius: 20px !important;
}

.tyt-resource-sidebar-card .tyt-resource-body {
    padding: 24px 24px 24px 28px !important;
}

.tyt-resource-sidebar-card h3 {
    font-size: 21px !important;
}

.tyt-resource-footer {
    background: linear-gradient(135deg, #fbf7fa, #fff) !important;
}

.tyt-resource-download {
    border-style: dashed !important;
    border-width: 2px !important;
    background: #fffefa !important;
}

.tyt-resource-download::before {
    background: var(--tyt-resource-gold) !important;
}

.tyt-resource-cta-wrap {
    margin: 24px 0 !important;
}

.tyt-resource-cta-wrap + .tyt-resource-disclosure {
    margin-top: -12px !important;
}

.tyt-resource-recommendations {
    display: grid !important;
    gap: 18px !important;
    margin: 34px 0 !important;
}

@media (max-width: 760px) {
    .tyt-resource {
        margin: 26px 0 !important;
        border-radius: 20px !important;
    }

    .tyt-resource-card,
    .tyt-resource-banner {
        grid-template-columns: 1fr !important;
    }

    .tyt-resource-image,
    .tyt-resource-banner-image {
        min-height: 180px !important;
        max-height: 240px !important;
    }

    .tyt-resource-body,
    .tyt-resource-banner-content {
        padding: 24px 22px 24px 28px !important;
    }

    .tyt-resource h3 {
        font-size: 22px !important;
    }

    .tyt-resource p {
        font-size: 15.5px !important;
    }

    .tyt-resource-button {
        width: 100% !important;
    }
}


/* TYT Resource Intelligence front-end polish v0.9.6
   - Removes coloured left border treatment
   - Locks Resource Intelligence purple to #9E5A92
   - Adds first Continue Your Journey panel foundation
*/
:root {
    --tyt-resource-purple: #9E5A92;
    --tyt-resource-purple-dark: #7F3D7A;
    --tyt-resource-purple-light: #C97BBC;
    --tyt-resource-charcoal: #394A54;
    --tyt-resource-body: #4A5568;
    --tyt-resource-grey: #F4F5F7;
    --tyt-resource-orange: #F77A3D;
    --tyt-resource-border: rgba(57, 74, 84, .10);
    --tyt-resource-shadow: 0 14px 32px rgba(57, 74, 84, 0.12);
}

.tyt-resource::before,
.tyt-resource-banner::before,
.tyt-resource-inline::before,
.tyt-resource-download::before {
    display: none !important;
    content: none !important;
}

.tyt-resource {
    border: 1px solid var(--tyt-resource-border) !important;
    box-shadow: var(--tyt-resource-shadow) !important;
    border-radius: 26px !important;
    background: #fff !important;
}

.tyt-resource-card {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr) !important;
}

.tyt-resource-image {
    background: linear-gradient(135deg, #F4F5F7 0%, rgba(158, 90, 146, .08) 100%) !important;
}

.tyt-resource-body,
.tyt-resource-banner-content {
    padding: 30px 32px !important;
}

.tyt-resource-eyebrow {
    background: rgba(158, 90, 146, .10) !important;
    color: var(--tyt-resource-purple) !important;
    border: 1px solid rgba(158, 90, 146, .14) !important;
}

.tyt-resource h3 {
    color: var(--tyt-resource-charcoal) !important;
}

.tyt-resource p {
    color: var(--tyt-resource-body) !important;
}

.tyt-resource-asset-name {
    color: var(--tyt-resource-purple) !important;
}

.tyt-resource-button {
    border-radius: 20px !important;
    background: linear-gradient(135deg, var(--tyt-resource-purple), var(--tyt-resource-purple-dark)) !important;
    box-shadow: 0 12px 24px rgba(158, 90, 146, .24) !important;
}

.tyt-resource-button:hover,
.tyt-resource-button:focus {
    box-shadow: 0 16px 30px rgba(158, 90, 146, .30) !important;
}

.tyt-resource-banner,
.tyt-resource-footer {
    background: linear-gradient(135deg, #fff 0%, rgba(158, 90, 146, .06) 100%) !important;
}

.tyt-resource-inline {
    background: #fff !important;
    border-color: var(--tyt-resource-border) !important;
    box-shadow: var(--tyt-resource-shadow) !important;
}

.tyt-resource-download {
    border-style: solid !important;
    border-width: 1px !important;
    background: #fff !important;
}

.tyt-journey-panel {
    margin: 44px 0 !important;
    padding: clamp(26px, 4vw, 40px) !important;
    border-radius: 34px !important;
    background: linear-gradient(135deg, rgba(158, 90, 146, .10) 0%, #F4F5F7 100%) !important;
    box-shadow: 0 14px 32px rgba(57, 74, 84, .10) !important;
    box-sizing: border-box !important;
}

.tyt-journey-panel-header {
    max-width: 760px !important;
    margin: 0 0 24px !important;
}

.tyt-journey-kicker {
    display: inline-flex !important;
    margin: 0 0 10px !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: var(--tyt-resource-purple) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.tyt-journey-panel h2 {
    margin: 0 0 10px !important;
    color: var(--tyt-resource-charcoal) !important;
    font-size: clamp(26px, 3vw, 36px) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -.02em !important;
}

.tyt-journey-panel-header > p:not(.tyt-journey-kicker) {
    margin: 0 !important;
    color: var(--tyt-resource-body) !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
}

.tyt-journey-panel-resource .tyt-resource {
    margin: 0 !important;
}

@media (max-width: 760px) {
    .tyt-resource-card {
        grid-template-columns: 1fr !important;
    }
    .tyt-resource-body,
    .tyt-resource-banner-content {
        padding: 24px 22px !important;
    }
    .tyt-journey-panel {
        margin: 34px 0 !important;
        padding: 22px !important;
        border-radius: 24px !important;
    }
}

/* TYT Resource Intelligence v0.9.7 — Premium Journey Cards */
.tyt-journey-panel,
.tyt-resource {
    --tyt-resource-purple: #9E5A92;
    --tyt-resource-purple-dark: #7F3D7A;
    --tyt-resource-purple-light: #C97BBC;
    --tyt-resource-charcoal: #394A54;
    --tyt-resource-body: #4A5568;
    --tyt-resource-grey: #F4F5F7;
    --tyt-resource-orange: #F77A3D;
    --tyt-resource-shadow: 0 14px 32px rgba(57, 74, 84, 0.12);
    --tyt-resource-border: rgba(57, 74, 84, .10);
}

.tyt-resource::before,
.tyt-resource-banner::before,
.tyt-resource-inline::before,
.tyt-resource-download::before { display: none !important; }

.tyt-journey-panel {
    margin: 44px 0 !important;
    padding: 32px !important;
    border-radius: 32px !important;
    background: linear-gradient(135deg, #9E5A92 0%, #7F3D7A 100%) !important;
    box-shadow: var(--tyt-resource-shadow) !important;
    color: #fff !important;
}

.tyt-journey-panel-header { max-width: 760px !important; margin: 0 0 24px !important; }
.tyt-journey-kicker { margin: 0 0 8px !important; color: rgba(255,255,255,.82) !important; font-size: 13px !important; font-weight: 800 !important; letter-spacing: .08em !important; text-transform: uppercase !important; }
.tyt-journey-panel h2 { margin: 0 0 10px !important; color: #fff !important; font-size: clamp(26px, 4vw, 38px) !important; line-height: 1.1 !important; font-weight: 800 !important; }
.tyt-journey-panel-header p:not(.tyt-journey-kicker) { margin: 0 !important; color: rgba(255,255,255,.9) !important; font-size: 17px !important; line-height: 1.65 !important; }
.tyt-journey-panel-resource .tyt-resource { margin: 0 !important; }

.tyt-resource {
    border: 1px solid var(--tyt-resource-border) !important;
    border-radius: 28px !important;
    background: #fff !important;
    box-shadow: var(--tyt-resource-shadow) !important;
    overflow: hidden !important;
}

.tyt-resource-card { display: grid !important; grid-template-columns: minmax(190px, .85fr) minmax(0, 1.35fr) !important; align-items: stretch !important; }
.tyt-resource-template-standard { min-height: 300px !important; }
.tyt-resource-template-hero { grid-template-columns: minmax(260px, 1fr) minmax(0, 1.15fr) !important; min-height: 380px !important; }
.tyt-resource-template-compact { display: block !important; max-width: 560px !important; }
.tyt-resource-template-sidebar { display: block !important; max-width: 380px !important; }

.tyt-resource-artwork {
    min-height: 100% !important;
    padding: 28px !important;
    background:
      radial-gradient(circle at 20% 20%, rgba(201,123,188,.22), transparent 34%),
      radial-gradient(circle at 82% 78%, rgba(247,122,61,.14), transparent 30%),
      linear-gradient(135deg, #F4F5F7 0%, #fff 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.tyt-resource-artwork img { width: 100% !important; max-width: 280px !important; height: auto !important; max-height: 260px !important; object-fit: contain !important; display: block !important; border-radius: 18px !important; }
.tyt-resource-template-hero .tyt-resource-artwork img { max-width: 360px !important; max-height: 320px !important; }
.tyt-resource-artwork-fallback { position: relative !important; width: 220px !important; height: 180px !important; }
.tyt-resource-artwork-fallback span { position: absolute !important; display: block !important; border-radius: 28px !important; background: linear-gradient(135deg, #9E5A92, #7F3D7A) !important; box-shadow: 0 18px 30px rgba(57,74,84,.14) !important; }
.tyt-resource-artwork-fallback span:nth-child(1){ width: 78px !important; height: 132px !important; left: 34px !important; top: 22px !important; transform: rotate(-7deg) !important; }
.tyt-resource-artwork-fallback span:nth-child(2){ width: 64px !important; height: 104px !important; left: 112px !important; top: 48px !important; background: linear-gradient(135deg, #C97BBC, #9E5A92) !important; transform: rotate(6deg) !important; }
.tyt-resource-artwork-fallback span:nth-child(3){ width: 120px !important; height: 18px !important; left: 54px !important; bottom: 12px !important; background: #F77A3D !important; border-radius: 999px !important; }

.tyt-resource-body { padding: 30px !important; display: flex !important; flex-direction: column !important; justify-content: center !important; }
.tyt-resource-template-hero .tyt-resource-body { padding: 40px !important; }
.tyt-resource-template-compact .tyt-resource-body,
.tyt-resource-template-sidebar .tyt-resource-body { padding: 24px !important; }
.tyt-resource-topline { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 16px !important; margin-bottom: 12px !important; }
.tyt-resource-eyebrow { margin: 0 !important; color: var(--tyt-resource-purple) !important; font-size: 12px !important; letter-spacing: .08em !important; text-transform: uppercase !important; font-weight: 800 !important; }
.tyt-resource-logo { max-width: 112px !important; max-height: 34px !important; object-fit: contain !important; }
.tyt-resource h3 { margin: 0 0 10px !important; color: var(--tyt-resource-charcoal) !important; font-size: clamp(22px, 3vw, 34px) !important; line-height: 1.12 !important; font-weight: 800 !important; }
.tyt-resource-template-compact h3,
.tyt-resource-template-sidebar h3 { font-size: 22px !important; }
.tyt-resource-asset-name { margin: 0 0 10px !important; color: var(--tyt-resource-purple) !important; font-weight: 700 !important; }
.tyt-resource-description { margin: 0 0 18px !important; color: var(--tyt-resource-body) !important; font-size: 16px !important; line-height: 1.65 !important; }
.tyt-resource-benefits { margin: 0 0 22px !important; padding: 0 !important; list-style: none !important; display: grid !important; gap: 10px !important; }
.tyt-resource-benefits li { margin: 0 !important; padding-left: 28px !important; position: relative !important; color: var(--tyt-resource-body) !important; font-size: 15px !important; line-height: 1.5 !important; }
.tyt-resource-benefits li::before { content: "" !important; position: absolute !important; left: 0 !important; top: .35em !important; width: 17px !important; height: 17px !important; border-radius: 999px !important; background: #9E5A92 !important; box-shadow: inset 0 0 0 5px rgba(255,255,255,.35) !important; }
.tyt-resource-action-row { display: flex !important; align-items: center !important; gap: 14px !important; flex-wrap: wrap !important; }
.tyt-resource-button { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-height: 46px !important; padding: 12px 20px !important; border-radius: 20px !important; background: #394A54 !important; color: #fff !important; text-decoration: none !important; font-weight: 800 !important; box-shadow: 0 10px 22px rgba(57,74,84,.18) !important; }
.tyt-resource-button:hover,
.tyt-resource-button:focus { transform: translateY(-1px) !important; box-shadow: 0 14px 28px rgba(57,74,84,.22) !important; color: #fff !important; }
.tyt-resource-trust { color: var(--tyt-resource-purple) !important; font-size: 13px !important; font-weight: 800 !important; }
.tyt-resource-disclosure { margin: 14px 0 0 !important; color: #718096 !important; font-size: 12px !important; line-height: 1.45 !important; }

.tyt-journey-template-compact,
.tyt-journey-template-sidebar { padding: 24px !important; }
.tyt-journey-template-compact .tyt-journey-panel-header,
.tyt-journey-template-sidebar .tyt-journey-panel-header { margin-bottom: 16px !important; }
.tyt-journey-template-compact h2,
.tyt-journey-template-sidebar h2 { font-size: 26px !important; }

@media (max-width: 760px) {
    .tyt-journey-panel { padding: 22px !important; border-radius: 28px !important; margin: 32px 0 !important; }
    .tyt-resource-card,
    .tyt-resource-template-hero,
    .tyt-resource-template-standard { display: block !important; min-height: 0 !important; }
    .tyt-resource-artwork { min-height: 190px !important; padding: 20px !important; }
    .tyt-resource-artwork img { max-height: 180px !important; }
    .tyt-resource-body,
    .tyt-resource-template-hero .tyt-resource-body { padding: 22px !important; }
    .tyt-resource h3 { font-size: 24px !important; }
    .tyt-resource-action-row { align-items: flex-start !important; flex-direction: column !important; }
    .tyt-resource-button { width: 100% !important; }
}

/* Core 2.0 v0.9.8 - Affiliate-focused Journey Panel polish */
.tyt-journey-panel {
    background: #F4F5F7 !important;
    border-radius: 32px !important;
    padding: clamp(32px, 5vw, 56px) !important;
    margin: 48px 0 !important;
    color: #4A5568 !important;
    box-shadow: none !important;
    border: 0 !important;
}
.tyt-journey-panel-header {
    max-width: 760px !important;
    margin: 0 auto 28px !important;
    text-align: center !important;
}
.tyt-journey-kicker,
.tyt-resource-eyebrow {
    color: #394A54 !important;
    font-size: 12px !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
}
.tyt-journey-panel h2,
.tyt-resource h3 {
    color: #394A54 !important;
}
.tyt-journey-panel-header > p:not(.tyt-journey-kicker),
.tyt-resource p,
.tyt-resource-description {
    color: #4A5568 !important;
}
.tyt-resource,
.tyt-resource-card,
.tyt-resource-banner,
.tyt-resource-inline,
.tyt-resource-download,
.tyt-resource-footer {
    background: #FFFFFF !important;
    border: 1px solid rgba(57, 74, 84, .10) !important;
    border-left: 0 !important;
    border-radius: 28px !important;
    box-shadow: 0 14px 32px rgba(57, 74, 84, 0.12) !important;
}
.tyt-resource::before,
.tyt-resource-card::before,
.tyt-resource-banner::before,
.tyt-resource-inline::before,
.tyt-resource-download::before,
.tyt-resource-footer::before {
    display: none !important;
    content: none !important;
}
.tyt-resource-button {
    background: #394A54 !important;
    color: #FFFFFF !important;
    border-radius: 20px !important;
    box-shadow: none !important;
}
.tyt-resource-button:hover,
.tyt-resource-button:focus {
    background: #2f3f48 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 22px rgba(57, 74, 84, 0.18) !important;
}
.tyt-resource-trust,
.tyt-resource-asset-name {
    color: #9E5A92 !important;
}
.tyt-resource-artwork,
.tyt-resource-artwork-fallback {
    background: linear-gradient(135deg, rgba(158, 90, 146, .10), rgba(201, 123, 188, .12)) !important;
}
.tyt-resource-disclosure {
    color: #6B7280 !important;
    font-size: 13px !important;
}
@media (max-width: 767px) {
    .tyt-journey-panel {
        border-radius: 24px !important;
        padding: 28px 18px !important;
        margin: 36px 0 !important;
    }
}

/* Core 2.0 v0.10.0 — Resource Experience v1 */
.tyt-journey-panel,
.tyt-resource {
    --tyt-resource-purple: #9E5A92;
    --tyt-resource-purple-dark: #7F3D7A;
    --tyt-resource-charcoal: #394A54;
    --tyt-resource-body: #4A5568;
    --tyt-resource-grey: #F4F5F7;
    --tyt-resource-border: rgba(57, 74, 84, .10);
    --tyt-resource-shadow: 0 14px 32px rgba(57, 74, 84, 0.12);
}

/* RC-100 Hero: end-of-article Journey Panel */
.tyt-journey-panel {
    margin: 52px 0 !important;
    padding: clamp(32px, 5vw, 56px) !important;
    border: 0 !important;
    border-radius: 32px !important;
    background: var(--tyt-resource-grey) !important;
    box-shadow: none !important;
    color: var(--tyt-resource-body) !important;
    text-align: left !important;
}
.tyt-journey-panel-header {
    max-width: 780px !important;
    margin: 0 0 28px !important;
    text-align: left !important;
}
.tyt-journey-kicker {
    margin: 0 0 10px !important;
    color: var(--tyt-resource-charcoal) !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}
.tyt-journey-panel h2 {
    margin: 0 0 12px !important;
    color: var(--tyt-resource-charcoal) !important;
    font-size: clamp(28px, 4vw, 40px) !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
    letter-spacing: -0.035em !important;
    text-align: left !important;
}
.tyt-journey-panel-header > p:not(.tyt-journey-kicker) {
    max-width: 720px !important;
    margin: 0 !important;
    color: var(--tyt-resource-body) !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
    text-align: left !important;
}

/* Shared card foundation */
.tyt-resource {
    margin: 32px 0 !important;
    background: #FFFFFF !important;
    border: 1px solid var(--tyt-resource-border) !important;
    border-left: 1px solid var(--tyt-resource-border) !important;
    border-radius: 28px !important;
    box-shadow: var(--tyt-resource-shadow) !important;
    overflow: hidden !important;
    text-align: left !important;
}
.tyt-journey-panel-resource .tyt-resource { margin: 0 !important; }
.tyt-resource::before,
.tyt-resource-card::before,
.tyt-resource-inline::before,
.tyt-resource-banner::before,
.tyt-resource-download::before,
.tyt-resource-footer::before { display: none !important; content: none !important; }

.tyt-resource-card { display: grid !important; align-items: stretch !important; }
.tyt-resource-template-hero {
    grid-template-columns: minmax(240px, .9fr) minmax(0, 1.25fr) !important;
    min-height: 340px !important;
}
.tyt-resource-template-standard {
    grid-template-columns: minmax(190px, .8fr) minmax(0, 1.35fr) !important;
    min-height: 280px !important;
}

/* RC-200 Inline: compact in-article placement */
.tyt-resource-template-inline {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 18px !important;
    align-items: center !important;
    min-height: 0 !important;
    padding: 20px 22px !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 24px rgba(57, 74, 84, 0.09) !important;
}
.tyt-resource-template-inline .tyt-resource-body {
    padding: 0 !important;
    min-width: 0 !important;
    display: block !important;
}
.tyt-resource-template-inline .tyt-resource-topline {
    justify-content: flex-start !important;
    gap: 14px !important;
    margin: 0 0 6px !important;
}
.tyt-resource-template-inline .tyt-resource-logo {
    max-width: 92px !important;
    max-height: 28px !important;
}
.tyt-resource-template-inline h3 {
    margin: 0 0 6px !important;
    font-size: clamp(19px, 2vw, 23px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
}
.tyt-resource-template-inline .tyt-resource-description {
    max-width: 680px !important;
    margin: 0 !important;
    font-size: 15.5px !important;
    line-height: 1.55 !important;
}
.tyt-resource-template-inline .tyt-resource-action-row {
    margin: 0 !important;
    justify-self: end !important;
    flex: 0 0 auto !important;
}
.tyt-resource-template-inline .tyt-resource-button {
    min-height: 42px !important;
    padding: 10px 16px !important;
    border-radius: 18px !important;
    white-space: nowrap !important;
}
.tyt-resource-template-inline .tyt-resource-disclosure,
.tyt-resource-template-inline .tyt-resource-benefits,
.tyt-resource-template-inline .tyt-resource-asset-name,
.tyt-resource-template-inline .tyt-resource-trust { display: none !important; }

/* RC-300 Compact: sidebar/small placement */
.tyt-resource-template-compact,
.tyt-resource-template-sidebar {
    display: block !important;
    max-width: 380px !important;
    border-radius: 24px !important;
}
.tyt-resource-template-compact .tyt-resource-body,
.tyt-resource-template-sidebar .tyt-resource-body { padding: 22px !important; }
.tyt-resource-template-compact h3,
.tyt-resource-template-sidebar h3 { font-size: 21px !important; line-height: 1.18 !important; }
.tyt-resource-template-compact .tyt-resource-description,
.tyt-resource-template-sidebar .tyt-resource-description { font-size: 15px !important; line-height: 1.55 !important; }

/* Inner card typography */
.tyt-resource-body {
    padding: 32px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: left !important;
}
.tyt-resource-template-hero .tyt-resource-body { padding: clamp(30px, 4vw, 44px) !important; }
.tyt-resource-topline {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin: 0 0 12px !important;
}
.tyt-resource-eyebrow {
    margin: 0 !important;
    color: var(--tyt-resource-charcoal) !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}
.tyt-resource-logo { max-width: 116px !important; max-height: 36px !important; object-fit: contain !important; }
.tyt-resource h3 {
    margin: 0 0 10px !important;
    color: var(--tyt-resource-charcoal) !important;
    font-size: clamp(23px, 3vw, 36px) !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    text-align: left !important;
}
.tyt-resource-description {
    margin: 0 0 18px !important;
    color: var(--tyt-resource-body) !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    text-align: left !important;
}
.tyt-resource-benefits { margin: 0 0 22px !important; padding: 0 !important; list-style: none !important; display: grid !important; gap: 10px !important; }
.tyt-resource-benefits li { margin: 0 !important; padding-left: 28px !important; position: relative !important; color: var(--tyt-resource-body) !important; font-size: 15px !important; line-height: 1.5 !important; }
.tyt-resource-benefits li::before { content: "" !important; position: absolute !important; left: 0 !important; top: .35em !important; width: 17px !important; height: 17px !important; border-radius: 999px !important; background: var(--tyt-resource-purple) !important; box-shadow: inset 0 0 0 5px rgba(255,255,255,.35) !important; }
.tyt-resource-action-row { display: flex !important; align-items: center !important; gap: 14px !important; flex-wrap: wrap !important; }
.tyt-resource-button { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-height: 46px !important; padding: 12px 20px !important; border-radius: 20px !important; background: var(--tyt-resource-charcoal) !important; color: #fff !important; text-decoration: none !important; font-weight: 800 !important; box-shadow: none !important; }
.tyt-resource-button:hover,
.tyt-resource-button:focus { background: #2f3f48 !important; transform: translateY(-1px) !important; box-shadow: 0 10px 22px rgba(57,74,84,.18) !important; color: #fff !important; }
.tyt-resource-disclosure { margin: 14px 0 0 !important; color: #6B7280 !important; font-size: 12.5px !important; line-height: 1.45 !important; }
.tyt-resource-trust,
.tyt-resource-asset-name { color: var(--tyt-resource-purple) !important; }
.tyt-resource-artwork { min-height: 100% !important; padding: 28px !important; background: linear-gradient(135deg, rgba(158,90,146,.08), rgba(244,245,247,1)) !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.tyt-resource-artwork img { width: 100% !important; max-width: 300px !important; height: auto !important; max-height: 280px !important; object-fit: contain !important; display: block !important; border-radius: 18px !important; }
.tyt-resource-template-hero .tyt-resource-artwork img { max-width: 360px !important; max-height: 320px !important; }
.tyt-resource-artwork-fallback { position: relative !important; width: 220px !important; height: 180px !important; background: transparent !important; }

@media (max-width: 760px) {
    .tyt-journey-panel { padding: 28px 18px !important; border-radius: 24px !important; margin: 40px 0 !important; }
    .tyt-resource-template-hero,
    .tyt-resource-template-standard { display: block !important; min-height: 0 !important; }
    .tyt-resource-template-inline { display: block !important; padding: 20px !important; }
    .tyt-resource-template-inline .tyt-resource-action-row { margin-top: 14px !important; }
    .tyt-resource-template-inline .tyt-resource-button { width: 100% !important; }
    .tyt-resource-artwork { min-height: 180px !important; padding: 20px !important; }
    .tyt-resource-body,
    .tyt-resource-template-hero .tyt-resource-body { padding: 22px !important; }
    .tyt-resource h3 { font-size: 24px !important; }
}

/* Core 2.0 v0.10.1 — Affiliate Resource Card Polish
   - Cards are production-ready with logo-only content.
   - Artwork is optional: no generated placeholder artwork/filler.
   - Inline placement is compact and article-friendly.
*/
.tyt-resource-no-artwork {
    display: block !important;
}
.tyt-resource-no-artwork .tyt-resource-body {
    max-width: 780px !important;
}
.tyt-resource-template-hero.tyt-resource-no-artwork .tyt-resource-body {
    padding: clamp(30px, 5vw, 52px) !important;
}
.tyt-resource-template-hero.tyt-resource-no-artwork .tyt-resource-logo {
    max-width: 150px !important;
    max-height: 48px !important;
}
.tyt-resource-template-hero.tyt-resource-no-artwork h3 {
    max-width: 680px !important;
}
.tyt-resource-template-hero.tyt-resource-no-artwork .tyt-resource-description {
    max-width: 680px !important;
}
.tyt-resource-template-standard.tyt-resource-no-artwork {
    min-height: 0 !important;
}
.tyt-resource-template-standard.tyt-resource-no-artwork .tyt-resource-body {
    padding: 28px 30px !important;
}
.tyt-resource-template-standard.tyt-resource-no-artwork .tyt-resource-logo {
    max-width: 126px !important;
    max-height: 40px !important;
}
.tyt-resource-template-inline.tyt-resource-no-artwork {
    margin: 28px 0 !important;
    padding: 18px 20px !important;
    min-height: 0 !important;
}
.tyt-resource-template-inline .tyt-resource-eyebrow {
    color: #9E5A92 !important;
    font-size: 11px !important;
    letter-spacing: .11em !important;
}
.tyt-resource-template-inline .tyt-resource-logo {
    max-width: 104px !important;
    max-height: 30px !important;
}
.tyt-resource-template-inline .tyt-resource-topline {
    margin-bottom: 7px !important;
}
.tyt-resource-template-inline h3 {
    color: #394A54 !important;
    font-size: clamp(18px, 1.8vw, 22px) !important;
    margin-bottom: 5px !important;
}
.tyt-resource-template-inline .tyt-resource-description {
    font-size: 15px !important;
    line-height: 1.5 !important;
}
.tyt-resource-template-inline .tyt-resource-button {
    background: #394A54 !important;
    min-height: 40px !important;
    padding: 9px 15px !important;
    font-size: 14px !important;
}
.tyt-resource-template-compact .tyt-resource-logo,
.tyt-resource-template-sidebar .tyt-resource-logo {
    max-width: 126px !important;
    max-height: 38px !important;
}
.tyt-resource-template-compact .tyt-resource-eyebrow,
.tyt-resource-template-sidebar .tyt-resource-eyebrow {
    color: #9E5A92 !important;
}
.tyt-resource-template-compact .tyt-resource-button,
.tyt-resource-template-sidebar .tyt-resource-button {
    width: 100% !important;
}
.tyt-resource-has-artwork .tyt-resource-artwork {
    background:
        radial-gradient(circle at 18% 20%, rgba(158, 90, 146, .12), transparent 34%),
        linear-gradient(135deg, #F4F5F7 0%, #fff 100%) !important;
}
.tyt-resource-artwork-fallback {
    display: none !important;
}
@media (max-width: 760px) {
    .tyt-resource-template-inline.tyt-resource-no-artwork {
        display: block !important;
    }
    .tyt-resource-template-inline .tyt-resource-action-row {
        margin-top: 14px !important;
    }
    .tyt-resource-template-inline .tyt-resource-button {
        width: 100% !important;
    }
    .tyt-resource-no-artwork .tyt-resource-body,
    .tyt-resource-template-hero.tyt-resource-no-artwork .tyt-resource-body,
    .tyt-resource-template-standard.tyt-resource-no-artwork .tyt-resource-body {
        padding: 22px !important;
    }
}


/* Core 2.0 v0.17.0 — Inline Editorial Recommendation Panel
   Bespoke mobile-first inline recommendation. This deliberately does not share
   the Hero or Compact visual structure: it should feel like a calm editorial
   note inside the article, not an advert block. */
.tyt-resource-template-inline {
    margin: 34px 0 !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    padding: clamp(22px, 3.5vw, 30px) !important;
    background: #F4F5F7 !important;
    border: 0 !important;
    border-radius: 26px !important;
    box-shadow: none !important;
    overflow: hidden !important;
}
.tyt-resource-template-inline.tyt-resource-card {
    grid-template-columns: none !important;
}
.tyt-resource-template-inline .tyt-resource-body {
    padding: 0 !important;
    max-width: 820px !important;
    display: block !important;
}
.tyt-resource-template-inline .tyt-resource-topline {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    margin: 0 0 10px !important;
}
.tyt-resource-template-inline .tyt-resource-eyebrow {
    color: #394A54 !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}
.tyt-resource-template-inline .tyt-resource-logo {
    max-width: 94px !important;
    max-height: 26px !important;
    object-fit: contain !important;
    opacity: .96 !important;
}
.tyt-resource-template-inline h3 {
    margin: 0 0 8px !important;
    color: #394A54 !important;
    font-size: clamp(20px, 2.4vw, 27px) !important;
    line-height: 1.16 !important;
    font-weight: 800 !important;
    letter-spacing: -0.026em !important;
}
.tyt-resource-template-inline .tyt-resource-description {
    margin: 0 !important;
    max-width: 760px !important;
    color: #4A5568 !important;
    font-size: clamp(15.5px, 1.7vw, 16.5px) !important;
    line-height: 1.68 !important;
}
.tyt-resource-template-inline .tyt-resource-action-row {
    margin: 14px 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
}
.tyt-resource-template-inline .tyt-resource-button {
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #9E5A92 !important;
    box-shadow: none !important;
    font-size: 15.5px !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}
.tyt-resource-template-inline .tyt-resource-button::after {
    content: " →" !important;
    display: inline-block !important;
    transform: translateX(0) !important;
    transition: transform .18s ease !important;
}
.tyt-resource-template-inline .tyt-resource-button:hover,
.tyt-resource-template-inline .tyt-resource-button:focus {
    background: transparent !important;
    color: #7F3D7A !important;
    box-shadow: none !important;
    transform: none !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}
.tyt-resource-template-inline .tyt-resource-button:hover::after,
.tyt-resource-template-inline .tyt-resource-button:focus::after {
    transform: translateX(3px) !important;
}
.tyt-resource-template-inline .tyt-resource-disclosure {
    display: block !important;
    margin: 12px 0 0 !important;
    color: #6B7280 !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    max-width: 760px !important;
}
.tyt-resource-template-inline .tyt-resource-benefits,
.tyt-resource-template-inline .tyt-resource-asset-name,
.tyt-resource-template-inline .tyt-resource-trust,
.tyt-resource-template-inline .tyt-resource-artwork {
    display: none !important;
}
@media (max-width: 760px) {
    .tyt-resource-template-inline {
        margin: 28px 0 !important;
        padding: 20px 18px !important;
        border-radius: 22px !important;
    }
    .tyt-resource-template-inline .tyt-resource-topline {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 9px !important;
        margin-bottom: 10px !important;
    }
    .tyt-resource-template-inline .tyt-resource-logo {
        max-width: 86px !important;
        max-height: 24px !important;
    }
    .tyt-resource-template-inline h3 {
        font-size: 21px !important;
    }
    .tyt-resource-template-inline .tyt-resource-button {
        width: auto !important;
        display: inline-flex !important;
    }
}

/* Core 2.0 v0.17.1 — Inline Compact Refinement
   The inline recommendation is a slim editorial note, not a Journey Panel.
   Hero and Compact remain untouched. */
.tyt-resource-template-inline {
    margin: 28px 0 !important;
    padding: 18px 20px !important;
    background: #FAFAFB !important;
    border-radius: 18px !important;
    border: 1px solid rgba(57,74,84,.07) !important;
    box-shadow: none !important;
}
.tyt-resource-template-inline .tyt-resource-body {
    max-width: none !important;
    padding: 0 !important;
}
.tyt-resource-template-inline .tyt-resource-topline,
.tyt-resource-template-inline .tyt-resource-eyebrow,
.tyt-resource-template-inline .tyt-resource-logo,
.tyt-resource-template-inline .tyt-resource-artwork,
.tyt-resource-template-inline .tyt-resource-benefits,
.tyt-resource-template-inline .tyt-resource-asset-name {
    display: none !important;
}
.tyt-resource-template-inline h3 {
    margin: 0 0 6px !important;
    font-size: clamp(18px, 1.8vw, 21px) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.018em !important;
    color: #394A54 !important;
    font-weight: 800 !important;
}
.tyt-resource-template-inline .tyt-resource-description {
    margin: 0 !important;
    max-width: 760px !important;
    color: #4A5568 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}
.tyt-resource-template-inline .tyt-resource-action-row {
    margin: 12px 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
}
.tyt-resource-template-inline .tyt-resource-button {
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #9E5A92 !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    width: auto !important;
}
.tyt-resource-template-inline .tyt-resource-button::after {
    content: " →" !important;
    display: inline-block !important;
    transition: transform .18s ease !important;
}
.tyt-resource-template-inline .tyt-resource-button:hover,
.tyt-resource-template-inline .tyt-resource-button:focus {
    color: #7F3D7A !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}
.tyt-resource-template-inline .tyt-resource-button:hover::after,
.tyt-resource-template-inline .tyt-resource-button:focus::after {
    transform: translateX(3px) !important;
}
.tyt-resource-template-inline .tyt-resource-trust {
    display: inline-block !important;
    color: #2F855A !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}
.tyt-resource-template-inline .tyt-resource-disclosure {
    margin: 9px 0 0 !important;
    color: #718096 !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    max-width: none !important;
}
@media (max-width: 760px) {
    .tyt-resource-template-inline {
        margin: 24px 0 !important;
        padding: 16px !important;
        border-radius: 16px !important;
    }
    .tyt-resource-template-inline h3 {
        font-size: 18.5px !important;
    }
    .tyt-resource-template-inline .tyt-resource-description {
        font-size: 14.5px !important;
        line-height: 1.52 !important;
    }
    .tyt-resource-template-inline .tyt-resource-action-row {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        flex-direction: column !important;
        gap: 7px !important;
    }
    .tyt-resource-template-inline .tyt-resource-button {
        display: inline-flex !important;
        width: auto !important;
    }
    .tyt-resource-template-inline .tyt-resource-trust {
        white-space: normal !important;
        font-size: 13px !important;
    }
}

/* Core 2.0 v0.17.2 — Inline editorial trust mark refinement
   - Uses the chosen soft TYT-purple background direction.
   - Moves TYT Recommended to the top as a quiet editorial provenance mark.
   - Keeps CTA left aligned and always shows disclosure when supplied.
   - No logo, no bullets, no journey wrapper, no heavy CTA button. */
.tyt-resource-template-inline {
    margin: 28px 0 !important;
    padding: 18px 20px 16px !important;
    background: #FBF4FA !important;
    border: 1px solid rgba(158, 90, 146, .10) !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    display: block !important;
}
.tyt-resource-template-inline .tyt-resource-body {
    padding: 0 !important;
    max-width: none !important;
    display: block !important;
}
.tyt-resource-template-inline .tyt-resource-topline,
.tyt-resource-template-inline .tyt-resource-eyebrow,
.tyt-resource-template-inline .tyt-resource-logo,
.tyt-resource-template-inline .tyt-resource-artwork,
.tyt-resource-template-inline .tyt-resource-benefits,
.tyt-resource-template-inline .tyt-resource-asset-name {
    display: none !important;
}
.tyt-resource-template-inline .tyt-resource-trust {
    display: block !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: #9E5A92 !important;
    background: transparent !important;
    border: 0 !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    letter-spacing: .105em !important;
    text-transform: uppercase !important;
    white-space: normal !important;
}
.tyt-resource-template-inline h3 {
    margin: 0 0 6px !important;
    color: #394A54 !important;
    font-size: clamp(18px, 1.75vw, 21px) !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    letter-spacing: -0.018em !important;
}
.tyt-resource-template-inline .tyt-resource-description {
    margin: 0 !important;
    max-width: 760px !important;
    color: #4A5568 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}
.tyt-resource-template-inline .tyt-resource-action-row {
    margin: 12px 0 0 !important;
    display: block !important;
    text-align: left !important;
}
.tyt-resource-template-inline .tyt-resource-button {
    display: inline-flex !important;
    width: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #9E5A92 !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    justify-content: flex-start !important;
    align-items: center !important;
}
.tyt-resource-template-inline .tyt-resource-button::after {
    content: " →" !important;
    display: inline-block !important;
    transition: transform .18s ease !important;
}
.tyt-resource-template-inline .tyt-resource-button:hover,
.tyt-resource-template-inline .tyt-resource-button:focus {
    color: #7F3D7A !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}
.tyt-resource-template-inline .tyt-resource-button:hover::after,
.tyt-resource-template-inline .tyt-resource-button:focus::after {
    transform: translateX(3px) !important;
}
.tyt-resource-template-inline .tyt-resource-disclosure {
    display: block !important;
    margin: 9px 0 0 !important;
    color: #718096 !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    max-width: none !important;
}
@media (max-width: 760px) {
    .tyt-resource-template-inline {
        margin: 24px 0 !important;
        padding: 16px !important;
        border-radius: 16px !important;
    }
    .tyt-resource-template-inline .tyt-resource-trust {
        margin-bottom: 7px !important;
        font-size: 10.5px !important;
        letter-spacing: .095em !important;
    }
    .tyt-resource-template-inline h3 {
        font-size: 18.5px !important;
    }
    .tyt-resource-template-inline .tyt-resource-description {
        font-size: 14.5px !important;
        line-height: 1.52 !important;
    }
}


/* Core 2.0 v0.17.3 — Inline final alignment and disclosure fix
   - Forces inline CTA to the left on desktop and mobile.
   - Keeps TYT Recommended as a subtle top trust mark.
   - Disclosure is always visible when the renderer has affiliate/resource URL data. */
.tyt-resource-template-inline {
    background: #FBF4FA !important;
}
.tyt-resource-template-inline .tyt-resource-body {
    text-align: left !important;
}
.tyt-resource-template-inline .tyt-resource-trust {
    display: block !important;
    margin: 0 0 8px !important;
    color: #9E5A92 !important;
    font-weight: 500 !important;
    letter-spacing: .105em !important;
    text-transform: uppercase !important;
    background: transparent !important;
    border: 0 !important;
}
.tyt-resource-template-inline .tyt-resource-action-row {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    margin-left: 0 !important;
}
.tyt-resource-template-inline .tyt-resource-button {
    display: inline-flex !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    float: none !important;
    text-align: left !important;
    justify-content: flex-start !important;
    color: #9E5A92 !important;
}
.tyt-resource-template-inline .tyt-resource-disclosure {
    display: block !important;
    margin: 9px 0 0 !important;
    color: #718096 !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    text-align: left !important;
}

/* Core 2.0 v0.19.0 — Editorial Asset Intelligence / Hero v3 */
.tyt-editorial-recommendation,
.tyt-editorial-recommendation * {
    box-sizing: border-box !important;
}

.tyt-editorial-recommendation--hero {
    --tyt-er-purple: #9E5A92;
    --tyt-er-bg: #FFFFFF;
    --tyt-er-text: #101828;
    --tyt-er-muted: #667085;
    width: 100% !important;
    max-width: 100% !important;
    margin: 30px 0 14px !important;
    padding: 22px 18px 18px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
    background: var(--tyt-er-bg) !important;
    border: 1px solid rgba(16, 24, 40, .045) !important;
    border-radius: 20px !important;
    box-shadow: 0 18px 50px rgba(16, 24, 40, .075) !important;
    color: var(--tyt-er-text) !important;
    overflow: hidden !important;
    clear: both !important;
    text-align: left !important;
}

.tyt-editorial-recommendation__content {
    min-width: 0 !important;
    max-width: none !important;
    text-align: left !important;
}

.tyt-editorial-recommendation__kicker {
    margin: 0 0 11px !important;
    color: var(--tyt-er-purple) !important;
    font-family: inherit !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 650 !important;
    letter-spacing: .095em !important;
    text-transform: uppercase !important;
}

.tyt-editorial-recommendation__title {
    margin: 0 0 12px !important;
    font-family: inherit !important;
    max-width: 860px !important;
    color: var(--tyt-er-text) !important;
    font-size: clamp(24px, 6vw, 34px) !important;
    line-height: 1.14 !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
}

.tyt-editorial-recommendation__summary,
.tyt-editorial-recommendation__why p {
    margin: 0 !important;
    max-width: 860px !important;
    color: var(--tyt-er-text) !important;
    font-family: inherit !important;
    font-size: 15px !important;
    line-height: 1.58 !important;
    font-weight: 400 !important;
}

.tyt-editorial-recommendation__summary {
    margin-bottom: 18px !important;
}

.tyt-editorial-recommendation__why {
    margin: 0 0 18px !important;
}

.tyt-editorial-recommendation__why-label {
    margin: 0 0 7px !important;
    color: var(--tyt-er-purple) !important;
    font-family: inherit !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 650 !important;
    letter-spacing: .11em !important;
    text-transform: uppercase !important;
}

.tyt-editorial-recommendation__link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 0 17px !important;
    padding: 0 0 4px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--tyt-er-purple) !important;
    background: transparent !important;
    color: var(--tyt-er-purple) !important;
    box-shadow: none !important;
    text-decoration: none !important;
    font-family: inherit !important;
    font-size: 15.5px !important;
    line-height: 1.25 !important;
    font-weight: 650 !important;
}

.tyt-editorial-recommendation__link span { transition: transform .18s ease !important; }
.tyt-editorial-recommendation__link:hover,
.tyt-editorial-recommendation__link:focus {
    color: var(--tyt-er-purple) !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
.tyt-editorial-recommendation__link:hover span,
.tyt-editorial-recommendation__link:focus span { transform: translateX(3px) !important; }

.tyt-editorial-recommendation__disclosure {
    margin: 0 !important;
    max-width: 860px !important;
    color: var(--tyt-er-muted) !important;
    font-family: inherit !important;
    font-size: 11.5px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}

.tyt-editorial-recommendation__media {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
}

.tyt-editorial-recommendation__media img {
    display: block !important;
    width: 100% !important;
    max-width: 270px !important;
    height: auto !important;
    max-height: 220px !important;
    object-fit: contain !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

@media (min-width: 760px) {
    .tyt-editorial-recommendation--hero {
        width: min(1420px, calc(100vw - 96px)) !important;
        max-width: min(1420px, calc(100vw - 96px)) !important;
        margin-top: 46px !important;
        margin-bottom: 30px !important;
        margin-left: 50% !important;
        margin-right: 0 !important;
        transform: translateX(-50%) !important;
        padding: clamp(34px, 4.2vw, 56px) !important;
        grid-template-columns: minmax(0, 1.06fr) minmax(300px, .74fr) !important;
        align-items: center !important;
        gap: clamp(30px, 4vw, 60px) !important;
        border-radius: 26px !important;
    }
    .tyt-editorial-recommendation--hero.has-no-media { grid-template-columns: minmax(0, 1fr) !important; }
    .tyt-editorial-recommendation__title {
        font-size: clamp(34px, 3.25vw, 54px) !important;
        max-width: 940px !important;
    }
    .tyt-editorial-recommendation__summary,
    .tyt-editorial-recommendation__why p {
        font-size: 18px !important;
        line-height: 1.56 !important;
        max-width: 940px !important;
    }
    .tyt-editorial-recommendation__media { order: 2 !important; }
    .tyt-editorial-recommendation__media img {
        max-width: 440px !important;
        max-height: 365px !important;
    }
}

@media (max-width: 420px) {
    .tyt-editorial-recommendation--hero {
        padding: 19px 16px 17px !important;
        border-radius: 18px !important;
        gap: 13px !important;
    }
    .tyt-editorial-recommendation__title { margin-bottom: 10px !important; }
    .tyt-editorial-recommendation__summary { margin-bottom: 16px !important; }
    .tyt-editorial-recommendation__why { margin-bottom: 16px !important; }
    .tyt-editorial-recommendation__media img {
        max-width: 245px !important;
        max-height: 200px !important;
    }
}

/* TYT Core 2.0 v0.19.1 — live editorial scene rendering */
.tyt-editorial-recommendation--hero {
    background: #fff !important;
    border: 0 !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
}
.tyt-editorial-recommendation--hero.has-media {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, .75fr) !important;
    align-items: center !important;
    gap: clamp(24px, 4vw, 56px) !important;
}
.tyt-editorial-recommendation--hero .tyt-editorial-recommendation__media {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
}
.tyt-editorial-recommendation--hero .tyt-editorial-recommendation__media img {
    width: 100% !important;
    max-width: 430px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.tyt-resource-template-inline.tyt-resource-has-artwork {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(96px, 150px) !important;
    gap: 18px !important;
    align-items: center !important;
}
.tyt-resource-template-inline .tyt-resource-artwork,
.tyt-resource-template-inline .tyt-resource-artwork--inline {
    display: flex !important;
    min-height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    align-items: center !important;
    justify-content: center !important;
}
.tyt-resource-template-inline .tyt-resource-artwork img {
    width: 100% !important;
    max-width: 150px !important;
    max-height: 132px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}
@media (max-width: 767px) {
    .tyt-editorial-recommendation--hero.has-media {
        display: block !important;
    }
    .tyt-editorial-recommendation--hero .tyt-editorial-recommendation__media {
        margin-top: 18px !important;
        justify-content: flex-start !important;
    }
    .tyt-editorial-recommendation--hero .tyt-editorial-recommendation__media img {
        max-width: 280px !important;
    }
    .tyt-resource-template-inline.tyt-resource-has-artwork {
        grid-template-columns: 1fr !important;
    }
    .tyt-resource-template-inline .tyt-resource-artwork,
    .tyt-resource-template-inline .tyt-resource-artwork--inline {
        justify-content: flex-start !important;
        margin-top: 12px !important;
    }
    .tyt-resource-template-inline .tyt-resource-artwork img {
        max-width: 190px !important;
        max-height: 150px !important;
    }
}

/* Evidence Intelligence v2 injected evidence */
.tyt-evidence-v2-injected{background:#f7f4f7;border-left:4px solid #9E5A92;border-radius:12px;padding:14px 16px;margin:22px 0;}

/* Core Assets 2.0 */
.tyt-core-v2{box-sizing:border-box;margin:28px 0;border-radius:28px;font-family:inherit}.tyt-core-v2 *{box-sizing:border-box}.tyt-core-v2__eyebrow{display:inline-flex;border-radius:999px;padding:6px 10px;font-size:11px;font-weight:800;letter-spacing:.07em;text-transform:uppercase}.tyt-core-v2 h2{margin:12px 0 8px;font-size:clamp(26px,3vw,38px);line-height:1.15}.tyt-core-v2__intro{margin:0 0 24px;font-size:17px;line-height:1.6}
.tyt-at-glance{padding:18px 22px 20px;background:#f7f5f7;border:1px solid #ebe6ea;color:#293142}.tyt-at-glance .tyt-core-v2__eyebrow{background:#ece9ec;color:#59606c}.tyt-at-glance h2{font-size:28px;color:#342e35}.tyt-at-glance>p:last-child{margin:0;font-size:17px;line-height:1.65;color:#384052}
.tyt-learn{padding:44px 48px;background:linear-gradient(135deg,#7F3D7A 0%,#9E5A92 55%,#B0578F 100%);border:1px solid rgba(255,255,255,.08);box-shadow:0 10px 30px rgba(80,25,90,.12);color:#fff}.tyt-learn>h2,.tyt-learn>.tyt-core-v2__intro{color:#fff}.tyt-learn .tyt-core-v2__eyebrow,.tyt-takeaways .tyt-core-v2__eyebrow{background:rgba(255,255,255,.17);color:#fff}.tyt-learn-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.tyt-learn-grid article{padding:24px 26px;background:#fff;color:#24303a;border-radius:24px}.tyt-learn-grid h3{margin:14px 0 7px;font-size:17px;line-height:1.35;font-weight:650;color:#24303a}.tyt-learn-grid p{margin:0;line-height:1.55;font-weight:400;color:#24303a}.tyt-learn-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:#f5eaf3;color:#9e5a92}
.tyt-takeaways{padding:28px 36px 32px;background:linear-gradient(135deg,#7F3D7A 0%,#9E5A92 55%,#B0578F 100%);border:1px solid rgba(255,255,255,.08);box-shadow:0 10px 30px rgba(80,25,90,.12);color:#fff}.tyt-takeaways>h2,.tyt-takeaways>.tyt-core-v2__intro{color:#fff}.tyt-takeaways ul{list-style:none!important;margin:18px 0 0!important;padding:0!important;display:grid;gap:14px}.tyt-takeaways li{display:flex;align-items:center;gap:14px;margin:0!important;padding:14px 18px!important;min-height:66px;background:#fff;color:#202a37;border-radius:20px}.tyt-takeaways li>span{flex:0 0 40px;width:40px;height:40px;display:grid;place-items:center;border-radius:50%;background:#f5eaf3;color:#9e5a92;font-size:18px;font-weight:800}.tyt-takeaways li p{margin:0;line-height:1.5;font-weight:400;color:#202a37}
.tyt-faqs{padding:28px 36px 32px;background:#f3f3f2;color:#202938}.tyt-faqs>h2{color:#34383d}.tyt-faqs .tyt-core-v2__eyebrow{background:#e4e5e5;color:#565e66}.tyt-faq-list{margin-top:18px;padding:8px 24px;background:#fff;border-radius:24px;box-shadow:0 14px 32px rgba(57,74,84,.10)}.tyt-faq-list details{border-bottom:1px solid #e5e7e8}.tyt-faq-list details:last-child{border-bottom:0}.tyt-faq-list summary{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 0;cursor:pointer;list-style:none;font-size:18px;font-weight:400;color:#202938}.tyt-faq-list summary::-webkit-details-marker{display:none}.tyt-faq-list summary i{position:relative;flex:0 0 34px;width:34px;height:34px;border-radius:50%;background:#e4e5e5}.tyt-faq-list summary i:before,.tyt-faq-list summary i:after{content:"";position:absolute;left:10px;right:10px;top:16px;height:2px;background:#565e66}.tyt-faq-list summary i:after{transform:rotate(90deg);transition:.2s}.tyt-faq-list details[open] summary i:after{transform:rotate(0)}.tyt-faq-answer{padding:0 50px 18px 0}.tyt-faq-answer p{margin:0;line-height:1.65;font-weight:400;color:#4a5564}
@media(max-width:700px){.tyt-core-v2{margin:22px 0;border-radius:20px}.tyt-at-glance{padding:15px 16px 17px}.tyt-at-glance h2{font-size:25px}.tyt-at-glance>p:last-child{font-size:16px}.tyt-learn{padding:28px 18px}.tyt-learn-grid{grid-template-columns:1fr}.tyt-takeaways,.tyt-faqs{padding:22px 18px}.tyt-takeaways li{padding:12px 14px!important;min-height:58px;gap:11px}.tyt-takeaways li>span{flex-basis:34px;width:34px;height:34px;font-size:15px}.tyt-faq-list{padding:4px 16px}.tyt-faq-list summary{padding:15px 0;font-size:16px}.tyt-faq-list summary i{flex-basis:30px;width:30px;height:30px}.tyt-faq-list summary i:before,.tyt-faq-list summary i:after{top:14px;left:9px;right:9px}.tyt-faq-answer{padding:0 42px 15px 0}}

/* v8.9.4 Studio list typography consistency */
.entry-content .wp-block-list,
.wp-block-post-content .wp-block-list,
.post-content .wp-block-list,
.entry-content .wp-block-list li,
.wp-block-post-content .wp-block-list li,
.post-content .wp-block-list li {
    font-size: inherit;
    line-height: inherit;
}
.entry-content .wp-block-list li > p,
.wp-block-post-content .wp-block-list li > p,
.post-content .wp-block-list li > p {
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

/* v8.9.5 Studio list typography — match normal article paragraph rhythm */
.entry-content ul,
.entry-content ol,
.wp-block-post-content ul,
.wp-block-post-content ol,
.post-content ul,
.post-content ol,
.article-content ul,
.article-content ol,
.single-post .entry-content ul,
.single-post .entry-content ol {
    font-size: inherit !important;
    line-height: inherit !important;
}
.entry-content ul li,
.entry-content ol li,
.wp-block-post-content ul li,
.wp-block-post-content ol li,
.post-content ul li,
.post-content ol li,
.article-content ul li,
.article-content ol li,
.single-post .entry-content ul li,
.single-post .entry-content ol li {
    font-size: 1em !important;
    line-height: 1.7 !important;
}
.entry-content li > p:only-child,
.wp-block-post-content li > p:only-child,
.post-content li > p:only-child,
.article-content li > p:only-child {
    margin: 0 !important;
    font: inherit !important;
    line-height: inherit !important;
}

/* v9.0 stabilisation — ordinary article lists exactly match paragraph typography. */
:where(.entry-content,.wp-block-post-content,.post-content,.article-content) :where(ul,ol):not(.tyt-core-v2 ul):not(.tyt-core-v2 ol),
:where(.entry-content,.wp-block-post-content,.post-content,.article-content) :where(ul,ol):not(.tyt-core-v2 ul):not(.tyt-core-v2 ol) > li {
    font-family: var(--tyt-article-body-font-family, inherit) !important;
    font-size: var(--tyt-article-body-font-size, inherit) !important;
    line-height: var(--tyt-article-body-line-height, inherit) !important;
    font-weight: var(--tyt-article-body-font-weight, inherit) !important;
}
:where(.entry-content,.wp-block-post-content,.post-content,.article-content) :where(ul,ol):not(.tyt-core-v2 ul):not(.tyt-core-v2 ol) > li > p {
    font: inherit !important;
    line-height: inherit !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.tyt-takeaways li > .tyt-takeaway-text,
.tyt-takeaways li > strong {
    display: block;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    height: auto !important;
    margin: 0;
    padding: 0;
    background: transparent !important;
    border-radius: 0 !important;
    color: inherit !important;
    font-family: inherit !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    place-items: initial !important;
    white-space: normal !important;
    overflow-wrap: break-word;
}


/* v9.4.9.3 — mobile-first Core Assets spacing */
@media (max-width:700px) {
    .tyt-core-v2.tyt-takeaways,
    .tyt-core-v2.tyt-faqs {
        padding: 18px 10px 20px !important;
        border-radius: 18px;
    }
    .tyt-takeaways .tyt-core-v2__intro,
    .tyt-faqs .tyt-core-v2__intro {
        margin-bottom: 18px;
    }
    .tyt-takeaways ul {
        gap: 10px;
        margin-top: 14px !important;
    }
    .tyt-takeaways li {
        padding: 11px 10px !important;
        gap: 10px;
        min-height: 54px;
        border-radius: 16px;
    }
    .tyt-faq-list {
        margin-top: 14px;
        padding: 2px 12px;
        border-radius: 18px;
    }
    .tyt-faq-list summary {
        gap: 10px;
        padding: 14px 0;
    }
    .tyt-faq-answer {
        padding: 0 38px 14px 0;
    }
}
