/*
Theme Name: Root Lite Child
Theme URI: https://wpshop.ru/themes/root
Author: WPShop.ru
Author URI: https://wpshop.ru/
Template: root-lite
Version: 1.0.0
*/

/* Below you can add your CSS styles */
/* Ниже Вы можете добавить свои CSS стили */

/* Мобильные устройства - 1 колонка */
.desktop-two-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Планшеты и десктопы - 2 колонки */
@media (min-width: 768px) {
    .desktop-two-columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Если нужно только для десктопов (например, от 992px) */
/*
@media (min-width: 992px) {
    .desktop-two-columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
*/

.entry-title {
  font-size: 21px;
  margin: 0 0 15px;
  font-weight: bold;
  line-height: 1.2; }