@charset "UTF-8";
/* ==================== ##Portfolio Content Toggle ==================== */
.pf-content__toggle {
  display: none;
}

@media (max-width: 767px) {
  .pf-content-collapsible.pf-content--collapsed {
    max-height: 480px;
    overflow: hidden;
    position: relative;
  }
  .pf-content-collapsible.pf-content--collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 60%, #fff 100%);
    pointer-events: none;
  }
  .pf-content__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 10px;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--labstore-primary-color);
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
  }
  .pf-content__toggle::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233b5bf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }
  .pf-content__toggle.is-expanded::after {
    transform: rotate(180deg);
  }
}
/* ==================== ##Portfolio Changelog ==================== */
.wgl-portfolio-changelog {
  margin-top: 32px;
}
.wgl-portfolio-changelog__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wgl-portfolio-changelog__entries {
  margin: 0;
  padding: 0;
  list-style: none !important;
}
.wgl-portfolio-changelog__entry {
  padding: 12px 0;
  border-bottom: 1px solid #E4E6F5;
  list-style: none !important;
  counter-increment: none !important;
}
.wgl-portfolio-changelog__entry::marker {
  display: none !important;
  content: "" !important;
}
.wgl-portfolio-changelog__entry::before {
  display: none !important;
  content: "" !important;
}
.wgl-portfolio-changelog__entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.wgl-portfolio-changelog__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.wgl-portfolio-changelog__version {
  font-size: 12px;
  font-weight: 700;
  background-color: var(--labstore-primary-color, #000);
  color: #fff;
  padding: 2px 9px;
  border-radius: 20px;
  flex-shrink: 0;
}
.wgl-portfolio-changelog__date {
  font-size: 12px;
  color: #8B92B2;
}
.wgl-portfolio-changelog__list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}
.wgl-portfolio-changelog__item {
  font-size: 13px;
  line-height: 1.5;
  color: #8B92B2;
  padding: 1px 0;
}
.wgl-portfolio-changelog__item::marker {
  content: none;
}
.wgl-portfolio-changelog__item::before {
  content: "— ";
  color: #8B92B2;
}

/* ==================== ##Portfolio Details ==================== */
.wgl-portfolio-details__block {
  border: 1px solid #E4E6F5;
  border-radius: 16px;
  padding: 24px;
  background-color: #fff;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .wgl-portfolio-details__block {
    padding: 16px;
    margin-top: 16px;
  }
}
.wgl-portfolio-details__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.wgl-portfolio-details__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E4E6F5;
  gap: 12px;
}
.wgl-portfolio-details__row:last-child {
  border-bottom: none;
}
.wgl-portfolio-details__label {
  font-size: 14px;
  font-weight: 700;
  color: inherit;
  flex-shrink: 0;
  margin: 0;
}
.wgl-portfolio-details__value {
  font-size: 14px;
  color: inherit;
  text-align: right;
  margin: 0;
}
.wgl-portfolio-details__value--link {
  color: var(--labstore-primary-color);
  text-decoration: none;
  transition: opacity 0.2s;
}
.wgl-portfolio-details__value--link:hover {
  opacity: 0.7;
}
.wgl-portfolio-details__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.wgl-portfolio-details__tag-link {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 13px;
  background-color: #f3f3f3;
  color: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.25s, color 0.25s;
}
.wgl-portfolio-details__tag-link:hover {
  background-color: #e8e8e8;
  color: inherit;
}
@media (max-width: 600px) {
  .wgl-portfolio-details__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .wgl-portfolio-details__value {
    text-align: left;
  }
  .wgl-portfolio-details__tags-list {
    justify-content: flex-start;
  }
}