.products__area {
  margin: 60px 0;
  &--item {
    background-color: $c-white;
    border-radius: 24px;
    border: 1px solid $c-gray-light;
    padding: 8px;
    transition: border .5s linear .5s;

    .media {
      height: 280px;
      overflow: hidden;
      position: relative;
      width: 100%;
      background-color: $c-gray-light;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      
      img {
        height: 280px;
        width: 100%;
        // object-fit: cover;
        border-radius: 16px;
      }

      .overlay {
        // display: none;
        visibility: hidden;
        opacity: 0;
        background-color: $c-main-dark;
        border-radius: 16px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        transition: visibility 1s, opacity 1s; 
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 16px;

        p {
          margin-bottom: 0;
          color: $c-white;
          font-size: clamp(14px, 3vw, 16px);
          font-weight: 500;
          line-height: 24px;
          text-align: center;
        }

      }
    }

    .content {
      text-align: center;
      padding: 16px;
      h3 {
        font-size: clamp(18px, 3vw, 24px);
        color: $c-text;
        margin-bottom: 0;
        line-height: 32px;
        font-weight: 600;
      }
    }

    &:hover {
      transition: border .5s linear 0.5s;
      border: 1px solid $c-second;

      .media {
        .overlay {
          transition: visibility 0.5s linear 0.5s, opacity 300ms;
          visibility: visible;
          opacity: 1;
        }
      }
    }
  }
}