/* Галерея изображений - СЕТКА */ .forum-gallery { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important; gap: 12px; margin: 20px 0; /* === ДОБАВЬТЕ ЭТИ 2 СТРОКИ === */ max-width: 100% !important; width: 100% !important; p { margin: 0 !important; display: contents !important; } img { width: 100% !important; /* === ИЗМЕНИТЕ ВЫСОТУ === */ height: 250px !important; /* было 200px — чуть увеличим */ max-height: 350px !important; /* ограничение для больших экранов */ object-fit: cover; border-radius: 12px; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; display: block !important; margin: 0 !important; &:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); } } } /* === ДОБАВЬТЕ МЕДИА-ЗАПРОСЫ ДЛЯ РАЗНЫХ ЭКРАНОВ === */ /* Маленькие экраны (мобильные) */ @media (max-width: 767px) { .forum-gallery { grid-template-columns: repeat(2, 1fr) !important; gap: 6px; img { height: 150px !important; max-height: 200px !important; } } } /* Средние экраны (планшеты) */ @media (min-width: 768px) and (max-width: 1023px) { .forum-gallery { grid-template-columns: repeat(3, 1fr) !important; img { height: 200px !important; max-height: 280px !important; } } } /* Большие экраны (десктоп) */ @media (min-width: 1024px) { .forum-gallery { /* Ограничиваем максимум 4 колонки */ grid-template-columns: repeat(4, 1fr) !important; max-width: 1200px !important; /* максимальная ширина галереи */ margin-left: auto !important; margin-right: auto !important; img { height: 220px !important; max-height: 300px !important; } } }