/**
 * Archive and Post List Styling
 * Adds subtle dividers between articles in archive/category pages
 */

/* Add bottom border to post template items (articles in list) */
.wp-block-post-template > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: var(--wp--preset--spacing--50, 2rem);
    margin-bottom: var(--wp--preset--spacing--50, 2rem);
}

/* Ensure the last article doesn't have a divider */
.wp-block-post-template > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* For query loop items (alternative selector) */
.wp-block-query .wp-block-post:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: var(--wp--preset--spacing--50, 2rem);
    margin-bottom: var(--wp--preset--spacing--50, 2rem);
}

.wp-block-query .wp-block-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .wp-block-post-template > li:not(:last-child) {
        padding-bottom: var(--wp--preset--spacing--40, 1.5rem);
        margin-bottom: var(--wp--preset--spacing--40, 1.5rem);
    }
}
