.reels-page {
  padding: 18px 20px 42px;
}

.reels-section {
  margin-bottom: 22px;
}

.reels-section-title {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.reels-section-title::before {
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: var(--color-brand);
  content: "";
}

.reels-section-title small {
  color: var(--color-faint);
  font-size: 11px;
  font-weight: 400;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 1179px) {
  .reels-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .reels-page {
    padding: 20px 16px 38px;
  }

  .reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
