/* ===============================================================================
   TL-FRAMEWORK.CSS - Grid System, Utilities & Component Replacements
   ===============================================================================
   
   This file provides tl-* prefixed replacements for Bootstrap component classes
   and utility classes. It is the foundational framework layer for the site.
   These are legacy component wrappers that map Bootstrap classes to their
   tl-* equivalents for consistent naming throughout the project.
   
   Sections:
   - Card Components
   - Button Components
   - Form Components
   - Table Components
   - Badge Components
   - Alert Components
   - Other Components
   
   ----------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------
   CARD COMPONENTS
   ----------------------------------------------------------------------------- */

.tl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.tl-card > hr {
  margin-right: 0;
  margin-left: 0;
}

.tl-card > .tl-list-group:first-child .tl-list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.tl-card > .tl-list-group:last-child .tl-list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.tl-card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.tl-card-header:first-child {
  border-radius: 0.25rem 0.25rem 0 0;
}

.tl-card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.tl-card-footer:last-child {
  border-radius: 0 0 0.25rem 0.25rem;
}

.tl-card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.tl-card-title {
  margin-bottom: 0.75rem;
}

.tl-card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.tl-card-text:last-child {
  margin-bottom: 0;
}

.tl-card-link:hover {
  text-decoration: none;
}

.tl-card-link + .tl-card-link {
  margin-left: 1.25rem;
}

.tl-card-img-top {
  width: 100%;
  border-radius: 0.25rem 0.25rem 0 0;
}

.tl-card-img-bottom {
  width: 100%;
  border-radius: 0 0 0.25rem 0.25rem;
}

.tl-card-img {
  width: 100%;
  border-radius: 0.25rem;
}

.tl-card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: 0.25rem;
}

/* Dark mode support */
.dark .tl-card {
  background-color: #2a2a2a;
  border-color: #444;
  color: #cdcdcd;
}

.dark .tl-card-header {
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: #444;
}

.dark .tl-card-footer {
  background-color: rgba(255, 255, 255, 0.05);
  border-top-color: #444;
}

/* -----------------------------------------------------------------------------
   BUTTON COMPONENTS
   ----------------------------------------------------------------------------- */

.tl-btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.tl-btn-primary:hover {
  color: #fff;
  background-color: #0056b3;
  border-color: #004085;
}

.tl-btn-primary:focus,
.tl-btn-primary.focus {
  color: #fff;
  background-color: #0056b3;
  border-color: #004085;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.tl-btn-primary:active,
.tl-btn-primary.active,
.tl-show > .tl-btn-primary.tl-dropdown-toggle {
  color: #fff;
  background-color: #004085;
  border-color: #003062;
}

.tl-btn-primary:disabled,
.tl-btn-primary.disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.tl-btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.tl-btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.tl-btn-secondary:focus,
.tl-btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.tl-btn-secondary:active,
.tl-btn-secondary.active,
.tl-show > .tl-btn-secondary.tl-dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.tl-btn-secondary:disabled,
.tl-btn-secondary.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.tl-btn-outline {
  color: #007bff;
  border: 1px solid #007bff;
  background-color: transparent;
}

.tl-btn-outline:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.tl-btn-outline:focus,
.tl-btn-outline.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.tl-btn-outline:active,
.tl-btn-outline.active {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.tl-btn-outline:disabled,
.tl-btn-outline.disabled {
  color: #007bff;
  background-color: transparent;
}

/* Button sizes */
.tl-btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.tl-btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* Dark mode support */
.dark .tl-btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
}

.dark .tl-btn-primary:hover {
  background-color: #004085;
  border-color: #004085;
}

.dark .tl-btn-secondary {
  background-color: #5a6268;
  border-color: #5a6268;
}

.dark .tl-btn-secondary:hover {
  background-color: #545b62;
  border-color: #545b62;
}

/* -----------------------------------------------------------------------------
   FORM COMPONENTS
   ----------------------------------------------------------------------------- */

.tl-form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.tl-form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.tl-form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.tl-form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.tl-form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.tl-form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.tl-form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.tl-form-control:disabled,
.tl-form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.tl-form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.tl-form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.tl-form-group {
  margin-bottom: 1rem;
}

.tl-form-check {
  position: relative;
  display: block;
  padding-left: 1.5rem;
}

.tl-form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.5rem;
}

.tl-form-check-label {
  margin-bottom: 0;
}

/* Dark mode support */
.dark .tl-form-control {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #353535;
  color: #cdcdcd;
}

.dark .tl-form-control:focus {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #999;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}

/* -----------------------------------------------------------------------------
   TABLE COMPONENTS
   ----------------------------------------------------------------------------- */

.tl-table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-collapse: collapse;
}

.tl-table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.tl-table > tbody > tr > td,
.tl-table > tbody > tr > th,
.tl-table > tfoot > tr > td,
.tl-table > tfoot > tr > th,
.tl-table > thead > tr > td,
.tl-table > thead > tr > th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.tl-table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.tl-table-striped > tbody > tr:nth-of-type(odd) > td,
.tl-table-striped > tbody > tr:nth-of-type(odd) > th {
  background-color: rgba(0, 0, 0, 0.05);
}

.tl-table-bordered {
  border: 1px solid #dee2e6;
}

.tl-table-bordered > thead > tr > th,
.tl-table-bordered > tbody > tr > td {
  border: 1px solid #dee2e6;
}

.tl-table-hover > tbody > tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

/* Dark mode support */
.dark .tl-table {
  color: #cdcdcd;
}

.dark .tl-table > thead > tr > th {
  border-bottom-color: rgba(255, 255, 255, 0.07);
  background-color: rgba(0, 0, 0, 0.15);
}

.dark .tl-table > tbody > tr > td {
  border-top-color: rgba(255, 255, 255, 0.07);
}

.dark .tl-table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* -----------------------------------------------------------------------------
   BADGE COMPONENTS
   ----------------------------------------------------------------------------- */

.tl-badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.tl-badge-primary {
  color: #fff;
  background-color: #007bff;
}

.tl-badge-primary[href]:hover,
.tl-badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #0056b3;
}

.tl-badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.tl-badge-secondary[href]:hover,
.tl-badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}

.tl-badge-success {
  color: #fff;
  background-color: #28a745;
}

.tl-badge-success[href]:hover,
.tl-badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}

.tl-badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.tl-badge-danger[href]:hover,
.tl-badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}

.tl-badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.tl-badge-warning[href]:hover,
.tl-badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #e0a800;
}

.tl-badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.tl-badge-info[href]:hover,
.tl-badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}

.tl-badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.tl-badge-light[href]:hover,
.tl-badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

.tl-badge-dark {
  color: #fff;
  background-color: #343a40;
}

.tl-badge-dark[href]:hover,
.tl-badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1d1f21;
}

/* -----------------------------------------------------------------------------
   ALERT COMPONENTS
   ----------------------------------------------------------------------------- */

.tl-alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.tl-alert.alert-icon {
  padding-left: 70px;
}

/* Alert color variants (must be after base .tl-alert) */
.tl-alert.alert-warning,
.tl-alert-warning {
  color: #856404 !important;
  background-color: #fff3cd !important;
  border-color: #ffeeba !important;
}
.tl-alert.alert-info,
.tl-alert-info {
  color: #0c5460 !important;
  background-color: #d1ecf1 !important;
  border-color: #bee5eb !important;
}
.tl-alert.alert-success,
.tl-alert-success {
  color: #155724 !important;
  background-color: #d4edda !important;
  border-color: #c3e6cb !important;
}
.tl-alert.alert-danger,
.tl-alert-danger {
  color: #721c24 !important;
  background-color: #f8d7da !important;
  border-color: #f5c6cb !important;
}

.tl-alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.tl-alert-primary hr {
  border-top-color: #9fcdff;
}

.tl-alert-primary .tl-alert-link {
  color: #002752;
}

.tl-alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.tl-alert-secondary hr {
  border-top-color: #c8cbcf;
}

.tl-alert-secondary .tl-alert-link {
  color: #202326;
}

.tl-alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.tl-alert-success hr {
  border-top-color: #b1dfbb;
}

.tl-alert-success .tl-alert-link {
  color: #0b2e13;
}

.tl-alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.tl-alert-danger hr {
  border-top-color: #f1b0b7;
}

.tl-alert-danger .tl-alert-link {
  color: #491217;
}

.tl-alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.tl-alert-warning hr {
  border-top-color: #ffe69c;
}

.tl-alert-warning .tl-alert-link {
  color: #533f03;
}

.tl-alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.tl-alert-info hr {
  border-top-color: #abdde5;
}

.tl-alert-info .tl-alert-link {
  color: #062c33;
}

.tl-alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.tl-alert-light hr {
  border-top-color: #ececf6;
}

.tl-alert-light .tl-alert-link {
  color: #686868;
}

.tl-alert-dark {
  color: #1b1e21;
  background-color: #d6d8db;
  border-color: #c6c8ca;
}

.tl-alert-dark hr {
  border-top-color: #b9bbbe;
}

.tl-alert-dark .tl-alert-link {
  color: #040505;
}

.tl-alert-link {
  font-weight: 700;
}

/* Dark mode support */
.dark .tl-alert {
  background-color: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
  color: #cdcdcd;
}

/* -----------------------------------------------------------------------------
   OTHER COMPONENTS
   ----------------------------------------------------------------------------- */

.tl-list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.tl-list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.tl-list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.tl-list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.tl-list-group-item + .tl-list-group-item {
  border-top-width: 0;
}

.tl-list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.tl-list-group-item.disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

/* Dark mode support */
.dark .tl-list-group-item {
  background-color: #2a2a2a;
  border-color: #444;
  color: #cdcdcd;
}

.dark .tl-list-group-item.active {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* -----------------------------------------------------------------------------
   ACCESSIBILITY & REDUCED MOTION
   ----------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .tl-btn,
  .tl-form-control,
  .tl-card,
  .tl-alert {
    transition: none !important;
  }
}
/* ===============================================================================
   TL-UTILITIES.CSS - Bootstrap Utility Class Replacements
   ===============================================================================
   
   This file provides tl-* prefixed replacements for Bootstrap utility classes.
   All Bootstrap utilities are mapped to their tl-* equivalents for consistent
   naming throughout the project.
   
   Sections:
   - Grid System (container, row, col-*)
   - Display Utilities (d-*, visibility)
   - Flexbox Utilities (align-items, justify-content, flex-*, gap)
   - Text Utilities (text-align, text-color, text-transform)
   - Spacing Utilities (margin, padding)
   - Responsive Variants (all breakpoints)
   
   ----------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------
   GRID SYSTEM
   ----------------------------------------------------------------------------- */

/* Container */
.tl-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Container Fluid */
.tl-container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 575px) {
  .tl-container,
  .tl-container-fluid {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (min-width: 576px) {
  .tl-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .tl-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .tl-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .tl-container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .tl-container {
    max-width: 1320px;
  }
}

/* Row */
.tl-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Columns */
.tl-col-1, .tl-col-2, .tl-col-3, .tl-col-4, .tl-col-5, .tl-col-6,
.tl-col-7, .tl-col-8, .tl-col-9, .tl-col-10, .tl-col-11, .tl-col-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.tl-col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.tl-col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.tl-col-3 { flex: 0 0 25%; max-width: 25%; }
.tl-col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.tl-col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.tl-col-6 { flex: 0 0 50%; max-width: 50%; }
.tl-col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.tl-col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.tl-col-9 { flex: 0 0 75%; max-width: 75%; }
.tl-col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.tl-col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.tl-col-12 { flex: 0 0 100%; max-width: 100%; }

/* Small breakpoint (576px) */
@media (min-width: 576px) {
  .tl-col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .tl-col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .tl-col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .tl-col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .tl-col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .tl-col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .tl-col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .tl-col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .tl-col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .tl-col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .tl-col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .tl-col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Medium breakpoint (768px) */
@media (min-width: 768px) {
  .tl-col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .tl-col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .tl-col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .tl-col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .tl-col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .tl-col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .tl-col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .tl-col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .tl-col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .tl-col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .tl-col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .tl-col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Large breakpoint (992px) */
@media (min-width: 992px) {
  .tl-col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .tl-col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .tl-col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .tl-col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .tl-col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .tl-col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .tl-col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .tl-col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .tl-col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .tl-col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .tl-col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .tl-col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Extra large breakpoint (1200px) */
@media (min-width: 1200px) {
  .tl-col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .tl-col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .tl-col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .tl-col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .tl-col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .tl-col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .tl-col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .tl-col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .tl-col-xl-9 { flex: 0 0 75%; max-width: 75%; }
  .tl-col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .tl-col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .tl-col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* XXL breakpoint (1400px) */
@media (min-width: 1400px) {
  .tl-col-xxl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .tl-col-xxl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .tl-col-xxl-3 { flex: 0 0 25%; max-width: 25%; }
  .tl-col-xxl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .tl-col-xxl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .tl-col-xxl-6 { flex: 0 0 50%; max-width: 50%; }
  .tl-col-xxl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .tl-col-xxl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .tl-col-xxl-9 { flex: 0 0 75%; max-width: 75%; }
  .tl-col-xxl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .tl-col-xxl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .tl-col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* -----------------------------------------------------------------------------
   DISPLAY UTILITIES
   ----------------------------------------------------------------------------- */

.tl-d-none { display: none !important; }
.tl-d-inline { display: inline !important; }
.tl-d-inline-block { display: inline-block !important; }
.tl-d-block { display: block !important; }
.tl-d-flex { display: flex !important; }
.tl-d-grid { display: grid !important; }
.tl-d-table { display: table !important; }
.tl-d-table-row { display: table-row !important; }
.tl-d-table-cell { display: table-cell !important; }

@media (max-width: 575.98px) {
  .tl-d-sm-none { display: none !important; }
  .tl-d-sm-inline { display: inline !important; }
  .tl-d-sm-inline-block { display: inline-block !important; }
  .tl-d-sm-block { display: block !important; }
  .tl-d-sm-flex { display: flex !important; }
  .tl-d-sm-grid { display: grid !important; }
  .tl-d-sm-table { display: table !important; }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .tl-d-md-none { display: none !important; }
  .tl-d-md-inline { display: inline !important; }
  .tl-d-md-inline-block { display: inline-block !important; }
  .tl-d-md-block { display: block !important; }
  .tl-d-md-flex { display: flex !important; }
  .tl-d-md-grid { display: grid !important; }
  .tl-d-md-table { display: table !important; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .tl-d-lg-none { display: none !important; }
  .tl-d-lg-inline { display: inline !important; }
  .tl-d-lg-inline-block { display: inline-block !important; }
  .tl-d-lg-flex { display: flex !important; }
  .tl-d-lg-grid { display: grid !important; }
  .tl-d-lg-table { display: table !important; }
}

@media (min-width: 992px) {
  .tl-d-lg-none { display: none !important; }
  .tl-d-lg-inline { display: inline !important; }
  .tl-d-lg-inline-block { display: inline-block !important; }
  .tl-d-lg-block { display: block !important; }
  .tl-d-lg-flex { display: flex !important; }
  .tl-d-lg-grid { display: grid !important; }
  .tl-d-lg-table { display: table !important; }
}

@media (min-width: 1200px) {
  .tl-d-xl-none { display: none !important; }
  .tl-d-xl-inline { display: inline !important; }
  .tl-d-xl-inline-block { display: inline-block !important; }
  .tl-d-xl-block { display: block !important; }
  .tl-d-xl-flex { display: flex !important; }
  .tl-d-xl-grid { display: grid !important; }
  .tl-d-xl-table { display: table !important; }
}

@media (min-width: 1400px) {
  .tl-d-xxl-none { display: none !important; }
  .tl-d-xxl-inline { display: inline !important; }
  .tl-d-xxl-inline-block { display: inline-block !important; }
  .tl-d-xxl-block { display: block !important; }
  .tl-d-xxl-flex { display: flex !important; }
  .tl-d-xxl-grid { display: grid !important; }
  .tl-d-xxl-table { display: table !important; }
}

/* -----------------------------------------------------------------------------
   FLEXBOX UTILITIES
   ----------------------------------------------------------------------------- */

/* Flex Direction */
.tl-flex-row { flex-direction: row !important; }
.tl-flex-column { flex-direction: column !important; }
.tl-flex-row-reverse { flex-direction: row-reverse !important; }
.tl-flex-column-reverse { flex-direction: column-reverse !important; }

/* Flex Wrap */
.tl-flex-wrap { flex-wrap: wrap !important; }
.tl-flex-nowrap { flex-wrap: nowrap !important; }
.tl-flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

/* Order */
.tl-order-0 { order: 0 !important; }
.tl-order-1 { order: 1 !important; }
.tl-order-2 { order: 2 !important; }
.tl-order-3 { order: 3 !important; }
.tl-order-4 { order: 4 !important; }
.tl-order-5 { order: 5 !important; }
.tl-order-6 { order: 6 !important; }
.tl-order-7 { order: 7 !important; }
.tl-order-8 { order: 8 !important; }
.tl-order-9 { order: 9 !important; }
.tl-order-10 { order: 10 !important; }
.tl-order-11 { order: 11 !important; }
.tl-order-12 { order: 12 !important; }

/* Responsive Order - Small breakpoint (576px) */
@media (min-width: 576px) {
  .tl-order-sm-0 { order: 0 !important; }
  .tl-order-sm-1 { order: 1 !important; }
  .tl-order-sm-2 { order: 2 !important; }
  .tl-order-sm-3 { order: 3 !important; }
  .tl-order-sm-4 { order: 4 !important; }
  .tl-order-sm-5 { order: 5 !important; }
  .tl-order-sm-6 { order: 6 !important; }
  .tl-order-sm-7 { order: 7 !important; }
  .tl-order-sm-8 { order: 8 !important; }
  .tl-order-sm-9 { order: 9 !important; }
  .tl-order-sm-10 { order: 10 !important; }
  .tl-order-sm-11 { order: 11 !important; }
  .tl-order-sm-12 { order: 12 !important; }
}

/* Responsive Order - Medium breakpoint (768px) */
@media (min-width: 768px) {
  .tl-order-md-0 { order: 0 !important; }
  .tl-order-md-1 { order: 1 !important; }
  .tl-order-md-2 { order: 2 !important; }
  .tl-order-md-3 { order: 3 !important; }
  .tl-order-md-4 { order: 4 !important; }
  .tl-order-md-5 { order: 5 !important; }
  .tl-order-md-6 { order: 6 !important; }
  .tl-order-md-7 { order: 7 !important; }
  .tl-order-md-8 { order: 8 !important; }
  .tl-order-md-9 { order: 9 !important; }
  .tl-order-md-10 { order: 10 !important; }
  .tl-order-md-11 { order: 11 !important; }
  .tl-order-md-12 { order: 12 !important; }
}

/* Responsive Order - Large breakpoint (992px) */
@media (min-width: 992px) {
  .tl-order-lg-0 { order: 0 !important; }
  .tl-order-lg-1 { order: 1 !important; }
  .tl-order-lg-2 { order: 2 !important; }
  .tl-order-lg-3 { order: 3 !important; }
  .tl-order-lg-4 { order: 4 !important; }
  .tl-order-lg-5 { order: 5 !important; }
  .tl-order-lg-6 { order: 6 !important; }
  .tl-order-lg-7 { order: 7 !important; }
  .tl-order-lg-8 { order: 8 !important; }
  .tl-order-lg-9 { order: 9 !important; }
  .tl-order-lg-10 { order: 10 !important; }
  .tl-order-lg-11 { order: 11 !important; }
  .tl-order-lg-12 { order: 12 !important; }
}

/* Responsive Order - Extra large breakpoint (1200px) */
@media (min-width: 1200px) {
  .tl-order-xl-0 { order: 0 !important; }
  .tl-order-xl-1 { order: 1 !important; }
  .tl-order-xl-2 { order: 2 !important; }
  .tl-order-xl-3 { order: 3 !important; }
  .tl-order-xl-4 { order: 4 !important; }
  .tl-order-xl-5 { order: 5 !important; }
  .tl-order-xl-6 { order: 6 !important; }
  .tl-order-xl-7 { order: 7 !important; }
  .tl-order-xl-8 { order: 8 !important; }
  .tl-order-xl-9 { order: 9 !important; }
  .tl-order-xl-10 { order: 10 !important; }
  .tl-order-xl-11 { order: 11 !important; }
  .tl-order-xl-12 { order: 12 !important; }
}

/* Responsive Order - XXL breakpoint (1400px) */
@media (min-width: 1400px) {
  .tl-order-xxl-0 { order: 0 !important; }
  .tl-order-xxl-1 { order: 1 !important; }
  .tl-order-xxl-2 { order: 2 !important; }
  .tl-order-xxl-3 { order: 3 !important; }
  .tl-order-xxl-4 { order: 4 !important; }
  .tl-order-xxl-5 { order: 5 !important; }
  .tl-order-xxl-6 { order: 6 !important; }
  .tl-order-xxl-7 { order: 7 !important; }
  .tl-order-xxl-8 { order: 8 !important; }
  .tl-order-xxl-9 { order: 9 !important; }
  .tl-order-xxl-10 { order: 10 !important; }
  .tl-order-xxl-11 { order: 11 !important; }
  .tl-order-xxl-12 { order: 12 !important; }
}

/* Justify Content */
.tl-justify-content-start { justify-content: flex-start !important; }
.tl-justify-content-end { justify-content: flex-end !important; }
.tl-justify-content-center { justify-content: center !important; }
.tl-justify-content-between { justify-content: space-between !important; }
.tl-justify-content-around { justify-content: space-around !important; }
.tl-justify-content-evenly { justify-content: space-evenly !important; }

/* Align Items */
.tl-align-items-start { align-items: flex-start !important; }
.tl-align-items-end { align-items: flex-end !important; }
.tl-align-items-center { align-items: center !important; }
.tl-align-items-baseline { align-items: baseline !important; }
.tl-align-items-stretch { align-items: stretch !important; }

/* Align Content */
.tl-align-content-start { align-content: flex-start !important; }
.tl-align-content-end { align-content: flex-end !important; }
.tl-align-content-center { align-content: center !important; }
.tl-align-content-between { align-content: space-between !important; }
.tl-align-content-around { align-content: space-around !important; }
.tl-align-content-stretch { align-content: stretch !important; }

/* Align Self */
.tl-align-self-auto { align-self: auto !important; }
.tl-align-self-start { align-self: flex-start !important; }
.tl-align-self-end { align-self: flex-end !important; }
.tl-align-self-center { align-self: center !important; }
.tl-align-self-baseline { align-self: baseline !important; }
.tl-align-self-stretch { align-self: stretch !important; }

/* Gap */
.tl-gap-0 { gap: 0 !important; }
.tl-gap-1 { gap: 0.25rem !important; }
.tl-gap-2 { gap: 0.5rem !important; }
.tl-gap-3 { gap: 1rem !important; }
.tl-gap-4 { gap: 1.5rem !important; }
.tl-gap-5 { gap: 3rem !important; }

/* -----------------------------------------------------------------------------
   TEXT UTILITIES
   ----------------------------------------------------------------------------- */

/* Text Alignment */
.tl-text-left { text-align: left !important; }
.tl-text-right { text-align: right !important; }
.tl-text-center { text-align: center !important; }
.tl-text-justify { text-align: justify !important; }

/* Text Transform */
.tl-text-lowercase { text-transform: lowercase !important; }
.tl-text-uppercase { text-transform: uppercase !important; }
.tl-text-capitalize { text-transform: capitalize !important; }

/* Text Decoration */
.tl-text-decoration-none { text-decoration: none !important; }
.tl-text-decoration-underline { text-decoration: underline !important; }
.tl-text-decoration-line-through { text-decoration: line-through !important; }

/* Text Wrap */
.tl-text-wrap { white-space: normal !important; }
.tl-text-nowrap { white-space: nowrap !important; }
.tl-text-truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

/* -----------------------------------------------------------------------------
   SPACING UTILITIES (Margin & Padding)
   ----------------------------------------------------------------------------- */

/* Margin */
.tl-m-0 { margin: 0 !important; }
.tl-m-1 { margin: 0.25rem !important; }
.tl-m-2 { margin: 0.5rem !important; }
.tl-m-3 { margin: 1rem !important; }
.tl-m-4 { margin: 1.5rem !important; }
.tl-m-5 { margin: 3rem !important; }

/* Margin Top */
.tl-mt-0 { margin-top: 0 !important; }
.tl-mt-1 { margin-top: 0.25rem !important; }
.tl-mt-2 { margin-top: 0.5rem !important; }
.tl-mt-3 { margin-top: 1rem !important; }
.tl-mt-4 { margin-top: 1.5rem !important; }
.tl-mt-5 { margin-top: 3rem !important; }

/* Margin Bottom */
.tl-mb-0 { margin-bottom: 0 !important; }
.tl-mb-1 { margin-bottom: 0.25rem !important; }
.tl-mb-2 { margin-bottom: 0.5rem !important; }
.tl-mb-3 { margin-bottom: 1rem !important; }
.tl-mb-4 { margin-bottom: 1.5rem !important; }
.tl-mb-5 { margin-bottom: 3rem !important; }

/* Margin Left */
.tl-ml-0 { margin-left: 0 !important; }
.tl-ml-1 { margin-left: 0.25rem !important; }
.tl-ml-2 { margin-left: 0.5rem !important; }
.tl-ml-3 { margin-left: 1rem !important; }
.tl-ml-4 { margin-left: 1.5rem !important; }
.tl-ml-5 { margin-left: 3rem !important; }
.tl-ml-auto { margin-left: auto !important; }

/* Margin Right */
.tl-mr-0 { margin-right: 0 !important; }
.tl-mr-1 { margin-right: 0.25rem !important; }
.tl-mr-2 { margin-right: 0.5rem !important; }
.tl-mr-3 { margin-right: 1rem !important; }
.tl-mr-4 { margin-right: 1.5rem !important; }
.tl-mr-5 { margin-right: 3rem !important; }
.tl-mr-auto { margin-right: auto !important; }

/* Padding */
.tl-p-0 { padding: 0 !important; }
.tl-p-1 { padding: 0.25rem !important; }
.tl-p-2 { padding: 0.5rem !important; }
.tl-p-3 { padding: 1rem !important; }
.tl-p-4 { padding: 1.5rem !important; }
.tl-p-5 { padding: 3rem !important; }

/* Padding Top */
.tl-pt-0 { padding-top: 0 !important; }
.tl-pt-1 { padding-top: 0.25rem !important; }
.tl-pt-2 { padding-top: 0.5rem !important; }
.tl-pt-3 { padding-top: 1rem !important; }
.tl-pt-4 { padding-top: 1.5rem !important; }
.tl-pt-5 { padding-top: 3rem !important; }

/* Padding Bottom */
.tl-pb-0 { padding-bottom: 0 !important; }
.tl-pb-1 { padding-bottom: 0.25rem !important; }
.tl-pb-2 { padding-bottom: 0.5rem !important; }
.tl-pb-3 { padding-bottom: 1rem !important; }
.tl-pb-4 { padding-bottom: 1.5rem !important; }
.tl-pb-5 { padding-bottom: 3rem !important; }

/* Padding Left */
.tl-pl-0 { padding-left: 0 !important; }
.tl-pl-1 { padding-left: 0.25rem !important; }
.tl-pl-2 { padding-left: 0.5rem !important; }
.tl-pl-3 { padding-left: 1rem !important; }
.tl-pl-4 { padding-left: 1.5rem !important; }
.tl-pl-5 { padding-left: 3rem !important; }

/* Padding Right */
.tl-pr-0 { padding-right: 0 !important; }
.tl-pr-1 { padding-right: 0.25rem !important; }
.tl-pr-2 { padding-right: 0.5rem !important; }
.tl-pr-3 { padding-right: 1rem !important; }
.tl-pr-4 { padding-right: 1.5rem !important; }
.tl-pr-5 { padding-right: 3rem !important; }

/* Responsive Margin Bottom */
@media (min-width: 992px) {
  .tl-mb-lg-0 { margin-bottom: 0 !important; }
  .tl-mb-lg-1 { margin-bottom: 0.25rem !important; }
  .tl-mb-lg-2 { margin-bottom: 0.5rem !important; }
  .tl-mb-lg-3 { margin-bottom: 1rem !important; }
  .tl-mb-lg-4 { margin-bottom: 1.5rem !important; }
  .tl-mb-lg-5 { margin-bottom: 3rem !important; }
}

/* -----------------------------------------------------------------------------
   ADDITIONAL UTILITIES
   ----------------------------------------------------------------------------- */

/* Float */
.tl-float-left { float: left !important; }
.tl-float-right { float: right !important; }
.tl-float-none { float: none !important; }

/* Overflow */
.tl-overflow-auto { overflow: auto !important; }
.tl-overflow-hidden { overflow: hidden !important; }
.tl-overflow-visible { overflow: visible !important; }

/* Position */
.tl-position-static { position: static !important; }
.tl-position-relative { position: relative !important; }
.tl-position-absolute { position: absolute !important; }
.tl-position-fixed { position: fixed !important; }
.tl-position-sticky { position: sticky !important; }

/* Width & Height */
.tl-w-100 { width: 100% !important; }
.tl-w-auto { width: auto !important; }
.tl-h-100 { height: 100% !important; }
.tl-h-auto { height: auto !important; }
.tl-max-w-100 { max-width: 100% !important; }
.tl-max-h-100 { max-height: 100% !important; }

/* Opacity */
.tl-opacity-0 { opacity: 0 !important; }
.tl-opacity-25 { opacity: 0.25 !important; }
.tl-opacity-50 { opacity: 0.5 !important; }
.tl-opacity-75 { opacity: 0.75 !important; }
.tl-opacity-100 { opacity: 1 !important; }

/* Cursor */
.tl-cursor-pointer { cursor: pointer !important; }
.tl-cursor-default { cursor: default !important; }
.tl-cursor-not-allowed { cursor: not-allowed !important; }

/* User Select */
.tl-user-select-all { user-select: all !important; }
.tl-user-select-auto { user-select: auto !important; }
.tl-user-select-none { user-select: none !important; }

/* Pointer Events */
.tl-pointer-events-none { pointer-events: none !important; }
.tl-pointer-events-auto { pointer-events: auto !important; }

/* -----------------------------------------------------------------------------
   DARK MODE SUPPORT
   ----------------------------------------------------------------------------- */

.dark .tl-text-dark {
  color: #cdcdcd !important;
}

.dark .tl-text-light {
  color: #f8f9fa !important;
}

.dark .tl-bg-light {
  background-color: #2a2a2a !important;
}

/* -----------------------------------------------------------------------------
   ACCESSIBILITY & REDUCED MOTION
   ----------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .tl-d-flex,
  .tl-d-grid,
  .tl-flex-row,
  .tl-flex-column {
    transition: none !important;
  }
}

/* -----------------------------------------------------------------------------
   RESPONSIVE DISPLAY OVERRIDES (must be last to override .tl-d-none)
   ----------------------------------------------------------------------------- */

@media (min-width: 576px) {
  .tl-d-sm-none { display: none !important; }
  .tl-d-sm-block { display: block !important; }
  .tl-d-sm-flex { display: flex !important; }
  .tl-d-sm-inline { display: inline !important; }
  .tl-d-sm-inline-block { display: inline-block !important; }
}

@media (min-width: 768px) {
  .tl-d-md-none { display: none !important; }
  .tl-d-md-block { display: block !important; }
  .tl-d-md-flex { display: flex !important; }
  .tl-d-md-inline { display: inline !important; }
  .tl-d-md-inline-block { display: inline-block !important; }
}

@media (min-width: 992px) {
  .tl-d-lg-none { display: none !important; }
  .tl-d-lg-block { display: block !important; }
  .tl-d-lg-flex { display: flex !important; }
  .tl-d-lg-inline { display: inline !important; }
  .tl-d-lg-inline-block { display: inline-block !important; }
}

@media (min-width: 1200px) {
  .tl-d-xl-none { display: none !important; }
  .tl-d-xl-block { display: block !important; }
  .tl-d-xl-flex { display: flex !important; }
  .tl-d-xl-inline { display: inline !important; }
  .tl-d-xl-inline-block { display: inline-block !important; }
}

@media (min-width: 1400px) {
  .tl-d-xxl-none { display: none !important; }
  .tl-d-xxl-block { display: block !important; }
  .tl-d-xxl-flex { display: flex !important; }
  .tl-d-xxl-inline { display: inline !important; }
  .tl-d-xxl-inline-block { display: inline-block !important; }
}


/* ===============================================================================
   RESPONSIVE PADDING UTILITIES
   =============================================================================== */

/* Responsive Padding Y (Top & Bottom) */
.tl-py-8 { padding-top: 32px; padding-bottom: 32px; }
.tl-py-12 { padding-top: 48px; padding-bottom: 48px; }
.tl-py-14 { padding-top: 56px; padding-bottom: 56px; }

@media (min-width: 576px) {
  .tl-sm-py-8 { padding-top: 32px; padding-bottom: 32px; }
  .tl-sm-py-12 { padding-top: 48px; padding-bottom: 48px; }
  .tl-sm-py-14 { padding-top: 56px; padding-bottom: 56px; }
}

@media (min-width: 768px) {
  .tl-md-py-8 { padding-top: 32px; padding-bottom: 32px; }
  .tl-md-py-12 { padding-top: 48px; padding-bottom: 48px; }
  .tl-md-py-14 { padding-top: 56px; padding-bottom: 56px; }
}

@media (min-width: 1024px) {
  .tl-lg-py-8 { padding-top: 32px; padding-bottom: 32px; }
  .tl-lg-py-12 { padding-top: 48px; padding-bottom: 48px; }
  .tl-lg-py-14 { padding-top: 56px; padding-bottom: 56px; }
}

@media (min-width: 1280px) {
  .tl-xl-py-8 { padding-top: 32px; padding-bottom: 32px; }
  .tl-xl-py-12 { padding-top: 48px; padding-bottom: 48px; }
  .tl-xl-py-14 { padding-top: 56px; padding-bottom: 56px; }
}

/* Responsive Padding X (Left & Right) */
.tl-px-4 { padding-left: 16px; padding-right: 16px; }
.tl-px-6 { padding-left: 24px; padding-right: 24px; }

@media (min-width: 576px) {
  .tl-sm-px-4 { padding-left: 16px; padding-right: 16px; }
  .tl-sm-px-6 { padding-left: 24px; padding-right: 24px; }
}

@media (min-width: 768px) {
  .tl-md-px-4 { padding-left: 16px; padding-right: 16px; }
  .tl-md-px-6 { padding-left: 24px; padding-right: 24px; }
}

@media (min-width: 1024px) {
  .tl-lg-px-4 { padding-left: 16px; padding-right: 16px; }
  .tl-lg-px-6 { padding-left: 24px; padding-right: 24px; }
}

/* Responsive Margin Y (Top & Bottom) */
.tl-my-4 { margin-top: 16px; margin-bottom: 16px; }
.tl-my-6 { margin-top: 24px; margin-bottom: 24px; }
.tl-my-8 { margin-top: 32px; margin-bottom: 32px; }

@media (min-width: 576px) {
  .tl-sm-my-4 { margin-top: 16px; margin-bottom: 16px; }
  .tl-sm-my-6 { margin-top: 24px; margin-bottom: 24px; }
  .tl-sm-my-8 { margin-top: 32px; margin-bottom: 32px; }
}

@media (min-width: 768px) {
  .tl-md-my-4 { margin-top: 16px; margin-bottom: 16px; }
  .tl-md-my-6 { margin-top: 24px; margin-bottom: 24px; }
  .tl-md-my-8 { margin-top: 32px; margin-bottom: 32px; }
}

@media (min-width: 1024px) {
  .tl-lg-my-4 { margin-top: 16px; margin-bottom: 16px; }
  .tl-lg-my-6 { margin-top: 24px; margin-bottom: 24px; }
  .tl-lg-my-8 { margin-top: 32px; margin-bottom: 32px; }
}

/* Responsive Margin Bottom */
.tl-mb-4 { margin-bottom: 16px; }
.tl-mb-6 { margin-bottom: 24px; }
.tl-mb-8 { margin-bottom: 32px; }

@media (min-width: 576px) {
  .tl-sm-mb-4 { margin-bottom: 16px; }
  .tl-sm-mb-6 { margin-bottom: 24px; }
  .tl-sm-mb-8 { margin-bottom: 32px; }
}

@media (min-width: 768px) {
  .tl-md-mb-4 { margin-bottom: 16px; }
  .tl-md-mb-6 { margin-bottom: 24px; }
  .tl-md-mb-8 { margin-bottom: 32px; }
}

@media (min-width: 1024px) {
  .tl-lg-mb-4 { margin-bottom: 16px; }
  .tl-lg-mb-6 { margin-bottom: 24px; }
  .tl-lg-mb-8 { margin-bottom: 32px; }
}

/* Responsive Margin Top */
.tl-mt-4 { margin-top: 16px; }
.tl-mt-6 { margin-top: 24px; }
.tl-mt-8 { margin-top: 32px; }

@media (min-width: 576px) {
  .tl-sm-mt-4 { margin-top: 16px; }
  .tl-sm-mt-6 { margin-top: 24px; }
  .tl-sm-mt-8 { margin-top: 32px; }
}

@media (min-width: 768px) {
  .tl-md-mt-4 { margin-top: 16px; }
  .tl-md-mt-6 { margin-top: 24px; }
  .tl-md-mt-8 { margin-top: 32px; }
}

@media (min-width: 1024px) {
  .tl-lg-mt-4 { margin-top: 16px; }
  .tl-lg-mt-6 { margin-top: 24px; }
  .tl-lg-mt-8 { margin-top: 32px; }
}
