/* =====================================================
   HHDI — extra.css
   Дополнения к main.min.css, подключается в index.html
   после main.min.css.
   ===================================================== */

/* ── Двуязычные элементы ─────────────────────────────
   По умолчанию страница RU: .en-text скрыт.
   JS меняет display при переключении языка.
   ─────────────────────────────────────────────────── */
.en-text { display: none; }
.ru-text { display: inline; }  /* inline для ссылок */

/* Блок-элементы внутри .ru-text/.en-text (blog-card, div) */
article.ru-text,
article.en-text,
div.ru-text,
div.en-text { display: block; }
article.en-text { display: none; }
div.en-text     { display: none; }

/* ── Ссылки «смотреть все» под описаниями категорий ──
   Показываются сразу после абзаца текста в секции #gallery.
   ─────────────────────────────────────────────────── */
.category-more-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-color, #8B4513);
    font-weight: bold;
    font-size: .95rem;
    text-decoration: none;
    transition: color .2s;
}
.category-more-link:hover {
    color: var(--secondary-color, #654321);
    text-decoration: underline;
}

/* ── Каталог в футере ─────────────────────────────── */
.footer-section a {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
    line-height: 1.6;
}
.footer-section a:hover { text-decoration: underline; }
