/* =====================================================
   GLOBAL.CSS – TYPOGRAPHY, SPACING & LAYOUT

   Purpose:
   - Base font sizes, spacing, and section gaps
   - Content width constraints for responsive layout
   - General grid and two-column layouts
   - Handles basic responsive adjustments

   Usage:
   - Include on all pages before component-specific styles
   - Medium-to-medium-well CSS users can safely extend

   Sections:
   1. Typography & spacing
   2. Content constrain
   3. Layouts & grid
===================================================== */

.text80 { font-size: 0.8rem; }
.text90 { font-size: 0.9rem; }
.text110 { font-size: 1.1rem; }
.section-gap { margin: 1.5rem 0; }

/* =====================================
   CONTENT CONSTRAIN
===================================== */
.content-constrain {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
    width: 100%;
}

/* =====================================
   LAYOUTS & GRID
===================================== */
.container { max-width: 100%; width: 100%; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tab-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 10px; }
.form-wrapper { margin: 20px 12px; padding: 16px; }

@media (max-width: 768px) {
  .section { padding: 0 16px; }
  .section .container,
  .section .row { padding: 0; }
  .two-col { grid-template-columns: 1fr; }
  .tab-group { grid-template-columns: 1fr; }
}