/*
Theme Name: kaizen
Theme URI:
Author: Kaizen Institute Ltd
Description: Wordpress theme for the kaizen website
Requires at least: 5.3
Tested up to: 5.5
Requires PHP: 5.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kaizen

Emptytheme WordPress Theme, (C) 2021 WordPress.org
Emptytheme is distributed under the terms of the GNU GPL.
*/

@font-face {
    font-family: "AvenirLTPro";
    src: url(inc/fonts/AvenirLTPro-Black.otf);
    font-weight: 750;
}
@font-face {
    font-family: "AvenirLTPro";
    src: url(inc/fonts/AvenirLTPro-Heavy.otf);
    font-weight: 700;
}

@font-face {
    font-family: "AvenirLTPro";
    src: url(inc/fonts/AvenirLTPro-Medium.otf);
    font-weight: 550;
}

@font-face {
    font-family: "AvenirLTPro";
    src: url(inc/fonts/AvenirLTPro-Book.otf);
    font-weight: 350;
}

@font-face {
    font-family: "AvenirLTPro";
    src: url(inc/fonts/AvenirLTPro-Light.otf);
    font-weight: 300;
}


.block-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px; /* Space between blocks */
    margin-bottom: 20px;
}

.block {
    padding: 20px;
}

@media (max-width: 768px) { /* Adjust columns for small screens */
    .block-container {
        grid-template-columns: repeat(2, 1fr);
    }
}