/* =========================================================
   SongDrop Help Center v2
   Eigenes Modul: FAQ-ähnliche Wissensbasis mit Suche.
   ========================================================= */

.songdrop-help-center {
    display: grid;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 86px;
}

.songdrop-help-center *,
.songdrop-help-center *::before,
.songdrop-help-center *::after {
    box-sizing: border-box;
}

.songdrop-help-center [hidden] {
    display: none !important;
}

.sd-help-center-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.sd-help-center-kicker span {
    color: var(--green);
    font-size: 15px;
    text-shadow: 0 0 12px rgba(34, 255, 154, .48);
}

.sd-help-center-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(117, 224, 255, .18);
    border-radius: 34px;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 217, 255, .14), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(34, 255, 154, .12), transparent 38%),
        linear-gradient(135deg, rgba(3, 16, 30, .97), rgba(2, 9, 18, .94));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .24), inset 0 0 64px rgba(0, 217, 255, .025);
}

.sd-help-center-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(117, 224, 255, .045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(117, 224, 255, .04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000, transparent 78%);
    opacity: .65;
    pointer-events: none;
}

.sd-help-center-hero::after {
    content: "";
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
    box-shadow: 0 0 18px rgba(0, 217, 255, .34);
}

.sd-help-center-hero__copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: clamp(28px, 5vw, 58px);
}

.sd-help-center-hero h1 {
    max-width: 780px;
    margin: 15px 0 17px;
    color: #f3fbff;
    font-size: clamp(44px, 6.3vw, 82px);
    line-height: .91;
    letter-spacing: -.075em;
    text-transform: none;
    text-shadow: 0 0 28px rgba(0, 217, 255, .15);
}

.sd-help-center-hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1.2px var(--cyan);
    text-shadow: 0 0 18px rgba(0, 217, 255, .60), 0 0 30px rgba(34, 255, 154, .14);
}

.sd-help-center-hero__lead {
    max-width: 690px;
    margin: 0;
    color: #b7cfda;
    font-size: clamp(15px, 1.8vw, 19px);
    line-height: 1.65;
}

.sd-help-search {
    max-width: 720px;
    margin-top: 29px;
    padding: 14px;
    border: 1px solid rgba(117, 224, 255, .16);
    border-radius: 22px;
    background: rgba(0, 7, 15, .54);
    box-shadow: inset 0 0 28px rgba(0, 217, 255, .035);
    backdrop-filter: blur(14px);
}

.sd-help-search > label {
    display: block;
    margin: 0 0 8px 3px;
    color: #b6e7f3;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sd-help-search__field {
    position: relative;
    display: flex;
    align-items: center;
}

.sd-help-search__field > span {
    position: absolute;
    left: 14px;
    color: var(--cyan);
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
}

.sd-help-search__field input {
    min-height: 54px;
    width: 100%;
    padding: 0 48px 0 44px;
    color: #effbff;
    border: 1px solid rgba(117, 224, 255, .18);
    border-radius: 15px;
    outline: none;
    background: linear-gradient(90deg, rgba(0, 217, 255, .07), rgba(34, 255, 154, .035)), rgba(1, 8, 16, .74);
    font-size: 13px;
    font-weight: 800;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.sd-help-search__field input:focus {
    border-color: rgba(34, 255, 154, .48);
    background: linear-gradient(90deg, rgba(0, 217, 255, .11), rgba(34, 255, 154, .07)), rgba(1, 8, 16, .86);
    box-shadow: 0 0 0 3px rgba(34, 255, 154, .06), 0 0 24px rgba(0, 217, 255, .10);
}

.sd-help-search__field button {
    position: absolute;
    right: 9px;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: #c4f8ff;
    border: 1px solid rgba(117, 224, 255, .18);
    border-radius: 50%;
    background: rgba(0, 217, 255, .07);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.sd-help-search > p {
    min-height: 16px;
    margin: 9px 4px 0;
    color: #88a7b3;
    font-size: 10px;
    font-weight: 800;
}

.sd-help-center-hero__actions,
.sd-help-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.sd-help-button {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 17px;
    border: 1px solid rgba(117, 224, 255, .20);
    border-radius: 14px;
    color: #d9f8ff;
    background: rgba(0, 217, 255, .06);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.sd-help-button:hover,
.sd-help-button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(0, 217, 255, .46);
    box-shadow: 0 10px 24px rgba(0, 217, 255, .12);
    outline: none;
}

.sd-help-button--primary {
    color: #001d15;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 12px 25px rgba(34, 255, 154, .15);
}

.sd-help-button--primary:hover,
.sd-help-button--primary:focus-visible {
    border-color: transparent;
    box-shadow: 0 15px 31px rgba(34, 255, 154, .20);
}

.sd-help-center-hero__visual {
    position: relative;
    z-index: 1;
    min-height: 100%;
    overflow: hidden;
}

.sd-help-center-hero__visual::before {
    content: "";
    position: absolute;
    inset: 14% -18% 0 5%;
    border: 1px solid rgba(0, 217, 255, .16);
    border-radius: 50%;
    box-shadow: 0 0 58px rgba(0, 217, 255, .12), inset 0 0 50px rgba(34, 255, 154, .04);
}

.sd-help-center-hero__halo {
    position: absolute;
    right: -8%;
    bottom: -18%;
    width: min(530px, 105%);
    aspect-ratio: 1;
    border: 1px solid rgba(34, 255, 154, .18);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 255, 154, .10), transparent 64%);
    box-shadow: 0 0 58px rgba(34, 255, 154, .10);
}

.sd-help-center-hero__cat {
    position: absolute;
    right: clamp(-35px, -3vw, -8px);
    bottom: 0;
    z-index: 2;
    width: min(490px, 112%);
    max-height: 93%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .42));
}

.sd-help-center-hero__signal {
    position: absolute;
    z-index: 3;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    color: #bfffe2;
    border: 1px solid rgba(34, 255, 154, .24);
    border-radius: 999px;
    background: rgba(1, 12, 22, .72);
    box-shadow: 0 0 18px rgba(34, 255, 154, .10);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .12em;
}

.sd-help-center-hero__signal--one {
    top: 20%;
    right: 14%;
}

.sd-help-center-hero__signal--two {
    right: 48%;
    bottom: 17%;
    color: #c8f9ff;
    border-color: rgba(0, 217, 255, .24);
}

.sd-help-section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.sd-help-section-title h2,
.sd-help-faq-group__head h2,
.sd-help-final-cta h2,
.sd-help-support-card h2 {
    margin: 8px 0 0;
    color: #f0fbff;
    font-size: clamp(26px, 3.7vw, 44px);
    line-height: 1;
    letter-spacing: -.05em;
}

.sd-help-section-title > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9bc3cf;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.sd-help-section-title > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 11px rgba(34, 255, 154, .60);
}

.sd-help-quick-start,
.sd-help-topic-nav,
.sd-help-faq-group,
.sd-help-support-card,
.sd-help-final-cta {
    border: 1px solid rgba(117, 224, 255, .16);
    border-radius: 28px;
    background:
        radial-gradient(circle at 0 0, rgba(0, 217, 255, .075), transparent 34%),
        rgba(3, 14, 27, .76);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .12);
}

.sd-help-quick-start {
    padding: clamp(20px, 3.1vw, 32px);
}

.sd-help-quick-start__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.sd-help-quick-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: 13px;
    padding: 15px;
    color: #eafaff;
    border: 1px solid rgba(117, 224, 255, .13);
    border-radius: 19px;
    background: linear-gradient(145deg, rgba(0, 217, 255, .055), transparent 48%), rgba(1, 8, 16, .44);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.sd-help-quick-card:hover,
.sd-help-quick-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(0, 217, 255, .34);
    background: linear-gradient(145deg, rgba(0, 217, 255, .10), rgba(34, 255, 154, .055)), rgba(1, 8, 16, .54);
    box-shadow: 0 16px 29px rgba(0, 0, 0, .18);
    outline: none;
}

.sd-help-quick-card__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #002018;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    font-size: 18px;
    font-weight: 950;
}

.sd-help-quick-card > span:nth-child(2) {
    display: grid;
    align-content: center;
    gap: 6px;
}

.sd-help-quick-card strong {
    color: #effaff;
    font-size: 14px;
    line-height: 1.15;
}

.sd-help-quick-card small {
    color: #8eabb7;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.45;
}

.sd-help-quick-card > b {
    grid-column: 2;
    justify-self: end;
    color: var(--green);
    font-size: 17px;
    line-height: 1;
}

.sd-help-topic-nav {
    padding: 16px;
}

.sd-help-topic-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 3px 13px;
}

.sd-help-topic-nav__head > span {
    color: #90aeba;
    font-size: 10px;
    font-weight: 900;
}

.sd-help-topic-nav__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sd-help-topic-nav__chips button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    color: #b9d7e1;
    border: 1px solid rgba(117, 224, 255, .14);
    border-radius: 999px;
    background: rgba(0, 217, 255, .045);
    cursor: pointer;
    font: inherit;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}

.sd-help-topic-nav__chips button:hover,
.sd-help-topic-nav__chips button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(0, 217, 255, .36);
    color: #effbff;
    outline: none;
}

.sd-help-topic-nav__chips button.is-active {
    color: #001e15;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 9px 18px rgba(34, 255, 154, .13);
}

.sd-help-topic-nav__chips b {
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #062219;
    background: rgba(255, 255, 255, .42);
    font-size: 8px;
}

.sd-help-faq {
    display: grid;
    gap: 16px;
}

.sd-help-faq-group {
    overflow: hidden;
    transition: opacity .18s ease, transform .18s ease;
}

.sd-help-faq-group.is-hidden {
    display: none;
}

.sd-help-faq-group__head {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: clamp(20px, 3vw, 29px);
    border-bottom: 1px solid rgba(117, 224, 255, .10);
    background: linear-gradient(90deg, rgba(0, 217, 255, .055), transparent 64%);
}

.sd-help-faq-group__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #002119;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 13px 28px rgba(0, 217, 255, .14);
    font-size: 26px;
    font-weight: 950;
}

.sd-help-faq-group__head p {
    margin: 0;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.sd-help-faq-group__head h2 {
    font-size: clamp(24px, 3.4vw, 37px);
}

.sd-help-faq-group__head div > span {
    display: block;
    max-width: 800px;
    margin-top: 8px;
    color: #8faeb9;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.5;
}

.sd-help-faq-group__count {
    min-width: 72px;
    display: grid;
    place-items: center;
    padding: 9px 10px;
    color: #b6ffdb;
    border: 1px solid rgba(34, 255, 154, .20);
    border-radius: 12px;
    background: rgba(34, 255, 154, .065);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .06em;
    text-align: center;
    text-transform: uppercase;
}

.sd-help-faq-group__items {
    display: grid;
    gap: 9px;
    padding: 13px;
}

.sd-help-faq-item {
    border: 1px solid rgba(117, 224, 255, .11);
    border-radius: 16px;
    background: rgba(1, 8, 16, .38);
    overflow: hidden;
    transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.sd-help-faq-item.is-hidden {
    display: none;
}

.sd-help-faq-item:hover,
.sd-help-faq-item[open] {
    border-color: rgba(0, 217, 255, .24);
    background: linear-gradient(90deg, rgba(0, 217, 255, .055), rgba(34, 255, 154, .026)), rgba(1, 8, 16, .48);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.sd-help-faq-item summary {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 12px;
    padding: 17px;
    color: #effaff;
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
}

.sd-help-faq-item summary::-webkit-details-marker {
    display: none;
}

.sd-help-faq-item summary:focus-visible {
    outline: 2px solid rgba(0, 217, 255, .60);
    outline-offset: -2px;
}

.sd-help-faq-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(0, 217, 255, .58);
}

.sd-help-faq-item summary > b {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #c4f8ff;
    border: 1px solid rgba(117, 224, 255, .16);
    border-radius: 8px;
    background: rgba(0, 217, 255, .05);
    font-size: 17px;
    line-height: 1;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.sd-help-faq-item[open] summary > b {
    color: #002319;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    transform: rotate(45deg);
}

.sd-help-faq-item__answer {
    display: grid;
    gap: 12px;
    padding: 0 17px 17px 39px;
}

.sd-help-faq-item__answer p {
    max-width: 980px;
    margin: 0;
    color: #abc5cf;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.68;
}

.sd-help-faq-item__tag {
    width: fit-content;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    color: #a6f7cb;
    border: 1px solid rgba(34, 255, 154, .16);
    border-radius: 999px;
    background: rgba(34, 255, 154, .055);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sd-help-no-results {
    min-height: 310px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 13px;
    padding: 32px;
    border: 1px solid rgba(117, 224, 255, .16);
    border-radius: 28px;
    background: rgba(3, 14, 27, .74);
    text-align: center;
}

.sd-help-no-results > span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    color: #002118;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    font-size: 34px;
}

.sd-help-no-results h2 {
    margin: 0;
    color: #effbff;
    font-size: 26px;
}

.sd-help-no-results p {
    max-width: 570px;
    margin: 0;
    color: #9db9c5;
    font-size: 13px;
    line-height: 1.6;
}

.sd-help-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sd-help-support-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: clamp(20px, 3vw, 28px);
}

.sd-help-support-card--discord {
    background:
        radial-gradient(circle at 100% 0, rgba(101, 122, 255, .13), transparent 38%),
        linear-gradient(135deg, rgba(0, 217, 255, .06), transparent 55%),
        rgba(3, 14, 27, .78);
}

.sd-help-support-card--rules {
    background:
        radial-gradient(circle at 100% 0, rgba(34, 255, 154, .12), transparent 38%),
        linear-gradient(135deg, rgba(34, 255, 154, .055), transparent 55%),
        rgba(3, 14, 27, .78);
}

.sd-help-support-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #001f17;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    font-size: 24px;
    font-weight: 950;
}

.sd-help-support-card p {
    margin: 0;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sd-help-support-card h2 {
    margin-top: 6px;
    font-size: clamp(22px, 3vw, 33px);
}

.sd-help-support-card div > span {
    display: block;
    margin-top: 8px;
    color: #9db9c4;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.55;
}

.sd-help-support-card a {
    grid-column: 1 / -1;
    width: fit-content;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    color: #c8faff;
    border: 1px solid rgba(117, 224, 255, .18);
    border-radius: 12px;
    background: rgba(0, 217, 255, .06);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.sd-help-support-card a:hover,
.sd-help-support-card a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(34, 255, 154, .44);
    box-shadow: 0 10px 22px rgba(34, 255, 154, .10);
    outline: none;
}

.sd-help-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(26px, 4.2vw, 46px);
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(34, 255, 154, .14), transparent 34%),
        radial-gradient(circle at 0% 100%, rgba(0, 217, 255, .11), transparent 38%),
        linear-gradient(135deg, rgba(3, 18, 31, .95), rgba(2, 11, 20, .94));
}

.sd-help-final-cta h2 {
    font-size: clamp(30px, 4.8vw, 55px);
}

.sd-help-final-cta h2 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--green);
    text-shadow: 0 0 18px rgba(34, 255, 154, .34);
}

.sd-help-final-cta > div:first-child > p:not(.sd-help-center-kicker) {
    max-width: 740px;
    margin: 15px 0 0;
    color: #a6c2cd;
    line-height: 1.65;
}

.sd-help-final-cta__actions {
    flex: 0 0 auto;
    margin-top: 0;
    justify-content: flex-end;
}

@media (max-width: 1100px) {
    .sd-help-quick-start__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sd-help-center-hero {
        grid-template-columns: minmax(0, 1fr) 360px;
    }
}

@media (max-width: 860px) {
    .songdrop-help-center {
        gap: 18px;
    }

    .sd-help-center-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sd-help-center-hero__visual {
        min-height: 340px;
    }

    .sd-help-center-hero__cat {
        right: 8%;
        width: min(420px, 87%);
    }

    .sd-help-center-hero__signal--one {
        right: 11%;
    }

    .sd-help-center-hero__signal--two {
        right: 55%;
    }

    .sd-help-support-grid {
        grid-template-columns: 1fr;
    }

    .sd-help-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .sd-help-final-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .songdrop-help-center {
        padding-top: 15px;
        padding-bottom: 92px;
    }

    .sd-help-center-hero,
    .sd-help-quick-start,
    .sd-help-topic-nav,
    .sd-help-faq-group,
    .sd-help-support-card,
    .sd-help-final-cta {
        border-radius: 22px;
    }

    .sd-help-center-hero__copy {
        padding: 26px 20px 22px;
    }

    .sd-help-center-hero h1 {
        font-size: clamp(39px, 13vw, 58px);
    }

    .sd-help-search {
        padding: 11px;
        border-radius: 18px;
    }

    .sd-help-search__field input {
        min-height: 50px;
        font-size: 12px;
    }

    .sd-help-center-hero__actions,
    .sd-help-final-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sd-help-button {
        width: 100%;
    }

    .sd-help-center-hero__visual {
        min-height: 290px;
    }

    .sd-help-center-hero__cat {
        right: 0;
        width: min(365px, 97%);
    }

    .sd-help-center-hero__signal--one {
        top: 15%;
        right: 11%;
    }

    .sd-help-center-hero__signal--two {
        right: 47%;
        bottom: 13%;
    }

    .sd-help-section-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .sd-help-quick-start {
        padding: 20px;
    }

    .sd-help-quick-start__grid {
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .sd-help-quick-card {
        min-height: 110px;
    }

    .sd-help-topic-nav__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .sd-help-topic-nav__chips {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sd-help-topic-nav__chips button {
        justify-content: center;
        padding: 0 8px;
        font-size: 8px;
    }

    .sd-help-faq-group__head {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
        padding: 20px;
    }

    .sd-help-faq-group__icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 21px;
    }

    .sd-help-faq-group__head h2 {
        font-size: 26px;
    }

    .sd-help-faq-group__count {
        grid-column: 2;
        width: fit-content;
        margin-top: 2px;
    }

    .sd-help-faq-group__items {
        padding: 9px;
    }

    .sd-help-faq-item summary {
        padding: 14px;
        font-size: 13px;
    }

    .sd-help-faq-item__answer {
        padding: 0 14px 15px 33px;
    }

    .sd-help-support-card {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
        padding: 20px;
    }

    .sd-help-support-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .sd-help-final-cta {
        padding: 26px 20px;
    }
}
