.component-why-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
}

.component-why-mobile > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.component-why-mobile > div > article {
    width: 25em;
    display: flex;
    flex-direction: column;
}

.component-why-mobile > div > article > h4 {
    color: var(--foreground-color);
    font-size: 20px;
    text-align: center;
    font-weight: normal;
}

.component-why-mobile > div > article > div {
    background-color: var(--background-color-3);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 1em;
}

.component-why-mobile > div > article > div > div > p {
    color: var(--foreground-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 20px;
    line-clamp: 11;
    -webkit-line-clamp: 11;
}

.component-why-mobile > a {
  color: var(--foreground-color-2);
  width: 100%;
  font-size: 15px;
  text-decoration: none;
  text-align: right;
  margin-bottom: 5em;
}