/* src/styles/components/trust_module.css */

/* Desktop Styles */
.trust-module {
    background-color: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    position: sticky;
    top: 120px;
}
.trust-module-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-deep-blue);
}

.trust-module-text {
    /* No specific styles needed for desktop */
}

.trust-module h4 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.trust-module-title {
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-module-statement {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.trust-module .btn {
    width: 100%;
    box-sizing: border-box;
}

/* ===== FIX: This block now ONLY handles the change in appearance for mobile ===== */
@media (max-width: 992px) {
    .trust-module {
        display: none; /* Hide trust module on mobile */
    }
}