.elementor-7295 .elementor-element.elementor-element-235372e{--display:flex;}.elementor-7295 .elementor-element.elementor-element-cfb211c{--spacer-size:10vh;}.elementor-7295 .elementor-element.elementor-element-ab2efa2{--spacer-size:5vh;}.elementor-7295 .elementor-element.elementor-element-eb2ab63{--display:flex;}/* Post Section (Flexbox Layout) */
.post-section {
    display: flex;
    flex-wrap: wrap;
    gap: 5vh 20px; /* Spacing between boxes */
    justify-content: space-between; /* Distribute boxes evenly */
}

/* Individual Post Box */
.post-box {
    display: flex;
    flex-direction: row;
    align-items: center; /* Vertically center content */
    justify-content: flex-start; /* Left-align content */
    min-height: 140px; /* Set to match the image container height */
    border-style: solid;
    border-width: 0px 0px 0px 1px; /* Left border */
    border-color: #BBBBBB;
    padding: 0 10px;
    background-color: #ffffff;
    transition: background-color 0.3s;
    width: calc(50% - 20px); /* 2 items per row, considering gap */
}

/* Responsive Layout Adjustments */
@media (max-width: 768px) {
    .post-box {
        width: calc(100% - 20px); /* 1 item per row on smaller screens */
    }
}

/* Post Box Hover Effect */
.post-box:hover {
    border-width: 0px 0px 0px 4px; /* Increase left border width */
    border-color: #1D7CE2;
    transition: border-width 0.1s ease, border-color 0.1s ease; /* Smooth animation */
}

/* Remove background color change */
.post-box:hover {
    background-color: transparent; /* Ensures no background color change */
}

/* Post Image */
.post-image {
    width: auto;
    height: 140px; /* Fixed height to match post-content */
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    justify-content: center; /* Horizontally center the image */
    align-items: center; /* Vertically center the image */
    position: relative; /* Ensure post-meta stays positioned properly */
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Avoid image cropping */
    background-color: transparent;
    display: block;
}

/* Post Content */
.post-content {
    flex: 1; /* Take up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space between title and post meta */
    height: 108px; /* Set to match the height of the image container */
    margin-top: 20px;
}

/* Post Title */
.post-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 10px; /* Bottom margin for spacing */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis for long titles */
    line-height: 1.0; /* Reduced line height */
}

/* Post Meta (Year | Band | Author) */
.post-meta {
    font-size: 12px;
    color: #666666;
    text-align: left;
    line-height: 1.5;
    padding: 2px 5px;
    background-color: rgba(255, 255, 255, 0.8); /* Optional light background */
}
/* Specific override for the .post-meta within .post-content */
.post-box .post-content .post-meta {
    margin-bottom: 0; /* Remove any existing margin */
}