.gr-desc-intro-limit {
            position: relative;
            --gr-desc-line-height: 1.7em;
            --gr-desc-max-lines: 15;
            --gr-desc-max-height: calc(var(--gr-desc-line-height) * var(--gr-desc-max-lines));
            border-radius: 18px;
        }

        .gr-desc-intro-limit.is-collapsed {
            max-height: var(--gr-desc-max-height);
            overflow: hidden;
        }

        .gr-desc-intro-limit.is-collapsed::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 88px;
            background: linear-gradient(
                180deg,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.82) 52%,
                rgba(255,255,255,1) 100%
            );
            border-radius: 0 0 18px 18px;
            pointer-events: none;
        }

        .gr-desc-toggle-wrap {
            display: flex;
            justify-content: center;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid rgba(207,95,146,0.18);
        }

        .gr-desc-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            border: 0;
            background: transparent;
            color: #cf5f92;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.2;
            cursor: pointer;
            white-space: nowrap;
            text-decoration: none;
        }

        .gr-desc-toggle:hover {
            color: #b24f7d;
            text-decoration: underline;
        }