/* #region "../src/elements/topics-list/topics-list.scss" */
/*
- type: css
*/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
.topics-list {
  font-family: var(--base-font-family);
  line-height: var(--base-line-height);
  font-size: var(--base-font-size);
  container: topics-list/inline-size;
}
.topics-list .topics-list-title {
  text-align: center;
  margin-bottom: var(--v-m);
}
.topics-list .topics-letters {
  --columns: 1;
  column-count: var(--columns);
  column-gap: var(--layout-gap);
}
@container (width >= 400px) {
  .topics-list .topics-letters {
    --columns: 2;
  }
}
@container (width >= 600px) {
  .topics-list .topics-letters {
    --columns: 3;
  }
}
@container (width >= 800px) {
  .topics-list .topics-letters {
    --columns: 4;
  }
}
.topics-list .topics-letters > * {
  break-inside: avoid;
  margin-bottom: calc(var(--base-font-size) * var(--base-line-height));
}
.topics-list .topics-letters .topics-letter-headline {
  margin-bottom: /* grow(0, 2) */ clamp(0rem, -0.0416666667rem + 0.1851851852vw, 0.125rem);
}
.topics-list .topics-letters .topics-letter-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.topics-list .topics-letters .topics-letter-items a {
  text-decoration: none;
}
.topics-list .topics-letters .topics-letter-items a:is(:hover, :active) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: var(--border-width);
}
.topics-list .topics-letters .topics-letter-items a:active {
  color: var(--grey);
}
/* #endregion "../src/elements/topics-list/topics-list.scss" */

head{--webpack--css-wpce--topics-list:&\.\.\/src\/elements\/topics-list\/topics-list\.scss;}
/*# sourceMappingURL=css-wpce--topics-list.css.map*/