 /* ── SWITCH ── */
 
 .physicians-section .sec-h {
     margin-left: auto;
     margin-right: auto;
 }
 
 .sw-cols {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
     margin-bottom: 26px;
 }
 
 .sw-col {
     border-radius: 18px;
     padding: 28px;
 }
 
 .sw-bad {
     background: #fff0ef;
     border: 1px solid #fad6d3;
 }
 
 .sw-good {
     background: var(--ss-teal-soft);
     border: 1px solid #bfeee8;
 }
 
 .sw-label {
     font-size: 11px;
     font-weight: 600;
     letter-spacing: .06em;
     text-transform: uppercase;
     margin-bottom: 18px;
     display: flex;
     align-items: center;
     gap: 7px;
 }
 
.sw-bad .sw-label {
    color: #dc2626;
}
 
 .sw-good .sw-label {
     color: var(--teal-dk);
 }
 
 .sw-item {
     display: grid;
     grid-template-columns: 18px 1fr;
     gap: 11px;
     padding: 10px 0;
     border-bottom: 1px solid rgba(0, 0, 0, .05);
     align-items: start;
 }
 
 .sw-item:last-child {
     border-bottom: none;
 }
 
 .sw-ic,
 .t-icon {
     display: inline-flex;
     align-items: center;
     flex-shrink: 0;
 }
 
 .sw-t {
     font-size: 14px;
     font-weight: 600;
     color: var(--ink);
     line-height: 1.3;
     letter-spacing: -.01em;
 }
 
 .sw-s {
     font-size: 12px;
     color: var(--body);
     margin-top: 2px;
     font-weight: 400;
     display: block;
 }

 @media(max-width: 840px) {
     .sw-cols {
         grid-template-columns: 1fr;
         direction: ltr;
     }
 }