.budi-docs__content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 992px) {
    .budi-docs__content-wrapper {
        grid-template-columns: 360px 1fr;
        align-items: start;
    }
}

.budi-docs__sidebar {
    position: sticky;
    top: 100px;
}

.budi-info-toc a {
    text-decoration: none;
}

.budi-info-toc a:hover {
    text-decoration: underline;
}

.budi-docs-cards__wrapper { width: 100%; margin-bottom: 32px; }

.budi-docs-cards__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.budi-docs-cards__wrap--stack {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 12px;
}

.budi-docs-cards__wrap--stack .budi-docs-card {
    width: 100%;
}

.budi-docs-card {
    width: 31.9%;
    border-radius: 8px;
    background: #F9F6F9;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-decoration: none;
}

.budi-docs-card__left { display: flex; align-items: center; gap: 16px; }

.budi-docs-card__icon span {
    border-radius: 8px;
    background: #FDFDFD;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.budi-docs-card__icon img {
    filter: invert(12%) sepia(73%) saturate(5773%) hue-rotate(318deg) brightness(95%) contrast(102%);
    width: 24px;
    height: 24px;
}

.budi-docs-card__text h3 {
    color: #29282A;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    margin: 0 0 4px 0;
}

.budi-docs-card__text p {
    color: #6D6C70;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

.budi-docs-card__arrow span {
    border-radius: 8px;
    background: #F9F6F9;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.budi-docs-card:hover .budi-docs-card__arrow span { transform: translateX(5px); }

.budi-docs-card__arrow img { width: 16px; height: 16px; }

@media (max-width: 1199.98px) {
    .budi-docs-card { width: 48.5%; }
}

@media (max-width: 767.98px) {
    .budi-docs-card { width: 100%; }
}

@media (max-width: 575.98px) {
    .budi-docs-card { width: 100%; padding: 16px; gap: 12px; }
    .budi-docs-card__left { gap: 12px; }
    .budi-docs-card__icon span { width: 40px; height: 40px; }
    .budi-docs-card__text h3 { font-size: 16px; }
    .budi-docs-card__text p { font-size: 14px; }
}

.budi-docs-search__wrapper { display: flex; gap: 12px; }
.budi-docs-search__title { margin-right: 12px; display:flex; align-items:center; }
.budi-docs-search__title h3 { margin: 0; font-size: 18px; }
.budi-docs-search__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.budi-docs-search__input {
    width: 320px;
    max-width: 100%;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 10px 42px 10px 12px;
}
.budi-docs-search__btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 6px;
    cursor: pointer;
}


