/*
Theme Name:   Engitech Child
Theme URI:    http://wpdemo.archiwp.com/engitech/
Description:  Make your modifications to [Parent Theme] in this Engitech child theme.
Author:       OceanThemes
Author URI:   http://oceanthemes.net/
Template:     engitech
Version:      1.1
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain:  engitech-child
*/

/* =Theme customization starts here
------------------------------------------------------- */

.honda-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background-color: #efefef;
}

.honda-news-item {
    background: #ffffff;
    padding: 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.honda-news-thumb img {
    width: 100%;
    height: auto;
}

.honda-news-title {
    /* font-size: 20px; */
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
    margin: 15px 0px;
    padding: 0 20px;
}

.honda-news-title a {
    text-decoration: none;
    color: #000;
}

.honda-news-date {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.honda-news-divider {
    height: 8px;
    margin: 15px 50px;
    border-top: 1px solid #ACACAC;
    border-bottom: 1px solid #ACACAC;
}

.honda-news-button{
    padding: 20px 0;
}

.honda-read-more {
        background-color: transparent;
    font-family: "Roboto", Sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
    background-image: linear-gradient(180deg, #D60707 0%, #E80707 100%);
    border-radius: 2px 2px 2px 2px;
    padding: 10px 20px 10px 20px;
    color: white !important;
}

.honda-read-more:hover {
    background-image: linear-gradient(180deg, #E80707 0%, #D60707 100%);
}

/* Responsive */
@media (max-width: 1024px) {
    .honda-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .honda-news-grid {
        grid-template-columns: 1fr;
    }
}
