/*
 * Public Category Detail 18.1.1
 * Kompakter Qualitäts-Strip ohne doppelte Hero-Kennzahlen.
 */

.gfy-cd1811 {
    position: relative;
    z-index: 2;
    padding: 18px 0 6px;
}

.gfy-cd1811__strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 14px 18px;
    border: 1px solid rgba(138, 160, 184, .22);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(248, 251, 254, .96));
    box-shadow:
        0 1px 1px rgba(15, 35, 58, .025),
        0 10px 28px rgba(18, 47, 81, .055);
}

.gfy-cd1811__intro {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 11px;
    min-width: 220px;
}

.gfy-cd1811__pulse {
    position: relative;
    flex: 0 0 11px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #20b978;
    box-shadow: 0 0 0 5px rgba(32, 185, 120, .1);
}

.gfy-cd1811__intro strong {
    display: block;
    color: #17324d;
    font-size: .88rem;
    line-height: 1.2;
}

.gfy-cd1811__intro small {
    display: block;
    margin-top: 3px;
    color: #718399;
    font-size: .7rem;
    line-height: 1.35;
}

.gfy-cd1811__items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gfy-cd1811__items li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 7px 11px;
    border: 1px solid rgba(226, 232, 240, .92);
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    color: #47617a;
    font-size: .73rem;
    font-weight: 750;
    white-space: nowrap;
}

.gfy-cd1811__icon {
    display: grid;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 8px;
}

.gfy-cd1811__icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gfy-cd1811__icon.is-green {
    background: #ebf9f1;
    color: #16a34a;
}

.gfy-cd1811__icon.is-blue {
    background: #edf5ff;
    color: #2563eb;
}

.gfy-cd1811__icon.is-cyan {
    background: #eaf9fc;
    color: #0891b2;
}

.gfy-cd1811__icon.is-violet {
    background: #f2efff;
    color: #7c3aed;
}

.gfy-cd1811__items li.is-excellent {
    border-color: rgba(22, 163, 74, .15);
    color: #187347;
}

.gfy-cd1811__items li.is-good {
    border-color: rgba(14, 165, 233, .16);
    color: #176a8a;
}

.gfy-cd1811__items li.is-solid {
    border-color: rgba(245, 158, 11, .18);
    color: #8a5b11;
}

.gfy-cd1811__items li.is-review {
    border-color: rgba(249, 115, 22, .18);
    color: #985018;
}

@media (max-width: 1100px) {
    .gfy-cd1811__strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .gfy-cd1811__items {
        justify-content: flex-start;
        width: 100%;
    }
}

@media (max-width: 620px) {
    .gfy-cd1811 {
        padding-top: 14px;
    }

    .gfy-cd1811__strip {
        padding: 15px;
        border-radius: 16px;
    }

    .gfy-cd1811__intro {
        min-width: 0;
    }

    .gfy-cd1811__items {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gfy-cd1811__items li {
        justify-content: flex-start;
        width: 100%;
        white-space: normal;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .gfy-cd1811__pulse {
        animation: gfy-cd1811-pulse 3.8s ease-in-out infinite;
    }
}

@keyframes gfy-cd1811-pulse {
    0%, 100% {
        box-shadow: 0 0 0 5px rgba(32, 185, 120, .1);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(32, 185, 120, .04);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gfy-cd1811__pulse {
        animation: none !important;
    }
}
