.c-teaser {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;

  h4, p {
    font-family: Meta, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    line-height: 24px !important;
  }

  .c-teaser__media {
    .field-name-field-image {
      width: 100%;
    }
  }

  .c-teaser__content {
    line-height: 24px;
  }

  .c-teaser__date {
    font-size: 12px;
    text-transform: uppercase;
  }

  .c-teaser__title {
    :is(h1, h2, h3, h4, h5, h6) {
      font-size: 16px;

      a {
        color: var(--color-medium-blue);

        &:hover {
          text-decoration: underline;
        }

        .medium-blue-bg & {
          color: var(--color-white);
        }
      }
    }
  }

  .c-teaser__standfirst {
    font-size: 14px;

    .lang-ja & {
      display: none;
    }
  }

  .c-teaser__actions {
    margin-block: 0;

    .c-teaser__more-link {
      font-weight: normal;
      font-size: 14px;
      text-decoration: underline;
      color: var(--color-black);

      &:hover {
        font-weight: bold;
      }

      .medium-blue-bg & {
        color: var(--color-white);
      }
    }
  }
}

.c-teaser--stacked {
  .c-teaser__media {
    margin-bottom: calc(var(--default-spacing));
  }

  .c-teaser__title {
    :is(h1, h2, h3, h4, h5, h6) {
      font-size: 24px;
    }
  }
}

.c-teaser--list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--default-spacing);

  @media (width >= 768px) {
    grid-template-columns: 1fr 2fr;
  }

  .c-teaser__media {
    display: none;

    @media (width >= 768px) {
      display: block;
    }
  }
}
