/* --- SECTION BASE --- */
.dsh-tm-section {
    padding: 55px 0; /* py-24 */
    background-color: #f9fafb; /* bg-gray-50 */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dsh-tm-container {
    max-width: 1380px; /* max-w-7xl */
    margin: 0 auto;
    padding: 0 16px; /* px-4 */
}

@media (min-width: 768px) {
    .dsh-tm-container {
        padding: 0 48px; /* md:px-12 */
    }
}

.dsh-tm-main-heading {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    text-align: center;
    color: #111827; /* gray-900 */
    margin-bottom: 2rem; /* mb-16 */
}

/* --- GRID LAYOUT --- */
.dsh-tm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px; /* gap-8 */
}

/* Tablet: 2 Columns */
@media (min-width: 768px) {
    .dsh-tm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3 Columns */
@media (min-width: 1024px) {
    .dsh-tm-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- CARD STYLING --- */
.dsh-tm-card {
    background-color: #ffffff;
    padding: 32px; /* p-8 */
    border-radius: 10px; /* rounded-2xl */
    border: 1px solid #f3f4f6; /* border-gray-100 */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* shadow-sm */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.dsh-tm-card:hover {
    transform: translateY(-5px);
}

/* STARS */
.dsh-tm-stars {
    display: flex;
    gap: 4px; /* space-x-1 */
    margin-bottom: 24px; /* mb-6 */
}

.dsh-tm-stars i {
    color: #fbbf24; /* text-yellow-400 */
    font-size: 1rem;
}

/* QUOTE */
.dsh-tm-quote {
    color: #4b5563; /* text-gray-600 */
    font-size: 0.875rem; /* text-sm */
    font-style: italic;
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 32px; /* mb-8 */
    flex-grow: 1; /* Ensures footer stays at bottom */
}

/* AUTHOR FOOTER */
.dsh-tm-footer {
    margin-top: auto; /* mt-auto equivalent */
}

.dsh-tm-name {
    font-weight: 700;
    color: #111827; /* gray-900 */
    margin: 0;
}

.dsh-tm-designation {
    color: #9ca3af; /* text-gray-400 */
    font-size: 0.75rem; /* text-xs */
    margin-top: 4px; /* mt-1 */
}