.card {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e4e7ed;
  margin-bottom: 30px;
}

.card__content {
  padding: 24px;
}

.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 12px;
  min-height: 72px;
  padding: 22px 24px;
  border-bottom: 1px solid #e4e7ed;
  position: relative;
}

.card__header::before {
  content: "";
  position: absolute;
  width: 6px;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #38a9ff;
}

.card__header--has-filter {
  padding-top: 24px;
  padding-bottom: 24px;
}

.card__header-secondary {
  display: flex;
  gap: 12px;
}

/* -------------------------
   Category Filter (tables)
   ------------------------- */

.category-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-filter__item {
  display: inline;
}

.category-filter__link {
  display: inline-block;
  font-size: 9px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(49, 64, 75, 0.4);
  transition: color 0.3s ease;
  padding: 0 6px;
  background: none;
  border: none;
}

.category-filter__link:hover {
  color: #31404b;
}

.category-filter__link--active {
  color: #31404b;
}

@media (min-width: 992px) {
  .category-filter__link {
    font-size: 11px;
    padding: 0 12px;
  }
}

/* -------------------------
   Standings Tables
   ------------------------- */

.alc-table {
  width: 100%;
  border-collapse: collapse;
}

.alc-table__row {
  border-bottom: 1px solid #e4e7ed;
}

.alc-table__row--highlight {
  background-color: #f5f7f9;
}

.alc-table__cell {
  padding: 10px 8px;
  font-size: 12px;
  text-align: center;
}

.alc-table__cell--rank {
  font-weight: 700;
  width: 40px;
}

.alc-table__cell--team {
  text-align: left;
}

.alc-table__cell--points {
  font-weight: 700;
}

/* -------------------------
   Team cell layout
   ------------------------- */

.alc-team {
  display: flex;
  align-items: center;
}

.alc-team__logo {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}

.alc-team__logo img {
  max-width: 100%;
  height: auto;
}

.alc-team__name {
  font-size: 12px;
  text-transform: uppercase;
}

/* -------------------------
   Utilities (not used before)
   ------------------------- */

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

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}