/* === REPERTOIRE COLUMNS: DEFAULT STYLES === */
.repertoire-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.repertoire-column {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  color: #fff;
  text-align: left;
}

.repertoire-column h4 {
  font-size: 22px;
  margin-bottom: 10px;
  text-align: left;
}

.repertoire-column ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.repertoire-column ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* OPTIONAL: individual width tweaks (only if needed) */
.repertoire-columns .repertoire-column:nth-child(1),
.repertoire-columns .repertoire-column:nth-child(2),
.repertoire-columns .repertoire-column:nth-child(3) {
  flex: 1 1 calc(33.333% - 20px);
  width: auto;
  max-width: 100%;
}

.repertoire-columns .repertoire-column:nth-child(2) h4:first-of-type {
  text-align: left !important;
}

/* === RESPONSIVE BREAKPOINTS === */

/* Stack vertically under 992px */
@media (max-width: 992px) {
  .repertoire-column {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Small adjustments for 768px and below */
@media only screen and (max-width: 768px) {
  .repertoire-columns {
    padding-top: 0;
    margin-top: -30px;
    margin-left: 0;
    gap: 10px;
  }

  .repertoire-column h4 {
    margin-top: 10px;
  }

  .back-2-title {
    margin-bottom: 10px;
  }

  .container {
    padding-top: 0;
  }

  .figure_section {
    font-size: 13px;
    line-height: 1.4;
    padding-left: 30px;
    width: 85%;
  }

  .side_article {
    margin-left: 35px;
    max-width: 100%;
  }

  .grid_8 {
    transform: scale(1);
    transform-origin: top left;
    margin-left: 60px;
  }

  .footer_text {
    margin-left: 0;
  }
    .repertoire-column ul,
  .white-4-title2 {
    max-width: 100%;
          margin-left: 30px;
  }
}
/* Ultra Small Devices: Adjust widths */
@media only screen and (max-width: 600px) {
  .figure_section, .side_article, .grid_8 {
    width: 100%;
    margin-left: 0;
  }

  .repertoire-column ul,
  .white-4-title2 {
    max-width: 100%;
          margin-left: 30px;
  }
  .side_article{
      margin-left: 0px;
  }
}
/* Ultra Small Devices: Adjust widths */
@media only screen and (max-width: 480px) {
  .figure_section, .side_article, .grid_8 {
    width: 90%;
    margin-left: 15px;
  }

  .repertoire-column ul,
  .white-4-title2 {
    max-width: 100%;
          margin-left: 30px;
  }
}

@media only screen and (max-width: 375px) {
  .grid_8, .side_article {
    margin-left: 20px;
  }

  .figure_section {
    width: 100%;
    margin-left: 15px;
  }

  .repertoire-column ul,
  .white-4-title2 {
    max-width: 90%;
          margin-left: 30px;
  }
}

@media only screen and (max-width: 319px) {
  .footer_text {
    margin-left: -60px;
  }

  .grid_8 {
    transform: scale(0.7);
    margin-left: 30px;
  }

  .side_article {
    width: 60%;
    margin-left: 30px;
  }

  .figure_section {
    margin-left: -5px;
  }

  .repertoire-column ul,
  .white-4-title2 {
      margin-left: 30px;
    max-width: 60%;
  }
}