h1.title,
h2.title,
h3.title,
h4.title,
h5.title,
h6.title {
  font-weight: normal;
}
h1.title::after,
h2.title::after,
h3.title::after,
h4.title::after,
h5.title::after,
h6.title::after {
  content: "";
  display: block;
  width: 40px;
  height: 6px;
  margin-top: 16px;
  background-color: var(--pleca-color, #edd350);
  border-radius: 6px;
}
h1.title--center,
h2.title--center,
h3.title--center,
h4.title--center,
h5.title--center,
h6.title--center {
  text-align: center;
}
h1.title--center::after,
h2.title--center::after,
h3.title--center::after,
h4.title--center::after,
h5.title--center::after,
h6.title--center::after {
  margin: 16px auto 0;
}

.card {
  border-radius: 24px;
  box-shadow: 0 6px 16px 0 rgba(25, 75, 123, 0.08);
  display: flex;
  flex-direction: column;
}
.card picture {
  display: contents;
}
.card__wrap {
  padding: var(--card-wrap-padding, 24px);
  display: flex;
  flex-direction: column;
  gap: var(--card-wrap-spacing, 16px);
}
.card--white {
  position: relative;
  --card-wrap-spacing: 8px;
}
.card--white .pills {
  position: absolute;
  padding: 24px;
  flex-direction: column;
}
.card__img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  object-fit: cover;
  object-position: center;
}
.card--white .card__wrapper {
  background-color: #fff;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.card__title {
  font-weight: 600;
  font-size: 18px;
  color: #081754;
}
.card__description {
  font-size: 14px;
  color: #4A4A4A;
}
.card--blue .card__wrapper {
  background-color: #05297A;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.card--blue .card__wrapper > * {
  padding-top: 0;
  padding-bottom: 0;
}
.card--blue *:not(.pills__pill--time), .card--blue .profile__name {
  color: #fff;
}
.card--blue .pills__date {
  width: 100%;
}
.card--blue .pills {
  gap: 8px 16px;
  flex-direction: row;
  flex-wrap: wrap;
  padding-left: var(--card-wrap-padding, 24px);
  padding-right: var(--card-wrap-padding, 24px);
}
.card--blue .profile__avatar {
  width: 32px;
  height: 32px;
}
.card--blue .profile__wrap {
  gap: 6px;
}
.card--blue .profile__name {
  font-size: 12px;
}

@media (min-width: 768px) {
  .card__title {
    font-size: 20px;
  }
  .card__description {
    font-size: 16px;
  }
  .card--white, .card--blue {
    display: flex;
    flex-direction: row;
  }
  .card--white .card__img, .card--blue .card__img {
    border-top-right-radius: 0;
    border-bottom-left-radius: 24px;
    max-width: 50%;
  }
  .card--blue .card__img {
    max-width: 60%;
  }
  .card__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .card--blue {
    align-items: center;
    border-bottom-left-radius: 0;
    box-shadow: none;
  }
  .card--white .card__wrapper {
    border-top-right-radius: 24px;
    border-bottom-left-radius: 0;
  }
  .card--blue .card__wrapper {
    height: fit-content;
    border-bottom-left-radius: 0;
    border-top-right-radius: 24px;
  }
}
main {
  background-color: #F3F3F3;
}

.items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.items a {
  display: contents;
  text-decoration: none;
}
.items .item {
  background-color: #fff;
}
.items .item img {
  width: fit-content;
  max-height: 60px;
}
.items .item .card__wrap {
  flex-direction: row;
}
.items .item .card__title {
  font-size: 16px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.items .item .card__title::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.97472 2.26607C9.73064 2.51014 9.73064 2.90587 9.97472 3.14995L16.1994 9.37467H2.29166C1.94648 9.37467 1.66666 9.6545 1.66666 9.99967C1.66666 10.3449 1.94648 10.6247 2.29166 10.6247H16.1994L9.97472 16.8494C9.73064 17.0935 9.73064 17.4892 9.97472 17.7333C10.2188 17.9774 10.6145 17.9774 10.8586 17.7333L18.1503 10.4416C18.3943 10.1975 18.3943 9.80181 18.1503 9.55773L10.8586 2.26607C10.6145 2.02199 10.2188 2.02199 9.97472 2.26607Z" fill="%231C42E8"></path></svg>');
}

@media (min-width: 768px) {
  .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .items {
    grid-template-columns: repeat(4, 1fr);
  }
  .items .item .card__wrap {
    height: 100%;
    flex-direction: column;
    justify-content: center;
  }
  .items .item .card__title span {
    max-width: 90px;
  }
}

/*# sourceMappingURL=info_categories.css.map */
