.fc_accreditations {
  display: flex;
  flex-direction: column;
  gap: var(--gap-m);

  .accreditation {
    display: flex;
    flex-direction: row;
    padding: 40px 30px;
    gap: var(--gap-m);
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.15);

    .logo {
      flex: 0 0 30%;
      max-width: 310px;
      aspect-ratio: 1;
      height: 100%;
    }

    .wp_content {
      flex: 1;
    }
  }

  @media (max-width: 576px) {
    .accreditation {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;

      .logo {
        width: 100%;
        aspect-ratio: 4 / 3;
      }
    }
  }
}
