/* === CONTENUTO THANK YOU === */
.dt-ty-content {
    width: 80%;
    margin: 60px auto 80px;
}

/* Estende .stat-card da gmde_shared.css:
   border, border-radius: 15px, display: flex, gap: 12px
   vengono da shared — qui sovrascriviamo solo direzione e padding */
.dt-ty-card {
    flex-direction: row;
    gap: 40px;
    padding: 48px 40px;
    align-items: flex-start;
}

.dt-ty-card__image {
    flex-shrink: 0;
    width: 160px;
}

.dt-ty-card__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.dt-ty-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dt-ty-card__body p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3c;
    margin: 0;
}

/* === RESPONSIVE === */
@media screen and (max-width: 800px) {
    .dt-ty-content {
        width: 90%;
        margin: 40px auto 60px;
    }

    .dt-ty-card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
    }

    .dt-ty-card__image {
        width: 100px;
    }
}

@media screen and (max-width: 600px) {
    .dt-ty-content {
        width: 95%;
    }
}
