    .grid-wrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 10px;
      margin: 0 auto;
    }
    .grid-block {
      position: relative;
      background-color: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    }
    .grid-block:hover .block-content {
      background: #EFEFEF;
    }
    .block-content {
      padding-top: 40px;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-left: 20px;
    transition: background 0.3s ease-in-out;
    }
    .block-subtitle {
      font-size: 16px;
      color: #5C5C5C;
      margin-bottom: 40px;
      margin-top: 40px;
    }
    .block-price {
      font-size: 30px;
      font-weight: bold;
      color: #384B60;
      margin-bottom: 30px;
    }
    .block-characteristics-title {
      font-size: 18px;
      font-weight: bold;
      color: #384b60;
      margin-bottom: 10px;
    }
    .block-details {
      font-size: 14px;
      line-height: 1.4;
      color: #5C5C5C;
    }
    .block-icon {
position: absolute;
    top: 20px;
    left: 20px;
    display: flex
;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
    .block-icon-secondary {
         position: absolute;
    top: 115px;
    right: 30px;
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
    .block-icon img {
      width: 250px;
      height: 50px;
    }
.block-icon-secondary img {
      width: 110px;
      height: 110px;
    }
    .btn_k-more {
position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 10px;
    color: #5C5C5C;
    font-size: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid #5C5C5C;
}
    .btn_k-more:hover {
      background-color: #26b882;
      color: #ffffff;
      border: none;
    }