.ionis-article-section {
  padding: 64px 0;
  .article-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .article-image::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-purple);
    margin-top: 1rem;
  }
  .article-caption {
    padding: 1rem;
    font-size: var(--fs-sm);
    font-weight: var(--fw-light);
  }
  .base {
    margin-top: 1rem;
  }
  .article-tags {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    font-size: var(--fs-base);
    color: var(--color-gray-dark);
  }
  .article-tag {
    text-align: center;
    color: var(--color-purple);
    font-weight: var(--fw-light);
    font-size: var(--fs-sm);
    width: fit-content;
    height: 42px;
    min-width: auto;
    display: flex;
    padding: 12px 16px;
    align-items: center;
    border: 1px solid var(--color-purple);
    border-radius: 26px;
  }
}

.breadcrumb {
  background: var(--color-dark-purple);
  ol {
    max-width: 1372px;
    margin-left: auto;
    margin-right: auto;
    list-style: none;
    display: flex;
    padding: 10px 10px;
    li {
      display: flex;
      align-items: center;

      /* Add separator backslash for all items except the first */
      &:not(:first-child)::before {
        content: "/";
        color: white;
        font-size: var(--fs-md);
        font-weight: var(--fw-bold);
        margin: 0 10px;
      }

      /* Add home icon to first item */
      &:first-child::before {
        content: "";
        display: inline-block;
        width: 15px;
        height: 13px;
        background-image: url('../assets/images/global/home-icon.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-right: 8px;
      }
    }

    .breadcrumb-link {
      color: white;
      font-size: var(--fs-md);
      font-weight: var(--fw-bold);
      text-decoration: none;
      &:hover {
        text-decoration: underline;
      }
    }

    /* Mobile styles */
    @media (max-width: 767px) {
      li {
        /* Hide all items except the last one */
        &:not(:last-child) {
          display: none;
        }

        /* Remove default before elements on mobile */
        &::before {
          display: none;
        }

        /* Add chevron-left icon to the last item on mobile */
        &:last-child::before {
          content: "";
          display: inline-block;
          width: 12px;
          height: 12px;
          background-image: url('../assets/images/global/chevron-left-icon.svg');
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          margin-right: 8px;
        }
      }
    }
  }
}
