.embed-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin: 1em 0;
  font-family: Noto Sans JP, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, 游ゴシック, Yu Gothic, 游ゴシック体, YuGothic, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  background: #fff;
}

.embed-card__link {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

.embed-card__link--center {
  align-items: flex-start;
}

.embed-card__img {
  flex-shrink: 0;
  width: 160px;
}

.embed-card__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.embed-card__logo {
  flex-shrink: 0;
  width: 120px;
}

.embed-card__logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.embed-card__body {
  flex: 1;
  min-width: 0;
}

.embed-card__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #000;
}

.embed-card__text {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

.embed-card__link--center .embed-card__text {
  font-size: 12px;
}

@media (max-width: 767px) {
  .embed-card__link {
    gap: 10px;
    padding: 14px;
  }

  .embed-card__img {
    width: 90px;
  }

  .embed-card__link--center {
    align-items: flex-start;
  }

  .embed-card__logo {
    width: 70px;
  }

  .embed-card__title {
    font-size: 14px;
  }

  .embed-card__text {
    font-size: 12px;
  }
}
