/* Tiny overrides for frontend templates */

/* Make the whole card a single link without default link styles */
a.post-details {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* Smooth text hover transitions inside the card */
a.post-details .post-title,
a.post-details .post-meta,
a.post-details .post-date {
    transition: color .25s ease, text-decoration-color .25s ease;
}

a.post-details:hover .post-title,
a.post-details:hover .post-meta,
a.post-details:hover .post-date {
    color: #cea81b;
}

/* Длинные названия категорий на карточке товара */
.product-single .product-categories {
    line-height: 1.5;
}

/* Вкладка «Документация»: заголовки разделов */
.doc-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.doc-section + .doc-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
}

