.blog-item {
  padding: 87px 0 50px;

  @media screen and (min-width: 769px) {
    box-sizing: content-box;
    padding: 201px 0 90px;
  }
}

:where(.blog-item) {
  .blog-item__inner {
    display: flex;

    @media screen and (max-width: 768px) {
      flex-direction: column;
      padding: 0 25px;
      margin-bottom: 30px;
    }

    @media screen and (min-width: 769px) {
      gap: 56px;
      padding: 0 25px;
      justify-content: center;
      margin-bottom: 60px;
    }
  }

  .blog-item__thumb {
    background: #C4C4C4;
    width: 100%;
    height: calc(var(--vw) * 210);
    border-radius: 30px;
    overflow: hidden;

    @media screen and (max-width: 768px) {
      margin-bottom: 18px;
    }

    @media screen and (min-width: 769px) {
      width: 526px;
      height: 314px;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .blog-item__content {
    @media screen and (min-width: 769px) {
      width: 584px;
      padding-top: 30px;
    }
    h2 {
      font-weight: bold;
      margin-bottom: 4px;
    }
  }

  .blog-item__date {
    color: #004E98;
    opacity: 0.41;
    font-weight: 600;
    font-size: calc(var(--rem) * 13);
    letter-spacing: 0.65px;
    margin-bottom: 6px;

    @media screen and (min-width: 769px) {
      margin-bottom: 12px;
      font-size: calc(var(--rem) * 15);
      letter-spacing: 0.75px;
    }
  }

  .blog-item__title {
    font-weight: 600;
    font-size: calc(var(--rem) * 17);
    letter-spacing: 0.85px;
    line-height: 26px;
    margin-bottom: 12px;

    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 25);
      letter-spacing: 1.25px;
      margin-bottom: 28px;
      line-height: 34px;
    }
  }

  .blog-item__text {
    font-weight: 600;
    font-size: calc(var(--rem) * 13);
    letter-spacing: 0.65px;
    margin-bottom: 28px;
    line-height: 25px;
    color: #454545;

    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 13);
      letter-spacing: 0.65px;
      margin-bottom: 28px;
    }
  }

  .other {
    @media screen and (max-width: 768px) {
      padding: 0 25px;
    }
  }
  .other-list {
    display: grid;
    @media screen and (max-width: 768px) {
      row-gap: 20px;
      margin-bottom: 45px;
    }
    @media screen and (min-width: 769px) {
      place-content: center;
      grid-template-columns: min(315px, calc(var(--vw) * 315)) min(315px, calc(var(--vw) * 315)) min(315px, calc(var(--vw) * 315));
      column-gap: min(64px, calc(var(--vw) * 64));
      margin-bottom: 40px;
    }
  }

  .other-empty {
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 18);
      letter-spacing: 1.5px;
      margin-bottom: 100px;
    }
  }
  .other-thumb {
    background: #CBCBCB;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: calc(var(--vw) * 175);
    margin-bottom: 15px;
    @media screen and (min-width: 769px) {
      height: min(215px, calc(var(--vw) * 215));
      border-radius: 30px;
      margin-bottom: 22px;
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .other-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  .other-cat {
    border-radius: 50px;
    border: 1.3px solid #004F92;
    font-size: calc(var(--rem) * 11);
    font-weight: bold;
    letter-spacing: 1.1px;
    padding: 4px 13px;
    @media screen and (min-width: 769px) {
      border: 1.5px solid #004F92;
      font-size: calc(var(--rem) * 11);
      font-weight: bold;
      letter-spacing: 1.1px;
      padding: 3px 13px;
    }
  }
  .other-date {
    font-weight: bold;
    letter-spacing: 0.65px;
    font-size: calc(var(--rem) * 13);
  }
  .other-title {
    display: block;
    font-size: calc(var(--rem) * 15);
    letter-spacing: 0.75px;
    font-weight: 600;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    @media screen and (min-width: 769px) {
      font-size: calc(var(--rem) * 18);
      letter-spacing: 0.9px;
    }
  }
  .other-more {
    display: flex;
    justify-content: center;

    a {
      background: #004F92;
      color: #FFF;
      font-weight: bold;
      font-size: calc(var(--rem) * 16);
      letter-spacing: 1.6px;
      border-radius: 40px;
      padding: 11px 51px;
      @media screen and (min-width: 769px) {
        font-size: calc(var(--rem) * 20);
        letter-spacing: 2px;
        border-radius: 40px;
        padding: 21px 100px;
      }
    }
  }
}