/* Standalone variables
========================================================================== */
/*
==========================================================================
    Mixins - typography - body
========================================================================== */
.c-story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #B4F6D0;
  color: #204D51;
  border-radius: 0.25rem;
  text-align: center;
  padding: 1.25rem;
  max-height: 25.375rem;
  gap: 0.625rem;
}
@media (min-width: 1025px) {
  .c-story-card {
    padding: 4rem;
    gap: 1.25rem;
    max-height: 32.875rem;
  }
}

.c-story-card__avatar {
  width: 3rem;
  height: 3rem;
}
.c-story-card__avatar figure {
  width: 100%;
  height: 100%;
}

.c-story-card__avatar .c-avatar--placeholder {
  background-color: #204D51;
  color: #B4F6D0;
}

.c-story-card__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.c-story-card__person-name {
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
}

.c-story-card__person-desc {
  font-size: 20px;
  line-height: 1.6;
  font-weight: normal;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 4rem;
}
@media (min-width: 1025px) {
  .c-story-card__person-desc {
    -webkit-line-clamp: 1;
    max-height: 2rem;
  }
}

.c-story-card__content {
  height: 7.5rem;
  overflow: hidden;
  display: block;
  margin-bottom: 0.75rem;
  /*
  &::after {
      content: '...';
      position: absolute;
      bottom: 0;
      right: 0;
      background: linear-gradient(to right, transparent, color(light-green-01) 50%);
      padding-left: 1rem;
      pointer-events: none;
  }
      */
}
@media (min-width: 1025px) {
  .c-story-card__content {
    height: 10.5rem;
    margin-bottom: 0;
  }
}

.c-story-card__content-inner {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media (min-width: 1025px) {
  .c-story-card__content-inner {
    -webkit-line-clamp: 7;
  }
}

.c-story-card__action {
  margin-top: 0.875rem;
  width: 100%;
}
@media (min-width: 1025px) {
  .c-story-card__action {
    margin-top: 0.75rem;
    width: auto;
  }
}

.c-story-card__action .c-button {
  position: initial;
  width: 100%;
}
@media (min-width: 1025px) {
  .c-story-card__action .c-button {
    width: auto;
  }
}
.c-story-card__action .c-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
