/* GRID (same behavior, new class) */
.krsr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* TABLET */
@media (max-width: 1024px) {
  .krsr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .krsr-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* CARD */
.krsr-item {
    background-color: #073B4C!important;
    border: 1px solid silver;
    border-radius: 5px;
    margin-bottom: 2vh;
    width: 100%;
}

/* IMAGE WRAP */
.krsr-thumb {
    aspect-ratio: 1.91 / 1;
    overflow: hidden;
    width: 100%;
}

/* IMAGE */
.krsr-thumb img {
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TITLE WRAP */
.krsr-title-wrap {
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem;
}

/* TITLE */
h3.krsr-title {
    width: 100%;
    margin-bottom:0!important;
}

/* LINK */
.krsr-title a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;    
    font-size: 1rem!important;
    font-weight: 600;
    line-height: 1.1rem;
    text-transform: uppercase;
    text-align: center;    
    color: #fff;
    text-decoration: none;
}

/* BUTTON */
.krsr-btn {
    display: block;
    margin: 0 auto;
    background-color:#F57F04;
    color: white;
    border: none!important;
    border-radius: 5px;
    padding: .5em 1.5em;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.krsr-btn:hover,
.krsr-btn:focus {
    cursor: pointer;
    background-color:#F57F04;
    color: white;
}