/*
 * Friday Theme - Responsive Helpers
 * MacCMS v10 Compatible
 * Additional lightweight responsive utilities
 */

/* Generic responsive media helpers */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-responsive iframe,
.video-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table {
  min-width: 600px;
}

/* Simple grid helper */
.grid {
  display: grid;
  gap: 16px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 576px) {
  .pagination__item {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
