* { box-sizing:border-box; }

.tiles-wrapper {
  margin: 0 auto 50px auto;
  padding: 0 20px;
  max-width:1280px;
}

.tiles-grid {
display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px 32px;
}

.tiles-single {
    background: #ffffff;
    border-radius: 24px;
    display: flex;
  flex-direction: column;
  box-shadow: rgba(0,0,0,0.08) 1px 2px 2px;
    /* flex: 1;
     
    gap: 16px;
  position:relative;
  /* padding: 32px; */
}

.tiles-image { padding: 1.5rem 0 .75rem 1.75rem; }

.tiles-image img {
    border-radius: 240px 0 0 240px;
    height: 100%;
    width: 100%;
    object-fit: cover;
  aspect-ratio: 16 / 9;
  
}

.tiles-content {
  padding: 1rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height:100%;
}

.tertiary_btn { 
  text-decoration:none !important; 
}

/* .tiles-content {
    flex: 1;
    padding: 0 1.5rem 2rem 1.5rem;
      display: flex;
    flex-direction: column;
    justify-content: space-between;
}
*/

.tiles-title {
    color: #233065;
    font-family: Lato;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}
.tertiary_btn {
  line-height:1.25;
font-size: 14px;
    padding: 7px 21px;
}