@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@container myContainer (max-width: 767px) {
  .my-tile {
    border: 3px solid red;
  }
}
@container (min-width: 768px) {
  .my-tile {
    border: 3px solid red;
  }
}
/* Card shell */
.task-item {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1.5rem 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease-in-out, border 0.2s ease-in-out;
  margin-bottom: 24px;
  /* Inner padding */
  /* Hover state */
  /* Focus state when the link inside is focused */
}
.task-item:last-child {
  margin-bottom: 0px;
}
.task-item .taxonomy-term .field--name-description {
  width: 32px;
  height: 32px;
}
.task-item .taxonomy-term .field--name-description svg {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
}
.task-item .field--name-field-paragraph-link {
  position: relative;
}
.task-item .field--name-field-paragraph-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50px;
  display: block;
  background-color: #CCE7E5;
  transform: translate(0px, -50%);
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
}
.task-item .field--name-field-paragraph-link::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  display: block;
  background-color: #00857B;
  -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2720%27%20height%3D%2720%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M11.3333%2015L10.1667%2013.7917L13.125%2010.8333H3V9.16667H13.125L10.1667%206.20833L11.3333%205L16.3333%2010L11.3333%2015Z%27%20fill%3D%27black%27/%3E%3C/svg%3E);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 20px 20px;
  mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2720%27%20height%3D%2720%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M11.3333%2015L10.1667%2013.7917L13.125%2010.8333H3V9.16667H13.125L10.1667%206.20833L11.3333%205L16.3333%2010L11.3333%2015Z%27%20fill%3D%27black%27/%3E%3C/svg%3E);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 20px 20px;
  transform: translate(0px, -50%);
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.task-item .field--name-field-paragraph-link:hover::after, .task-item .field--name-field-paragraph-link:hover::before {
  transform: translate(8px, -50%);
}
.task-item__inner {
  padding: 1.25rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.task-item__inner a {
  display: block;
  width: 100%;
  font-weight: 700;
  color: #28857A; /* your teal */
  text-decoration: none;
  padding-right: 3rem;
  position: relative;
  transition: color 0.3s ease-in-out, background-position 0.3s ease-in-out;
  min-height: 24px;
  font-family: Figtree;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.task-item__inner a:hover {
  color: #1f6b62;
  background-position: 100% center;
}
.task-item__inner a:active {
  color: #1f6b62;
  text-decoration: underline;
}
.task-item__inner a:focus, .task-item__inner a:focus-visible {
  outline: none;
}
.task-item:hover {
  box-shadow: 0 0.125rem 0.75rem 0 rgba(0, 0, 0, 0.12);
}
.task-item:has(a:focus), .task-item:has(a:focus-visible) {
  border: 0.125rem solid #6f42c1; /* replace with your purple token */
}
.task-item__link {
  display: grid;
  align-items: center;
  grid-template-columns: 32px calc(100% - 40px);
  gap: 8px;
}

/*# sourceMappingURL=task-item.css.map*/