

body {
    text-align: center;

}



/* Each column */
.t-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1; /* Ensures equal column width */
}

/* Testimony item */
.t-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Profile image */
.t-img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Name */
.t-name {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 8px;
}

/* Testimony text */
.t-testimony {
    font-size: 19px;
    font-style: italic;
    color: #555;
    padding: 20px;
    line-height: 1.5;
}

/* Responsive behavior */
@media (max-width: 900px) {
    .tri-col {
        flex-direction: column; /* Stacks columns on smaller screens */
        align-items: center;
    }

    .t-list {
        width: 100%;
    }
}
