.rp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rp-item {
 display: flex;
  flex-direction: column;
  padding: 20px;
}
.rp-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rp-image {
  display: block;
  width: 100%;
  height: auto;
}
.rp-image-wrap {
  display: block;
  flex-shrink: 0;
}
.rp-description {
  font-size: 14px;
  line-height: 1.4;
  flex-grow: 1;
  min-height: 60px; 
}
.rp-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #ddd;
    color: #000;
    border: none;
    transition: all 0.3s ease;
}
.rp-button:hover {
    opacity: 0.9;
}

.rp-more-button {
  display: inline-block;
  text-decoration: none;
  padding: 10px 15px;
  color: #000;
}
.rp-button-wrap {
  display: block;
  margin-top: auto;
}

.rp-item.rp-more {
    background-color: #FFFFFF;
}

.rp-more-button.only-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
}
.rp-more-button .rp-more-icon {
    display: inline-block;
    line-height: 1;
}
.rp-more-button .rp-more-text {
    margin-right: .5em;
}
