/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

@import url("../blocksy/style.css");

/* Style footer posts to match home view */
.ct-footer .widget_recent_entries ul li {
    display: flex; /* Align image and content side by side */
    align-items: flex-start; /* Align items at the top */
    margin-bottom: 15px; /* Space between items */
    width: 100%; /* Full width for each item */
}

.ct-footer .widget_recent_entries .wp-post-image {
    flex: 0 0 100px; /* Fixed image width, adjust as needed */
    margin-right: 15px; /* Space between image and text */
    max-height: 100px; /* Optional: control image height */
    object-fit: cover; /* Maintain aspect ratio */
}

.ct-footer .widget_recent_entries .entry-title a {
    font-size: 16px; /* Match home view title size */
    margin: 0 0 5px 0; /* Space below title */
    display: block; /* Ensure title is block-level */
}

.ct-footer .widget_recent_entries .entry-date {
    font-size: 14px; /* Match home view date size */
    color: #666; /* Match home view date color */
    display: block; /* Ensure date is block-level */
}

.ct-footer .widget_recent_entries ul {
    list-style: none; /* Remove bullets if present */
    padding: 0; /* Remove default padding */
}