.row
{
 display: grid;
 width: 100%;
 grid-gap: 3px;
 position: relative;
 padding: 0;
}

.item
{
 position: relative;
 display: flex;
 width: 100%;
 padding: 0;
 margin: 0;
 background: #FFF;
 box-sizing: border-box;
 border-radius: 5px;
 flex-direction: column;
 justify-content: space-between
}

.item_image
{
 position: relative;
 max-height: 250px;
 height: 100%;
 padding: 0;
 margin: 0;
 box-sizing: border-box;
 overflow: hidden
}

.item_image > a
{
 display: flex;
 width: 100%;
 height: 100%
}

.item_image img
{
 object-fit: contain;
 width: 100%;
 height: auto;
 padding: 20px;
 box-sizing: border-box;
 transition: transform 0.5s ease;
 transform: unset
}

.item_image img:hover
{
 transform: scale(1.05)
}

.item_text
{
 position: relative;
 width: 100%;
 padding: 20px;
 margin: 0;
 box-sizing: border-box
}

.item_text h2
{
 position: relative;
 font-size: 0.938rem;
 font-weight: 400;
 margin-bottom: 20px
}

.item_text p
{
 font-size: 1rem;
 font-weight: 500;
 color: #000;
 margin: 0
}

.item_about 
{
 position: absolute;
 width: 100%;
 bottom: 0;
 padding-top: 20px;
 padding-left: 20px;
 padding-right: 20px;
 padding-bottom: 0;
 margin: 0;
 background: rgb(73 111 131 / 61%);
 box-sizing: border-box;
}

.item_about h2 
{
 position: relative;
 font-size: 0.938rem;
 font-weight: 400;
 margin-top: 0;
 margin-left: 0;
 margin-right: 0;
 margin-bottom: 20px;
 color: #FFF;
 overflow: hidden;
 white-space: nowrap;
 text-overflow: ellipsis
}

@media screen and (max-width: 480px)
{
 .row
 {
  grid-gap: 30px;
 }
}