/*
 Theme Name:   Soledad Child Theme
 Theme URI:    http://pencidesign.com/
 Description:  Soledad Child Theme - Made by PenciDesign
 Author:       Pencidesign
 Version:      1.0
 Author URI:   http://pencidesign.com/
 Template:     soledad
 Text Domain:  soledad
*/

/* = Theme customization go here
-------------------------------------------------------------- */
/* Latest Cards Styling */
.latest-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.latest-card {
    display: block;
    padding: 20px;
    border: 1px solid #e5e7eb; /* Light gray border all around */
    border-left: 4px solid #3b82f6; /* Thicker blue border on left */
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.latest-card:hover {
    border-left: 4px solid #1e40af; /* Darker blue on hover */
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.latest-card h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.4;
}

.latest-card p {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.latest-card .time {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .latest-card-wrapper {
        gap: 12px;
    }
    
    .latest-card {
        padding: 16px;
    }
    
    .latest-card h3 {
        font-size: 15px;
    }
    
    .latest-card p {
        font-size: 13px;
    }
}