* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #faf8f3;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header: logo on dark background, top-left */
.site-header {
  background: #1c1920;
  padding: 20px 40px;
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.site-header .logo img {
  height: 50px;
  display: block;
}

.site-header .logo-text {
  height: 22px;
  width: auto;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

/* Hero: full-width looping video, no controls visible */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  background: #000;
}

.hero .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Nav bar below the hero, no search/language/font/faq options */
.site-nav {
  background: #111;
  border-top: 1px solid #333;
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a {
  display: block;
  padding: 20px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.site-nav a:hover {
  background: #222;
}

main {
  flex: 1;
}

/* What's New: homepage feed of blog/news/match-results */
.whats-new {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

.whats-new h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 16px;
}

.whats-new h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f0a500;
}

.whats-new-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.whats-new-tabs .tab-btn {
  padding: 8px 16px;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #333;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.whats-new-tabs .tab-btn:hover {
  border-bottom-color: #ccc;
}

.whats-new-tabs .tab-btn.active {
  background: transparent;
  border-bottom-color: #f0a500;
  color: #333;
}

.whats-new-list {
  list-style: none;
}

.whats-new-list li {
  border-bottom: 1px solid #e0dcd3;
}

.whats-new-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  color: #333;
  text-decoration: none;
}

.whats-new-list a:hover .title {
  text-decoration: underline;
}

.whats-new-list .date {
  flex: 0 0 90px;
  color: #666;
  font-size: 13px;
}

.whats-new-list .badge {
  flex: 0 0 130px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.whats-new-list .title {
  flex: 1 1 auto;
}

.whats-new-list .badge-blog {
  background: #3b82c4;
}

.whats-new-list .badge-news {
  background: #f0a500;
  color: #1c1920;
}

.whats-new-list .badge-match-results {
  background: #c0392b;
}

/* Generic content wrapper used by about-us, dojo, blog/news pages */
.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 16px;
}

.page h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f0a500;
}

.not-found {
  text-align: center;
}

.not-found p {
  color: #aaa;
  margin-bottom: 24px;
}

.not-found a {
  color: #f0a500;
  text-decoration: none;
}

.not-found a:hover {
  text-decoration: underline;
}

/* Dojo listing: horizontal cards */
.dojo-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.dojo-card {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0dcd3;
  border-radius: 8px;
  overflow: hidden;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.dojo-card:hover {
  background: #f9f7f2;
  transform: translateY(-2px);
}

.dojo-slideshow {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f0ede5;
}

.dojo-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.dojo-slideshow .slide.active {
  opacity: 1;
}

.dojo-card-body {
  padding: 24px;
}

.dojo-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.dojo-card .address {
  color: #666;
  font-size: 14px;
  margin-top: 8px;
}

.dojo-card .view-details {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: #f0a500;
}

/* Dojo detail: address + responsive map embed */
.dojo-detail .address {
  color: #666;
  margin-bottom: 16px;
}

/* Dojo detail: large interactive photo gallery */
.dojo-gallery {
  position: relative;
  margin: 24px 0 32px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.dojo-gallery-viewport {
  position: relative;
  width: 100%;
  height: 480px;
}

.dojo-gallery-slide {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.dojo-gallery-slide.active {
  display: block;
}

.dojo-gallery-prev,
.dojo-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.dojo-gallery-prev:hover,
.dojo-gallery-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.dojo-gallery-prev {
  left: 16px;
}

.dojo-gallery-next {
  right: 16px;
}

.dojo-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dojo-gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.dojo-gallery-dot.active {
  background: #f0a500;
}

@media (max-width: 768px) {
  .dojo-gallery-viewport {
    height: 280px;
  }
}

.map-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4 / 3;
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
}

.map-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Blog/News/Match Results single post: two-column layout with category sidebar */
.post-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.post {
  flex: 1 1 auto;
  min-width: 0;
}

.post h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.post h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f0a500;
}

.post .date {
  text-align: center;
  color: #aaa;
  font-size: 13px;
  margin-bottom: 20px;
}

.post h2,
.post h3,
.post h4 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.post p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.post ul,
.post ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.post li {
  margin-bottom: 8px;
}

.article-image {
  margin: 0 0 24px;
}

.article-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.article-image figcaption {
  margin-top: 8px;
  color: #aaa;
  font-size: 13px;
  text-align: center;
}

.article-image--small,
.article-image--medium {
  margin-left: auto;
  margin-right: auto;
}

.article-image--small {
  max-width: 320px;
}

.article-image--medium {
  max-width: 480px;
}

.post-sidebar {
  flex: 0 0 260px;
}

.post-nav {
  border: 1px solid #e0dcd3;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.post-nav-group {
  border-top: 1px solid #e0dcd3;
}

.post-nav-group:first-child {
  border-top: none;
}

.post-nav-group summary {
  padding: 12px 16px;
  background: #f9f7f2;
  color: #333;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  list-style: none;
}

.post-nav-group summary:hover {
  background: #efefeb;
}

.post-nav-group summary::-webkit-details-marker {
  display: none;
}

.post-nav-group summary::after {
  content: '\25BE';
  float: right;
  color: #f0a500;
  transition: transform 0.2s;
}

.post-nav-group[open] summary::after {
  transform: rotate(180deg);
}

.post-nav-group ul {
  list-style: none;
}

.post-nav-group li {
  border-top: 1px solid #e0dcd3;
}

.post-nav-group a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 13px;
  text-decoration: none;
}

.post-nav-group a:hover {
  background: #f5f1e8;
}

.post-nav-group li.empty {
  padding: 10px 16px;
  color: #999;
  font-size: 13px;
}

.post-nav-group li.current a {
  color: #f0a500;
  font-weight: 700;
}

/* Blog listing */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.blog-card-link-wrapper {
  text-decoration: none;
  color: inherit;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0dcd3;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card-link-wrapper:hover .blog-card {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card-thumbnail {
  position: relative;
  width: 100%;
  height: 400px;
  background: #f0ede5;
  overflow: hidden;
}

.blog-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.blog-card-thumbnail img:not([src]),
.blog-card-thumbnail img[src=""] {
  display: none;
}

.blog-thumbnail-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.blog-card-thumbnail.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0dcd3;
  color: #999;
  font-size: 14px;
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.blog-card-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: #f0a500;
}

.blog-card-excerpt-wrapper {
  flex: 1;
  position: relative;
  margin-bottom: 16px;
}

.blog-card-excerpt-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  display: inline-block;
  font-size: 13px;
  color: #f0a500;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.blog-card-link-wrapper:hover .blog-card-link {
  color: #d48400;
}

/* Instructor listing (senseis / senpais): small cards, half portrait photo */
.instructor-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.instructor-card-link-wrapper {
  text-decoration: none;
  color: inherit;
}

.instructor-card {
  display: flex;
  background: #fff;
  border: 1px solid #e0dcd3;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.instructor-card-link-wrapper:hover .instructor-card {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.instructor-card-thumbnail {
  flex: 1 1 50%;
  aspect-ratio: 3 / 4;
  background: #f0ede5;
  overflow: hidden;
}

.instructor-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instructor-card-content {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px 14px 14px;
}

.post .instructor-card-name {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0dcd3;
}

.instructor-card-bio-wrapper {
  margin-bottom: 10px;
}

.instructor-card-bio {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.instructor-card-link {
  display: inline-block;
  font-size: 12px;
  color: #f0a500;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.instructor-card-link-wrapper:hover .instructor-card-link {
  color: #d48400;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination-link {
  padding: 8px 16px;
  border: 1px solid #e0dcd3;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}

.pagination-link:hover {
  background: #f9f7f2;
  border-color: #d0ccc3;
}

.pagination-pages {
  display: flex;
  gap: 8px;
}

.pagination-page {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0dcd3;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}

.pagination-page:hover {
  background: #f9f7f2;
  border-color: #d0ccc3;
}

.pagination-page.current {
  background: #f0a500;
  border-color: #f0a500;
  color: #1c1920;
  cursor: default;
}

/* Gallery listing: cards grouped by year */
.gallery-year-group {
  margin-bottom: 40px;
}

.gallery-year {
  font-size: 22px;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e0dcd3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: #f0ede5;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-card:focus-visible {
  outline: 2px solid #f0a500;
  outline-offset: 2px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  margin: 0;
  padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-card:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.gallery-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.gallery-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.gallery-lightbox-content {
  position: relative;
  z-index: 1001;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: slideIn 0.3s ease-out;
}

.gallery-lightbox-image-wrap {
  display: flex;
  max-width: 90vw;
  max-height: 80vh;
}

.gallery-lightbox-image-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.gallery-lightbox-caption {
  margin: 16px 0 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.gallery-lightbox-close {
  position: absolute;
  top: -44px;
  right: -8px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  padding: 4px 8px;
  transition: color 0.2s;
}

.gallery-lightbox-close:hover {
  color: #f0a500;
}

body.gallery-lightbox-locked {
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: #1c1920;
  color: #fff;
  margin-top: 60px;
  padding: 40px;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #f0a500;
}

.instagram-qr {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.instagram-qr:hover {
  color: #f0a500;
}

.instagram-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.qr-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.qr-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.qr-modal-content {
  position: relative;
  z-index: 1001;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.qr-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 4px 8px;
  transition: color 0.2s;
}

.qr-modal-close:hover {
  color: #f0a500;
}

.qr-modal-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 4px;
}

.contact-methods {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: center;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.whatsapp-link:hover {
  color: #f0a500;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: inherit;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #3a3440;
  padding-top: 20px;
  color: #aaa;
  font-size: 12px;
}

.news-listing {
  max-width: 900px;
  margin: 40px auto;
}

.news-item {
  display: flex;
  gap: 15px;
  padding: 12px 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 2px;
  background: #fff;
  transition: background-color 0.15s, border-color 0.15s;
}

.news-item:hover {
  background: #f5f5f5;
  border-color: #999;
}

.news-content {
  flex: 1;
  min-width: 0;
}

.news-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.news-title {
  color: #369;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 4px;
}

.news-link:hover .news-title {
  text-decoration: underline;
  color: #123;
}

.news-meta {
  font-size: 12px;
  color: #999;
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .site-nav ul {
    flex-direction: column;
    text-align: center;
  }

  .post-layout {
    flex-direction: column;
  }

  .post-sidebar {
    flex: 1 1 auto;
    width: 100%;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .instructor-list {
    grid-template-columns: 1fr;
  }

  .instructor-card {
    flex-direction: column;
  }

  .instructor-card-thumbnail {
    flex: 0 0 auto;
    aspect-ratio: 3 / 4;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .pagination {
    flex-direction: column;
    gap: 12px;
  }

  .pagination-link,
  .pagination-pages {
    width: 100%;
  }

  .pagination-pages {
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
