/*
Theme Name:     Foxiz child
Template:      	foxiz
Theme URI:      https://foxiz.themeruby.com
Author:         Theme-Ruby
Author URI:     https://themeforest.net/user/theme-ruby/portfolio/
Description:    Make your modifications to Foxiz in this child theme.
Version:        1.0
Tags:           custom-background, custom-menu, featured-images, theme-options, custom-colors, translation-ready, threaded-comments, translation-ready
License:        Themeforest Licence
License URI:    https://themeforest.net/licenses/standard
*/

/* Your CSS code goes here
-------------------------------------- */

.magazines-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.magazine-card { transition:.3s; }
.magazine-card a { text-decoration:none; display:block; }
.magazine-image { overflow:hidden; }
.magazine-image img { width:100%; height:auto; display:block; transition:.4s; }
.magazine-card:hover .magazine-image img { transform:scale(1.05); }
.magazine-title { margin-top:15px; font-size:20px; line-height:1.4; color:#000; font-weight:600; }
.magazine-card:hover .magazine-title { color:#C62D2D; }

@media(max-width:1024px) {
    .magazines-grid { grid-template-columns:repeat(2,1fr); }
}

@media(max-width:767px) {
    .magazines-grid { grid-template-columns:1fr; }
    .magazine-title { font-size:18px; }
}