.my-post-discover-container {
    width: 100%;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
}

.my-post-discover-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.my-post-discover-image img {
    width: 100%;
    height: auto;
}

.my-post-discover-title {
    font-size: 1.2em;
    margin: 10px 0;
}

.my-post-discover-excerpt {
    flex-grow: 1;
    margin-bottom: 10px;
}

.my-post-discover-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-post-discover-date {
    font-size: 0.9em;
    color: #555;
}

.my-post-discover-read-more {
    text-decoration: none;
    color: black;
}

.my-post-discover-read-more:hover {
    text-decoration: underline;
}


/* Styles for the latest post shortcode */
.my-latest-post-container {
    width: 100%;
    margin: 0 auto; /* Center the container if desired */
    overflow: hidden;
    border: 1px solid #ddd;
    padding-left: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    background-color: #fff; /* Added white background */
}

.my-latest-post-content {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: stretch; /* Make both columns the same height */
    gap: 0px; /* Add gap between the image and text */
    margin-left:25px;
}

.my-latest-post-left {
    flex: 0 0 60%; /* Use flex-basis for width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the text */
}

.my-latest-post-right {
    height:300px;
    flex: 0 0 30%; /* Use flex-basis for width */
    box-sizing: border-box;
    position: relative; /* Position relative for absolute positioning of image */
    margin-left: 10%;
}

.my-latest-post-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.my-latest-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers its container */
}

.my-latest-post-title {
    font-size: 1.5em;
    margin: 0 0 10px 0;
}

.my-latest-post-excerpt {
    margin-bottom: 20px;
}

.my-latest-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-latest-post-date {
    font-size: 0.9em;
}

.my-latest-post-read-more {
    text-decoration: none;
}

.my-latest-post-read-more:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .my-latest-post-content {
        flex-direction: column;
    }
    .my-latest-post-left, .my-latest-post-right {
        flex: 0 0 100%;
        padding: 0;
    }
    .my-latest-post-left {
        order: 2;
    }
    .my-latest-post-right {
        order: 1;
        margin-bottom: 20px;
        position: relative;
    }
    .my-latest-post-image {
        position: relative;
    }
}

.explore-filter-insights{
    cursor: pointer;
}
.explore-filter-news{
    cursor: pointer;
}
.explore-filter-events{
    cursor: pointer;
}