.blog-categories-wrapper {
  margin-bottom: 2rem; }
  @media (min-width: 64rem) {
    .blog-categories-wrapper {
      margin-bottom: unset; } }
  .blog-categories-wrapper .blog-categories-header {
    display: flex;
    margin-bottom: 1rem; }
    .blog-categories-wrapper .blog-categories-header.first-header-link .blog-categories-header-link:first-of-type {
      font-family: "Poppins Bold", sans-serif;
      border-bottom: 2px solid; }
    .blog-categories-wrapper .blog-categories-header.second-header-link .blog-categories-header-link:last-of-type {
      font-family: "Poppins Bold", sans-serif;
      border-bottom: 2px solid; }
    .blog-categories-wrapper .blog-categories-header-link {
      flex: 1;
      text-align: center;
      color: #333333;
      font-size: 0.875rem;
      line-height: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid; }
    @media (min-width: 48rem) {
      .blog-categories-wrapper .blog-categories-header {
        margin-bottom: 2.5rem; }
        .blog-categories-wrapper .blog-categories-header-link {
          font-size: 1rem;
          line-height: 1.5rem; } }
  .blog-categories-wrapper .blog-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    width: fit-content; }
    .blog-categories-wrapper .blog-categories .blog-category {
      width: 100px;
      height: 100px;
      padding: 0.25rem 0.25rem 0.5rem 0.25rem;
      gap: 0.125rem;
      border-radius: 1.5rem;
      background-color: #183C8F;
      color: #FFF;
      font-size: 0.75rem;
      line-height: 1rem;
      overflow: hidden; }
      .blog-categories-wrapper .blog-categories .blog-category img {
        max-width: 56px;
        max-height: 56px;
        transition: transform ease .3s; }
      .blog-categories-wrapper .blog-categories .blog-category:hover img {
        transform: scale(1.1);
        transition: transform ease .3s; }
      .blog-categories-wrapper .blog-categories .blog-category:active {
        background-color: #0A1C59;
        color: #F7CE46; }
    @media (min-width: 90rem) {
      .blog-categories-wrapper .blog-categories {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1rem; }
        .blog-categories-wrapper .blog-categories .blog-category {
          width: 140px;
          height: 140px;
          padding: 0.5rem;
          gap: 0.5rem;
          border-radius: 2rem;
          font-size: 0.875rem;
          line-height: 120%; }
          .blog-categories-wrapper .blog-categories .blog-category img {
            max-width: 80px;
            max-height: 80px; } }
