/* Post Styles */
.post-card {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-0.25rem);
}

/* Thumbnail section */
.post-thumbnail {
    width: 100%;
    position: static;
    padding-top: 0;
    overflow: visible;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    position: static;
    top: auto;
    left: auto;
    object-fit: contain;
    max-height: 750px;
}

/* Content section */
.post-content {
    width: 100%;
    padding: 0 1rem 1rem;
}

.entry-header {
    padding-top: 0;
    margin-top: 0;
}

.entry-title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.entry-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:hover {
    color: #666;
}

.entry-content {
    margin-bottom: 1.5rem;
}

.custom-excerpt {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Pagination */
.pagination {
    margin: 2rem 0;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.pagination .page-numbers.current {
    background: #333;
    color: #fff;
}

.pagination .page-numbers:hover:not(.current) {
    background: #f5f5f5;
} 