﻿/* =========================
   TEMPLATE 1 — DISEÑO PREMIUM RESPONSIVO
   Reemplazar TODO Template1.css
   ========================= */

.t1,
.t1 * {
    box-sizing: border-box;
}

.t1 {
    --radius-xl: 34px;
    --shadow-soft: 0 18px 45px rgba(0,0,0,.14);
    --shadow-card: 0 14px 34px rgba(0,0,0,.12);
    --glass: rgba(255,255,255,.16);
    font-family: var(--font, Arial, sans-serif);
    color: #222;
    background: #fff;
    overflow: hidden;
}

    .t1 img {
        max-width: 100%;
        display: block;
    }

.t1-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.t1-secTitle {
    font-size: clamp(34px, 5vw, 62px);
    font-style: italic;
    margin: 0 0 20px;
    color: var(--c2,#50528D);
    letter-spacing: .02em;
    text-align: center;
}

/* Animación general */
@keyframes t1FadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes t1Float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes t1Shine {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

/* HERO */
.t1-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--c1,#7090DC);
    overflow: hidden;
}

.t1-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--hero-img) center/cover no-repeat;
    z-index: 0;
    transform: scale(1.04);
    animation: t1HeroZoom 14s ease-in-out infinite alternate;
}

@keyframes t1HeroZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.12);
    }
}

.t1-hero__tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,.48), rgba(0,0,0,.18), rgba(0,0,0,.56));
    z-index: 0;
}

.t1-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 50px 18px;
    text-align: center;
    animation: t1FadeUp .9s ease both;
}

.t1-hero__name {
    margin: 0;
    font-size: clamp(42px, 7vw, 94px);
    line-height: .98;
    letter-spacing: .10em;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 12px 34px rgba(0,0,0,.45);
}

/* BIO */
.t1-bio {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.t1-bio__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 18px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 36px;
    align-items: center;
}

.t1-bio__photo {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: var(--shadow-soft);
    outline: 6px solid color-mix(in srgb, var(--c1,#7090DC) 70%, white);
    animation: t1Float 5s ease-in-out infinite;
}

    .t1-bio__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.t1-bio__content {
    background: rgba(255,255,255,.86);
    border-radius: 34px;
    padding: 34px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,.05);
    animation: t1FadeUp .8s ease both;
}

.t1-bio__title {
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1.05;
    margin: 0 0 16px;
    color: var(--c2,#50528D);
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 900;
}

.t1-bio__text {
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.75;
    color: #303030;
}

    .t1-bio__text p {
        margin: 0 0 1em;
    }

/* GALERÍA */
.t1-gallery {
    background: #fff;
    padding: 34px 0;
}

.t1-slider {
    --cols: 5;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 20px;
}

.t1-track {
    display: flex;
    will-change: transform;
    transition: transform .65s cubic-bezier(.22,.61,.36,1);
}

.t1-card {
    flex: 0 0 calc(100% / var(--cols));
    padding: 10px;
}

.t1-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    background: #eee;
    box-shadow: var(--shadow-card);
    position: relative;
    transform: translateY(0);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .t1-thumb:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 22px 48px rgba(0,0,0,.18);
    }

    .t1-thumb img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        cursor: zoom-in;
        transition: transform .5s ease;
    }

    .t1-thumb:hover img {
        transform: scale(1.08);
    }

.t1-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.92);
    color: #222;
    font-size: 30px;
    line-height: 46px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    cursor: pointer;
    z-index: 5;
    backdrop-filter: blur(8px);
    transition: transform .25s ease, background .25s ease;
}

    .t1-nav:hover {
        transform: translateY(-50%) scale(1.08);
        background: #fff;
    }

.t1-prev {
    left: 16px;
}

.t1-next {
    right: 16px;
}

/* LIGHTBOX */
.t1-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

    .t1-lightbox.show {
        display: flex;
    }

    .t1-lightbox img {
        max-width: 92vw;
        max-height: 90vh;
        border-radius: 18px;
        box-shadow: 0 24px 60px rgba(0,0,0,.55);
    }

.t1-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #111;
    font-size: 24px;
    cursor: pointer;
}

/* VIDEO */
.t1-video {
    background: linear-gradient(180deg, #f7f7f7, #fff);
    padding: 48px 0;
}

.t1-video__frame {
    position: relative;
    width: 100%;
    max-width: 940px;
    aspect-ratio: 16/9;
    margin: 10px auto 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

    .t1-video__frame iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.t1-video__player {
    width: 100%;
    max-width: 940px;
    display: block;
    margin: 10px auto 0;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

/* ÁRBOL */
.t1-tree {
    position: relative;
    overflow: hidden;
    background-color: var(--treeBg, #AEB8A9);
    min-height: 760px;
}

.t1-tree__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,.24), transparent 32%), linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.20));
    pointer-events: none;
    z-index: 0;
}

.t1-tree__inner {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.t1-tree__title {
    text-align: center;
    color: var(--treeInk, #F6F0DC);
    font-size: clamp(34px, 4vw, 78px);
    line-height: 1.12;
    font-style: italic;
    font-weight: 800;
    margin: 0 0 34px;
    text-shadow: 0 5px 18px rgba(0,0,0,.25);
}

.t1-tree__canvas {
    position: relative;
    width: 100%;
    min-height: 560px;
    border-radius: 34px;
    background: rgba(255,255,255,.08) !important;
    backdrop-filter: blur(4px);
}

#t1TreeLinks {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}

    #t1TreeLinks line {
        stroke: rgba(255,255,255,.92);
        stroke-width: 6;
        stroke-linecap: round;
        filter: drop-shadow(0 3px 8px rgba(0,0,0,.16));
    }

.t1-node {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 7px solid rgba(255,255,255,.96);
    box-shadow: 0 16px 38px rgba(0,0,0,.22);
    background: #fff;
    z-index: 2;
    transition: transform .3s ease;
}

    .t1-node:hover {
        transform: scale(1.06);
    }

    .t1-node img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.t1-node__name {
    position: absolute;
    display: inline-block;
    min-width: 150px;
    max-width: 230px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(246,240,220,.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.42);
    box-shadow: 0 12px 26px rgba(0,0,0,.16);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    color: var(--treeInk, #F6F0DC);
    z-index: 3;
    white-space: nowrap;
}

/* TESTIMONIOS */
.t1-test {
    background: #fff;
    padding: 54px 0 64px;
}

    .t1-test .t1-container {
        max-width: 1280px;
    }

.t1-test__title {
    margin: 0 0 34px;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1;
    color: var(--c2,#50528D);
    letter-spacing: .04em;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.t1-test__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 34px;
}

.t1-test__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,.05);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

    .t1-test__item:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 50px rgba(0,0,0,.16);
    }

    .t1-test__item::before {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
        transform: skewX(-18deg);
    }

    .t1-test__item:hover::before {
        animation: t1Shine .9s ease;
    }

.t1-test__avatar {
    position: relative;
    z-index: 1;
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--treeBg,#AEB8A9);
    border: 7px solid #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

    .t1-test__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.t1-test__body {
    position: relative;
    z-index: 1;
    flex: 1;
}

.t1-test__text {
    font-size: clamp(17px,1.35vw,23px);
    line-height: 1.7;
    color: #4b544d;
    text-align: left;
}

    .t1-test__text p {
        margin: 0 0 12px;
    }

.t1-test__meta {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
    font-size: clamp(16px,1.3vw,22px);
    color: var(--c2,#50528D);
}

.t1-test__author {
    font-weight: 800;
}

.t1-heart__svg {
    width: 26px;
    height: 26px;
    fill: var(--c4,#FEAC9C);
    filter: drop-shadow(0 2px 2px rgba(0,0,0,.10));
}

/* ANIVERSARIOS */
.t1-anniv {
    width: 100%;
    background: radial-gradient(circle at top left, rgba(255,255,255,.22), transparent 32%), var(--annBg,#cdbba8);
    color: var(--annInk,#465047);
    padding: 56px 0 66px;
}

.t1-anniv__inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 52px;
}

.t1-anniv__title {
    margin: 0 0 24px;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: .02em;
    color: var(--annInk,#465047);
}

.t1-anniv__left {
    position: relative;
    padding-right: 28px;
    border-right: 4px solid rgba(70,80,71,.42);
}

.t1-anniv__tl {
    position: relative;
    padding-left: 38px;
}

    .t1-anniv__tl::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: rgba(70,80,71,.55);
        border-radius: 999px;
    }

.t1-anniv__item {
    position: relative;
    margin: 30px 0;
    padding: 18px 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.t1-anniv__dot {
    position: absolute;
    left: -38px;
    top: 24px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid var(--annInk,#465047);
    background: var(--annBg,#cdbba8);
    transform: translateX(-50%);
}

.t1-anniv__event {
    margin: 0 0 6px;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.t1-anniv__date {
    font-weight: 600;
}

.t1-anniv__desc {
    margin: 0;
    font-size: clamp(15px, 1.4vw, 20px);
    line-height: 1.6;
}

.t1-anniv__slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.t1-anniv__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.t1-anniv__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .7s ease, transform .7s ease;
}

    .t1-anniv__slide.is-active {
        opacity: 1;
        transform: scale(1);
    }

    .t1-anniv__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.t1-anniv__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.92);
    color: #333;
    font-size: 26px;
    line-height: 44px;
    box-shadow: 0 8px 20px rgba(0,0,0,.16);
    cursor: pointer;
    z-index: 5;
}

.t1-anniv__prev {
    left: 12px;
}

.t1-anniv__next {
    right: 12px;
}

/* IMPACTO PERSONAL Y PROFESIONAL */
.t1-impact {
    background: #fff;
    padding: 56px 0 66px;
    overflow: hidden;
}

    .t1-impact .t1-container {
        max-width: 1280px;
    }

.t1-impact__title {
    margin: 0 0 36px;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: .03em;
    color: var(--c2,#50528D);
    text-align: center;
}

.t1-impact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 34px;
}

.t1-impact__card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    background: radial-gradient(circle at top left, rgba(255,255,255,.16), transparent 34%), linear-gradient(135deg, #7d373d 0%, #642b31 100%);
    border-radius: 34px;
    padding: 30px;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 18px 46px rgba(0,0,0,.20);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .t1-impact__card:hover {
        transform: translateY(-8px);
        box-shadow: 0 26px 58px rgba(0,0,0,.24);
    }

    .t1-impact__card::before {
        display: none !important;
    }

    .t1-impact__card::after {
        content: "";
        position: absolute;
        top: -40%;
        left: -80%;
        width: 70%;
        height: 180%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
        transform: rotate(18deg);
    }

    .t1-impact__card:hover::after {
        animation: t1Shine .95s ease;
    }

.t1-impact__avatar {
    position: relative;
    z-index: 2;
    width: 170px;
    height: 170px;
    min-width: 170px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255,255,255,.95);
    box-shadow: 0 12px 28px rgba(0,0,0,.30);
    background: #ddd;
}

    .t1-impact__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.t1-impact__body {
    position: relative;
    z-index: 2;
    flex: 1;
}

.t1-impact__text {
    font-size: clamp(17px,1.3vw,22px);
    line-height: 1.7;
    color: #fff;
    text-align: left;
}

    .t1-impact__text p {
        margin: 0 0 12px;
    }

.t1-impact__meta {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    color: #ffbd8f;
    font-size: 18px;
}

.t1-impact__author {
    font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .t1-slider {
        --cols: 4;
    }
}

@media (max-width: 1000px) {
    .t1-bio__wrap,
    .t1-anniv__inner,
    .t1-test__grid,
    .t1-impact__grid {
        grid-template-columns: 1fr;
    }

    .t1-anniv__left {
        border-right: none;
        padding-right: 0;
    }

    .t1-slider {
        --cols: 3;
    }
}

@media (max-width: 768px) {
    body {
        background: radial-gradient(circle at top, rgba(112,144,220,.22), transparent 34%), linear-gradient(180deg, #eef1f7 0%, #dfe4ec 100%);
    }

    .t1 {
        width: min(100%, 430px);
        margin: 0 auto;
        min-height: 100dvh;
        background: #fff;
        box-shadow: 0 18px 55px rgba(0,0,0,.18);
    }

    .t1-container,
    .t1-bio__wrap,
    .t1-tree__inner,
    .t1-anniv__inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .t1-hero {
        min-height: 74dvh !important;
        align-items: flex-end;
        border-radius: 0 0 38px 38px;
    }

    .t1-hero__bg {
        background-position: center top !important;
    }

    .t1-hero__tint {
        background: linear-gradient( 180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.18) 42%, rgba(0,0,0,.74) 100% );
    }

    .t1-hero__inner {
        padding: 34px 22px 46px;
        text-align: left;
    }

    .t1-hero__name {
        font-size: clamp(34px, 12vw, 58px);
        letter-spacing: .045em;
    }

    .t1-bio__wrap {
        display: block;
        padding-top: 28px;
        padding-bottom: 36px;
    }

    .t1-bio__photo {
        width: 188px;
        height: 188px;
        margin: -92px auto 24px;
        border: 7px solid #fff;
        outline: none;
        position: relative;
        z-index: 3;
    }

    .t1-bio__content {
        border-radius: 30px;
        padding: 24px 20px;
    }

    .t1-bio__title {
        font-size: 28px;
        text-align: center;
    }

    .t1-bio__text {
        font-size: 16px;
        line-height: 1.72;
    }

    .t1-gallery {
        padding: 26px 0 34px;
    }

    .t1-slider {
        --cols: 1;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 14px 12px;
    }

        .t1-slider::-webkit-scrollbar {
            display: none;
        }

    .t1-track {
        transform: none !important;
        transition: none !important;
    }

    .t1-card {
        flex: 0 0 82%;
        scroll-snap-align: center;
        padding: 8px;
    }

    .t1-thumb {
        border-radius: 26px;
    }

    .t1-nav {
        display: none;
    }

    .t1-secTitle {
        font-size: clamp(30px, 9vw, 44px);
        line-height: 1.08;
    }

    .t1-video {
        padding: 36px 18px;
    }

    .t1-video__frame,
    .t1-video__player {
        border-radius: 26px;
    }

    .t1-tree {
        min-height: auto;
        padding: 34px 0;
        border-radius: 38px 38px 0 0;
    }

    .t1-tree__inner {
        padding-top: 22px;
        padding-bottom: 38px;
    }

    .t1-tree__title {
        font-size: clamp(28px, 9vw, 40px);
        margin-bottom: 22px;
    }

    .t1-tree__canvas {
        min-height: 500px;
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: 30px;
    }

    .t1-node {
        width: 96px !important;
        height: 96px !important;
        border-width: 5px;
    }

    .t1-node__name {
        min-width: 100px;
        max-width: 140px;
        font-size: 12px;
        padding: 7px 10px;
        white-space: normal;
        line-height: 1.15;
    }

    #t1TreeLinks line {
        stroke-width: 4;
    }

    .t1-test {
        padding: 38px 0 44px;
    }

    .t1-test__title,
    .t1-impact__title {
        font-size: 28px;
        line-height: 1.08;
        margin-bottom: 24px;
    }

    .t1-test__grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

        .t1-test__grid::-webkit-scrollbar {
            display: none;
        }

    .t1-test__item {
        flex: 0 0 88%;
        scroll-snap-align: center;
        display: block;
        border-radius: 30px;
        padding: 22px;
    }

    .t1-test__avatar {
        width: 118px;
        height: 118px;
        margin: 0 auto 16px;
        border-width: 6px;
    }

    .t1-test__text {
        font-size: 16px;
        line-height: 1.65;
    }

    .t1-test__meta {
        justify-content: flex-end;
        font-size: 15px;
    }

    .t1-anniv {
        padding: 38px 0 44px;
        border-radius: 38px;
        margin: 8px 0;
    }

    .t1-anniv__inner {
        display: block;
    }

    .t1-anniv__left {
        margin-bottom: 30px;
    }

    .t1-anniv__title {
        font-size: 30px;
        text-align: center;
    }

    .t1-anniv__tl {
        padding-left: 28px;
    }

    .t1-anniv__item {
        padding: 16px;
        border-radius: 22px;
    }

    .t1-anniv__dot {
        left: -28px;
        width: 24px;
        height: 24px;
    }

    .t1-anniv__event {
        font-size: 18px;
    }

    .t1-anniv__desc {
        font-size: 15px;
    }

    .t1-anniv__slider {
        border-radius: 26px;
    }

    .t1-impact {
        padding: 38px 0 46px;
    }

    .t1-impact__grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .t1-impact__card {
        display: block;
        width: 100%;
        min-height: auto;
        padding: 24px 20px 26px;
        border-radius: 30px;
    }

        .t1-impact__card::before {
            inset: 12px;
            border-width: 4px;
            border-radius: 24px;
        }

    .t1-impact__avatar {
        width: 118px;
        height: 118px;
        min-width: unset;
        margin: 0 auto 18px;
        border-width: 5px;
    }

    .t1-impact__body {
        padding-left: 0;
    }

    .t1-impact__text {
        font-size: 16px;
        line-height: 1.65;
    }

    .t1-impact__meta {
        margin-top: 16px;
        font-size: 15px;
    }

    .t1-heart__svg {
        width: 22px;
        height: 22px;
    }
}
