/* ==========================================================================
   TenantSectionLayout.css
   Shared layout for constrained tenant sections (single source of truth).
   Use with the `tenant-section` class; exclude full-width breakout sections.
   ========================================================================== */

.tenant-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 2.7rem auto;
    padding: 2.6rem 1.5rem;
    box-sizing: border-box;
}

@media (max-width: 800px) {
    .tenant-section {
        max-width: 100vw;
        padding: 1.5rem 0.8rem 1.8rem 0.8rem;
    }
}