.row-detail-box {
    position: relative;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 3px rgba(29, 28, 28, 0.3);
}

.row-description-wrapper {
    height: 25rem;
}

.top-description-box {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: brown;
    border-radius: 2px;
    color: white;
    padding: 0.3rem 1rem;
    z-index: 10;
}

.blog-entry .row {
    display: flex;
    flex-wrap: wrap;
}

.blog-entry.even .row {
    flex-direction: row-reverse;
}

.row-image-wrapper {
    max-height: 30rem;
    height: 30rem;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.row-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.date-label-box {
  width: 5rem;
  height: 5rem;
  padding: 0.4rem;
  box-sizing: border-box;
  position: absolute;
  top: 1rem;
  background-color: white;
  color: black;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 2;
}
.description-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.read-more-static {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}


.row-even-offset {
  right: 22px;
}

.row-odd-offset {
  left: 22px;
}

@media (max-width: 768px) {
  .row-even-offset,
  .row-odd-offset {
    left: auto !important;
    right: auto !important;
  }
}

@media (max-width: 768px) {
  .row-image-wrapper {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .top-description-box {
    top: -15px; 
  }
}



@media (max-width: 768px) {
 .read-more-static {
    bottom: -15px;
  }
}



