.blog-section {
  & .section__title {
    text-align: center;
  }

  & .section__subtitle {
    text-align: center;
  }

  & .all-blogs {
    max-width: 320px;
    width: 100%;
    height: 46px;
    margin: 50px auto 0;

    @media(max-width: 600px) {
      max-width: 100%;
    }
  }
}

.blog-slider {
  margin-top: 32px;

  & .blog-item {
    max-width: 331px;
    cursor: pointer;
    position: relative;

    @media(max-width: 600px) {
      max-width: 244px;
      width: calc(50% - 10px);
    }


    & .blog-item__image {
      height: 472px;
      width: 100%;
      overflow: hidden;
      position: relative;
      border-radius: 2px;

      @media(max-width: 600px) {
        max-height: 290px;
      }

      & .blog-bg__img {
      display: none;
        position: absolute;
        background: linear-gradient(180deg, rgba(51, 51, 51, 0.00) 0%, rgba(51, 51, 51, 0.48) 100%);
        border-radius: 12px;
        box-shadow: 0px 0px 24px 0px rgba(255, 255, 255, 0.80) inset;
        width: 100%;
        height: 100%;
        z-index: 2;
        left: 0;
        top: 0;
      }

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
      
      & video {
		object-fit: cover;
		padding: 0;
		margin: 0;
		width: 100%;
	}


      & .tag {
        color: #FFF;
        font-family: 'Evolventa';
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 132%;
        letter-spacing: -0.36px;
        border-radius: 16px;
        background-color: rgba(255, 255, 255, 0.32);
        backdrop-filter: blur(4px);
        position: absolute;
        bottom: 16px;
        left: 16px;
        padding: 8px 12px;
        z-index: 3;

        @media(max-width: 600px) {
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 132%;
          letter-spacing: -0.28px;
          padding: 10px 16px;
          left: 8px;
          bottom: 12px;
        }
      }

    }

    .blog-item__description {
      margin-top: 16px;
      color: var(--Text-Primary);
      font-family: 'Evolventa';
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 132%;
      letter-spacing: -0.36px;

      @media(max-width:600px) {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: -0.28px;
      }
    }
  }
}

.blog-item > a {
  position: absolute;
  display: block;
  z-index: 3;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}