/*
Theme Name: Divi Child
Template: Divi
Version: 1.0
Author: ekopedia.ru
*/

.container {
    max-width: 1800px;
}

.gs-child-pages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gs-child-page-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.gs-child-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    text-decoration: none;
}

.gs-child-page-card__image {
    height: 190px;
    overflow: hidden;
    /* background: #f3f3f3; */
    padding: 21px;
}

.gs-child-page-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gs-child-page-card__body {
    padding: 22px;
}

.gs-child-page-card__body h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
}

.gs-child-page-card__body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}

@media (max-width: 980px) {
    .gs-child-pages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gs-child-pages-grid {
        grid-template-columns: 1fr;
    }
}

.gs-page-meta {
	padding: 15px 25px;
    background-color: #fff;
    border-radius: 20px;
    font-size: 18px;
}

.gs-page-meta > span {
	margin-right: 20px;
}
