.fcs-read-more {
  display: grid;
  grid-template-columns: minmax(140px, 30%) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  width: 100%;
  margin: 32px 0;
  padding: 16px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-left: 4px solid #ec0f6b;
  border-radius: 12px;
  background: #f8f7f4;
  box-sizing: border-box;
}

.fcs-read-more__media {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #e3e1dc;
}

.fcs-read-more__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.fcs-read-more__body {
  min-width: 0;
}

.fcs-read-more__label {
  display: inline-block;
  margin: 0 0 8px;
  color: #ec0f6b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fcs-read-more h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}

.fcs-read-more h3 a {
  color: inherit;
  text-decoration: none;
}

.fcs-read-more h3 a:hover,
.fcs-read-more h3 a:focus {
  color: #ec0f6b;
}

.fcs-read-more p {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 0.95em;
  line-height: 1.55;
}

.fcs-read-more--no-image {
  grid-template-columns: 1fr;
}

@media (max-width: 700px) {
  .fcs-read-more {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }
}

