/* 
 * Custom Archive Styles for Dogwood Lane Quarterly
 * Simple list layout instead of masonry/grid
 */

.dogwood-lane-quarterly-archive {
    padding: 60px 0;
}

.dogwood-lane-quarterly-archive .row .col-md-8 {
    float: none;
    margin: auto;
}

.dogwood-lane-quarterly-archive .archive-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.dogwood-lane-quarterly-archive .archive-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.dogwood-lane-quarterly-archive .archive-description {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

.dogwood-lane-posts-list {
    margin-bottom: 40px;
}

.dogwood-lane-post-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dogwood-lane-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.dogwood-lane-post-item .post-content-wrapper {
    display: flex;
    align-items: flex-start;
}

.dogwood-lane-post-item .post-thumbnail {
    flex: 0 0 200px;
    margin-right: 0;
}

.dogwood-lane-post-item .post-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.dogwood-lane-post-item .post-content {
    flex: 1;
    padding: 20px;
}

.dogwood-lane-post-item .entry-header {
    margin-bottom: 15px;
}

.dogwood-lane-post-item .entry-title {
    margin: 0 0 10px 0;
    font-size: 1.4em;
    line-height: 1.3;
}

.dogwood-lane-post-item .entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dogwood-lane-post-item .entry-title a:hover {
    color: #2c5aa0;
}

.dogwood-lane-post-item .entry-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.dogwood-lane-post-item .entry-meta span {
    margin-right: 15px;
}

.dogwood-lane-post-item .entry-meta a {
    color: #777;
    text-decoration: none;
}

.dogwood-lane-post-item .entry-meta a:hover {
    color: #2c5aa0;
}

.dogwood-lane-post-item .entry-content {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.dogwood-lane-post-item .entry-footer {
    margin-top: auto;
}

.dogwood-lane-post-item .read-more-link {
    display: inline-block;
    background-color: #478a41;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.dogwood-lane-post-item .read-more-link:hover {
    background-color: #b59dd9;
    color: #fff;
}

.dogwood-lane-post-item .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dogwood-lane-post-item .post-content-wrapper {
        flex-direction: column;
    }
    
    .dogwood-lane-post-item .post-thumbnail {
        flex: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .dogwood-lane-post-item .post-thumbnail img {
        height: 200px;
    }
    
    .dogwood-lane-quarterly-archive .archive-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .dogwood-lane-quarterly-archive {
        padding: 40px 0;
    }
    
    .dogwood-lane-post-item .post-content {
        padding: 15px;
    }
    
    .dogwood-lane-quarterly-archive .archive-title {
        font-size: 1.8em;
    }
}

/* Pagination Styling */
.dogwood-lane-quarterly-archive .navigation.pagination {
    margin-top: 40px;
    text-align: center;
}

.dogwood-lane-quarterly-archive .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.dogwood-lane-quarterly-archive .nav-links a,
.dogwood-lane-quarterly-archive .nav-links .current {
    display: inline-block;
    padding: 8px 12px;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dogwood-lane-quarterly-archive .nav-links a:hover,
.dogwood-lane-quarterly-archive .nav-links .current {
    background-color: #2c5aa0;
    color: #fff;
}

/* No posts found styling */
.no-posts-found {
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.no-posts-found h2 {
    color: #333;
    margin-bottom: 15px;
}

.no-posts-found p {
    color: #666;
    margin-bottom: 20px;
}