.how-to {
    margin: 40px 0 80px;
    max-width: none;
    width: 100%;
}

.how-to__actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.how-to__layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.how-to__sidebar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px;
    position: sticky;
    top: 90px;
}

.how-to__sidebar-title {
    margin-top: 0;
    margin-bottom: 14px;
}

.how-to__sections,
.how-to__subsections,
.how-to__index-sections {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.how-to__section {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.how-to__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.how-to__section-link,
.how-to__subsection-link,
.how-to__index-title {
    display: inline-flex;
    gap: 10px;
    align-items: baseline;
    color: inherit;
    text-decoration: none;
}

.how-to__section-link:hover,
.how-to__subsection-link:hover,
.how-to__index-title:hover {
    text-decoration: underline;
}

.how-to__section-link.is-disabled,
.how-to__subsection-link.is-disabled,
.how-to__index-title.is-disabled {
    cursor: not-allowed;
    text-decoration: none;
    position: relative;
}

.how-to__section-link.is-disabled:hover::after,
.how-to__subsection-link.is-disabled:hover::after,
.how-to__index-title.is-disabled:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    background: #0f1923;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 0.85rem;
    z-index: 5;
    white-space: nowrap;
}

.how-to__subsections {
    margin-top: 8px;
    margin-left: 22px;
    display: grid;
    gap: 6px;
}

.how-to__number {
    color: #2ed9e7;
    font-weight: 700;
}

.how-to__section-link.is-active,
.how-to__subsection-link.is-active {
    color: #2ed9e7;
}

.how-to__content {
    min-width: 0;
}

.how-to__article,
.how-to__index {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 22px;
}

.how-to__article-meta {
    margin: 0;
    color: #2ed9e7;
    font-weight: 700;
}

.how-to__index-section {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.how-to__index-section:last-child {
    border-bottom: none;
}

.how-to__description {
    margin: 8px 0 0 32px;
    color: rgba(255, 255, 255, 0.75);
}

.how-to__image {
    margin: 18px 0;
}

.how-to__image img {
    width: 100%;
    max-width: 960px;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.how-to__image--onboarding img {
    max-width: 560px;
    margin: 0 auto;
}

.how-to__image figcaption {
    margin-top: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.how-to__event-types {
    list-style: none;
    margin: 18px 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.how-to__event-type {
    display: grid;
    grid-template-columns: 144px 1fr;
    gap: 12px;
    align-items: center;
}

.how-to__event-type p {
    margin: 0;
}

.how-to__event-type-icon {
    width: 136px;
    height: 136px;
    display: block;
    object-fit: contain;
}

@media (max-width: 900px) {
    .how-to__layout {
        grid-template-columns: 1fr;
    }

    .how-to__sidebar {
        position: static;
    }
}
