.main-content {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.article {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.15); /* Añadido un borde sutil pero visible */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
}

.article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Image styling */
.post-thumb {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article:hover .post-thumb img {
    transform: scale(1.05);
}

/* Article content */
.blog-entry-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

/* Header styling */
.entry-header {
    padding: 1.5rem 1.5rem 0.5rem;
}

.entry-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.entry-title a:hover {
    color: #0056b3;
}

/* Meta information styling */
.entry-meta {
    padding: 0 1.5rem;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.entry-meta-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.entry-meta svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    vertical-align: text-bottom;
}

.cat-links a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cat-links a:hover {
    color: #003d7a;
    text-decoration: underline;
}

/* Post summary */
.entry-summary {
    padding: 0.5rem 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Footer styling */
.entry-footer {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
}

/* Read more button */
.btn.btn-text-1 {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn.btn-text-1:hover {
    background-color: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .entry-title {
        font-size: 1.3rem;
    }
}

.entry-meta i {
    margin-right: 5px;
    color: #555;
}

.entry-meta-elements .posted-on i {
    font-size: 1.1em;
}

.entry-meta-elements .cat-links i {
    font-size: 1em;
}