.rd-capsules {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 10px;
}

.rd-capsules__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 38px;
  line-height: 52px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 38px;
}

@media (max-width: 767px) {
  .rd-capsules__title {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 1024px) {
  .rd-capsules {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .rd-capsules {
    gap: 40px;
  }
}

.rd-capsule {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.rd-capsule--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .rd-capsule {
    flex-direction: column;
    gap: 20px;
  }
  .rd-capsule--reverse {
    flex-direction: column;
  }
}

.rd-capsule__media {
  flex: 0 0 65%;
  max-width: 65%;
  aspect-ratio: 800 / 440;
  overflow: hidden;
}

.rd-capsule__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .rd-capsule__media {
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
  }
}

.rd-capsule__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 4px;
}

@media (max-width: 1024px) {
  .rd-capsule__content {
    max-width: 100%;
    padding-top: 0;
  }
}

.rd-capsule__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 31px;
  line-height: 48px;
  text-transform: uppercase;
  color: var(--text);
}

@media (max-width: 1024px) {
  .rd-capsule__title {
    font-size: 26px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .rd-capsule__title {
    font-size: 20px;
    line-height: 20px;
  }
}

.rd-capsule__text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
}

@media (max-width: 767px) {
  .rd-capsule__text {
    font-size: 14px;
  }
}

.rd-capsule__text--expanded .rd-capsule__text-short {
  display: none;
}

.rd-capsule__text--expanded .rd-capsule__text-full {
  display: inline;
}

.rd-capsule__text-full {
  display: none;
}

.rd-capsule__more {
  color: var(--text2);
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

.rd-author {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.rd-author__photo {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 90px;
  overflow: hidden;
  background: #d9d9d9;
}

.rd-author__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-author__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-family);
  font-size: 14px;
  letter-spacing: 0.98px;
  line-height: 1.55;
}

.rd-author__label {
  text-transform: uppercase;
  color: var(--text2);
  font-weight: 600;
}

.rd-author__name {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
}

.rd-capsule__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.rd-capsule__title-link {
  color: inherit;
  text-decoration: none;
}

.rd-capsule__title-link:hover {
  text-decoration: underline;
}
