/* Base Wrapper */
.hermi-blog-wrapper-df21d3c5 {
    width: 100%;
    margin: 0 auto;
}

/* Grid Layout */
.hermi-blog-grid-df21d3c5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

@media (max-width: 768px) {
    .hermi-blog-grid-df21d3c5 {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
}

/* Post Card */
.hermi-post-card-df21d3c5 {
    display: flex;
    flex-direction: column;
}

/* Media / Images */
.hermi-post-media-df21d3c5 {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 4px; /* Slight soft edge */
}

.hermi-post-img-df21d3c5 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hermi-post-link-df21d3c5:hover .hermi-post-img-df21d3c5 {
    transform: scale(1.03);
}

.hermi-post-img-placeholder-df21d3c5 {
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
}

/* Content Area */
.hermi-post-content-df21d3c5 {
    display: flex;
    flex-direction: column;
}

.hermi-post-meta-df21d3c5 {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.hermi-post-title-df21d3c5 {
    margin: 0 0 16px 0;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
}

.hermi-post-title-df21d3c5 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hermi-post-title-df21d3c5 a:hover {
    color: #666;
}

.hermi-post-excerpt-df21d3c5 {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Pagination */
.hermi-blog-pagination-df21d3c5 {
    margin-top: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.hermi-blog-pagination-df21d3c5 .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    color: #222;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.hermi-blog-pagination-df21d3c5 .page-numbers:hover {
    color: #666;
}

.hermi-blog-pagination-df21d3c5 .page-numbers.current {
    border-bottom: 1px solid #222;
}

.hermi-blog-pagination-df21d3c5 .prev,
.hermi-blog-pagination-df21d3c5 .next {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}
