.elementor-2017 .elementor-element.elementor-element-772008e{--display:flex;}.elementor-2017 .elementor-element.elementor-element-3f9145e{--spacer-size:10vh;}.elementor-2017 .elementor-element.elementor-element-30fca56 > .elementor-widget-container{margin:0em 0em 0em 1em;padding:0em 0em 1em 0em;}.elementor-2017 .elementor-element.elementor-element-5b35fb6{--display:flex;--padding-top:0em;--padding-bottom:0em;--padding-left:2em;--padding-right:0em;}.elementor-2017 .elementor-element.elementor-element-975e1f5{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-2017 .elementor-element.elementor-element-e94f24a > .elementor-widget-container{margin:0px 20px 0px 0px;}.elementor-2017 .elementor-element.elementor-element-fd03ac4{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-2017 .elementor-element.elementor-element-8cb3e83{--spacer-size:10vh;}.elementor-2017 .elementor-element.elementor-element-d08c83f{--spacer-size:10vh;}@media(min-width:768px){.elementor-2017 .elementor-element.elementor-element-fd03ac4{--width:63%;}}@media(max-width:1024px){.elementor-2017 .elementor-element.elementor-element-5b35fb6{--padding-top:0em;--padding-bottom:0em;--padding-left:1em;--padding-right:1em;}}@media(max-width:767px){.elementor-2017 .elementor-element.elementor-element-5b35fb6{--padding-top:0em;--padding-bottom:0em;--padding-left:1em;--padding-right:1em;}}.publication-links {
    text-align: left; /* Center-align the content */
    margin: 20px 0; /* Add spacing above and below */
    margin-left: 30%;
}

.publication-links a {
    display: inline-block; /* Prevent links from spreading across the full width */
    text-decoration: none; /* Optional: Remove underline */
    /*color: #333; /* Optional: Set text color */
    margin: 5px 0; /* Add vertical spacing between links */
    font-size: 16px; /* Adjust font size as needed */
}

.publication-links a:hover {
    text-decoration: underline; /* Optional: Add underline on hover */
}
/* 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 */
}