/**
 * Child Pages Module Styles
 */

.dcp-child-pages-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
}

.dcp-child-item {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dcp-child-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dcp-child-featured-image {
    position: relative;
    overflow: hidden;
}

.dcp-child-featured-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.dcp-child-item:hover .dcp-child-featured-image img {
    transform: scale(1.05);
}

.dcp-child-title, 
.dcp-child-excerpt, 
.dcp-read-more {
    padding: 0 20px;
}

.dcp-child-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
}

.dcp-child-title a {
    color: #333;
    text-decoration: none;
}

.dcp-child-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.dcp-read-more {
    margin-bottom: 20px;
}

.dcp-read-more a {
    display: inline-block;
    padding: 8px 20px;
    background-color: #2ea3f2;
    color: white;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dcp-read-more a:hover {
    background-color: #0c71c3;
}

.dcp-no-children {
    text-align: center;
    padding: 30px;
    color: #666;
    font-style: italic;
}

/* Responsive styles */
@media (max-width: 980px) {
    .dcp-child-pages-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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