/*
 * MOBILE.CSS nimmt die Elemente für die mobile Ansicht auf. Die Datei wird aktuell als letztes CSS geladen
 *  und überschreibt somit die Einstellungen aus dem Theme und Custom. Hier ist die Stelle für Anpassungen.
 * 
 */


/* Mobile styles override */
@media (max-width: 768px) {

  body {
    font-size: 0.9em;
  }

  .footer-grid { display: block !important; flex-direction: column; gap: 0;
   padding: 1rem 0; }
  
  .footer-col {
    flex: none;
    margin-bottom: 1rem;
    padding: 0;
    border-left: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
  }
  
  .footer-col ul li {
    margin-bottom: 0.1rem;
  }

  .footer-col:last-child {
    border-bottom: none;
  }
  
  .footer-section-title {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
  }
  
  .footer-section-title:hover {
    background-color: rgba(0, 123, 255, 0.1);
  }
  
  .footer-toggle {
    display: inline !important;
    margin-left: 0.5rem;
  }
  
  .footer-menu {
    display: none;
    padding-left: 1rem;
    animation: slideDown 0.3s ease-out;
  }
  
  .footer-menu li {
    padding: 0.25rem 1rem;
    border-bottom: none;
    margin-bottom: 0.2rem;
  }
  
  .footer-menu a {
    display: block;
    padding: 0.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
  }
  
  .footer-menu a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .hitflexgrid_wrapper {
    grid-template-columns: 1fr !important;
  }

  .subnav {
    display: none;
  }

  .breadcrumbs {
    margin: 0.3rem 0;
  }
  
  .breadcrumbs ol {
    font-size: 0.8rem;
    gap: 0.1rem;
  }
  
  .breadcrumbs li:not(:first-child):not(.current)::before {
    margin: 0 0.2rem;
  }
  
  .breadcrumbs a,
  .breadcrumbs .current {
    padding: 0.15rem 0.3rem;
  }

} /* 768 */


@media (max-width: 600px) {
  .twc_column-label,
  .twc_column-content {
    flex: 0 0 100%;
  }

} /* 600 */

