.toh a.active {
    color: #ff4500;
    font-weight: 600;
    border-left: 3px solid #ff4500;
    padding-left: 8px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reading-time {
    background: #f5f5f5;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #555;
    white-space: nowrap;
}

.guide-image-placeholder {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.guide-image-placeholder img {
    width: 100%;
    height: auto;
    display: none;
}

/* Баннеры */
.banner {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
}

.banner-orange {
    border: 2px solid #ff4500;
    background: #fff;
}

.banner-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.banner-content h4 {
    margin: 0 0 0.3rem;
    font-weight: 600;
}

.banner-content p {
    margin: 0 0 0.5rem;
}

.banner-colored {
    background: #fff3e0;
    /* светло-оранжевый */
    border: none;
}

/* Другие гайды */
.other-guides {
    margin: 4rem 0 2rem;
}

.other-guides h3 {
    margin-bottom: 1.5rem;
}

.guide-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.guide-card {
    flex: 1 1 200px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.guide-card .card-image {
    height: 120px;
    background: #ddd;
    position: relative;
}

.guide-card .card-image::after {
    content: "Картинка";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
}

.guide-card .card-title {
    padding: 0.8rem;
    text-align: center;
    font-weight: 500;
}

/* Модальное окно заявки */
#requestModal .btn-primary {
    background-color: #ff4500;
    border-color: #ff4500;
}

#requestModal .btn-primary:hover {
    background-color: #ff4500;
    border-color: #ff4500;
}

.accordion-button:not(.collapsed) {
    color: #f54200;
    background-color: #ffffff;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}


.iblock {
    padding: 25px;
    padding-left: 110px;
}

.iblock-cross {
    display: flex;
    align-items: center;
}

.iblock-exclam,
.cke_panel_list [data-style-preview="exclam"] {
    background-image: url(https://login.tibimi.ru/tpl/img/sticker/exclam.svg);
    background-repeat: no-repeat;
    background-position: 25px center;
}

.modal-content {
    padding: 30px;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body.modal-open {
    padding-right: 0 !important;
}