
/* ============================================
   ACCREDITATIONS
   ============================================ */
.accreditations {
  padding-block: var(--space-xxl);
  padding-inline: var(--space-xl);
  background-color: var(--white);
  position: relative;
  z-index: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.accred-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  align-items: center;
}

.accred-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accred-logo {
  margin-bottom: var(--space-sm);
}

.accred-logo img {
  width: 50%;
  height: auto;
}

.logo-seal,
.logo-nha {
  display: flex;
  justify-content: center;
  align-items: center;
}

.accred-item p {
  font-size: var(--body-medium);
  line-height: var(--body-medium-lh);
  color: var(--grey-700);
  max-width: 400px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
/* 
 * Breakpoint System:
 * - Desktop: > 1024px (default styles)
 * - Tablet: 768px - 1024px
 * - Mobile: < 768px
 */

/* ============================================
   MOBILE (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
  /* Override spacing variables for mobile */
  
  /* Accreditations */
  .accreditations {
    padding: var(--space-xl) var(--space-sm);
    overflow-x: hidden;
  }

  .accred-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    width: 100%;
    max-width: 100%;
  }

  .accred-item {
    width: 100%;
    max-width: 100%;
    padding-bottom: var(--space-md);
  }

  .accred-logo {
    margin-bottom: var(--space-md);
  }

  .accred-logo img {
    width: 50%;
    max-width: 100%;
    height: auto;
  }

  .accred-item p {
    padding: 0 var(--space-sm);
    max-width: 100%;
  }
}
