/**
 * Trusted Partner Section
 */

.mivida-tp-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.mivida-tp-header {
    text-align: center;
    margin-bottom: 50px;
}

.mivida-tp-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #BA9E82;
    margin: 0 0 16px;
    font-weight: 600;
}

.mivida-tp-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.mivida-tp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .mivida-tp-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .mivida-tp-grid {
        gap: 40px;
    }
}

.mivida-tp-card {
    background: #fcfcfc;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mivida-tp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: #f0f0f0;
}

.mivida-tp-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(186, 158, 130, 0.1);
    color: #BA9E82;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mivida-tp-card:hover .mivida-tp-icon {
    background-color: #BA9E82;
    color: #ffffff;
}

.mivida-tp-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.3;
}

.mivida-tp-card-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}
