.cwp-gallery__tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.cwp-gallery__tag{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid #ddd;
  background:#fff;
  font-size:13px;
  cursor:pointer;
}

.cwp-gallery__tag.is-active{
  border-color:#000;
  background:#000;
  color:#fff;
}

.section--faq .cwp-skeleton {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e2e2;
    padding: 25px 0;
    margin-bottom:8px;
}

/* shimmer animation */
.section--faq .cwp-skeleton::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.55) 50%,
        rgba(255,255,255,0) 100%
    );
    animation: cwp-skeleton-shimmer 1.1s infinite;
}


/* Animation */
@keyframes cwp-skeleton-shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* QUESTION BUTTON +/- icon (shared with home/faq) */
.section--faq .section__question {
    position: relative;
    padding-right: 40px;
    line-height: 1.45;
    color: inherit;
}

.section--faq .section__question::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11 5h2v14h-2z M5 11h14v2H5z'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M11 5h2v14h-2z M5 11h14v2H5z'/></svg>") no-repeat center / contain;
    transition: -webkit-mask-image .25s, mask-image .25s;
}

.section--faq .section__item.is-open .section__question::after {
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 11h14v2H5z'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 11h14v2H5z'/></svg>") no-repeat center / contain;
}


