.jtl-post {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 27, 69, 0.06);
}
.jtl-post * {
  box-sizing: border-box;
}
.jtl-post__media {
  position: relative;
  width: 100%;
  aspect-ratio: 385/214;
  overflow: hidden;
  background: #d9edfb;
}
.jtl-post__media-link {
  display: block;
  width: 100%;
  height: 100%;
}
.jtl-post__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jtl-post__img--placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d9edfb 0%, #eef4f8 100%);
}
.jtl-post__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.jtl-post__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.jtl-post__overline {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0b1b45;
}
.jtl-post__title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.jtl-post__title.jtl-post__title {
  color: #0b1b45;
}
.jtl-post__excerpt {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0b1b45;
}
.jtl-post__more {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
}
.jtl-post__more.jtl-post__more {
  color: #0b1b45;
  text-decoration: none;
}
.jtl-post__more.jtl-post__more:hover, .jtl-post__more.jtl-post__more:focus {
  color: #0b1b45;
  text-decoration: none;
}
.jtl-post__more-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.jtl-post__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.jtl-post__arrow-icon {
  display: block;
}
.jtl-post__more:hover .jtl-post__arrow {
  transform: translateX(4px);
}
