/* 
 * Additional responsive styles for RMC website content sections
 * Complements the existing responsive.css file
 */

/* Content section spacing and alignment */
@media (max-width: 576px) {
  /* Adjust content spacing on mobile */
  .hmemainsctn {
    padding: 10px 5px;
  }
  
  /* Make ticker tape more compact on small screens */
  .ticker-tape {
    margin-bottom: 10px;
  }
  
  .ticker-tape-title {
    padding: 5px 10px;
    font-size: 14px;
  }
  
  /* Adjust file tracking form on small screens */
  form nz-form-item {
    margin-bottom: 10px;
  }
  
  /* Make social sidebar smaller on mobile */
  .super-sidebar .sb-bar li {
    margin-bottom: 5px;
  }
  
  .super-sidebar .sb-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  /* Improve service cards layout on mobile */
  .qck-cards .col-lg-2 {
    margin-bottom: 15px;
  }
  
  .qck-card {
    min-height: auto;
    padding: 10px !important;
  }
  
  .qck-card img {
    max-width: 60px;
    max-height: 60px;
  }
  
  .strpIcnLbls {
    font-size: 12px;
    margin-top: 5px;
  }
}

/* Tablet adjustments */
@media (min-width: 577px) and (max-width: 768px) {
  .hmemainsctn {
    padding: 15px 10px;
  }
  
  /* Adjust service cards for better tablet layout */
  .qck-cards .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .qck-card {
    margin-bottom: 15px;
  }
}

/* Medium devices */
@media (min-width: 769px) and (max-width: 991px) {
  /* Adjust layout for medium screens */
  .hmemainsctn {
    padding: 20px 15px;
  }
  
  /* Better spacing for content sections */
  .section-container {
    padding: 15px;
  }
}

/* Large devices */
@media (min-width: 992px) {
  /* Optimize layout for larger screens */
  .hmemainsctn {
    padding: 25px 20px;
  }
  
  /* Enhanced spacing between sections */
  section {
    margin-bottom: 30px;
  }
}
