/* .column-two-third {
    display: flex;
    flex-wrap: wrap;
}

.outertight {
    width: 48%;
    margin-right: 2%;
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.outertight:nth-child(2n) {
    margin-right: 0;
}

*/

.flexslider {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
}

.flexslider .slides {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.flexslider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    max-height: 200px;  
}

.outertight .regular, .outertight .meta, .outertight p {
    margin-top: 10px;
}













.category-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-posts-list .category-post-item {
    margin-bottom: 20px; /* Space between items */
    width: 100%; /* Full width for each item */
    display: flex; /* Flexbox for horizontal alignment */
    align-items: center; /* Align items vertically */
}

.column-full {
    width: 100%;
}

.card {
    display: flex;
    align-items: flex-start; /* Align items at the start of the container */
    flex-direction: row; /* Align image and content in a row */
    background: none; /* Remove background color */
    box-shadow: none; /* Remove shadow */
    border: none; /* Remove border */
    padding: 10px 0; /* Adjust padding */
    margin-bottom: 20px; /* Space between cards */
    border-bottom: 1px solid #ddd; /* Add a bottom border to separate items */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.card-thumbnail {
    position: relative;
    width: 140px; /* Fixed width for thumbnail */
    height: 86px; /* Fixed height for thumbnail */
    flex-shrink: 0; /* Prevent thumbnail from shrinking */
    margin-right: 20px; /* Space between image and content */
}

.card-thumbnail img {
    width: 100%; /* Ensures the image takes the full width of its container */
    height: 100%; /* Ensures the image takes the full height of its container */
    object-fit: cover; /* Crops the image to fit the container */
    display: block; /* Remove any bottom margin/space */
}

.card-content {
    flex: 1; /* Allow content to take remaining space */
    padding: 0;
    margin: 0;
    word-wrap: break-word; /* Break long words to fit within the container */
}

.post-title {
    flex: 1; /* Allow content to take remaining space */
    font-size: 16px;
    font-weight: bold;
    color:black;
}

.post-title a {
    text-decoration: none; /* Remove underline */
    color: #333; /* Title color */
}

.post-title a:hover {
    text-decoration: underline; /* Underline on hover */
}

.post-date {
    display: block; /* Make date appear on a new line */
    font-size: 14px; /* Font size for date */
    color: #666; /* Date color */
}

.post-categories {
    margin-bottom: 5px;
}

.bio-excerpt {
    color: #666;
    line-height: 1.4;
    margin-top: 5px; /* Add space above the excerpt */
    word-wrap: break-word; /* Ensure the excerpt wraps within its container */
}


/* Adjustments for Dark Mode */
@media (prefers-color-scheme: dark) {
    .card {
        background-color: transparent;
        color: #dddddd;
        border-bottom: 1px solid #444444; /* Darker border for contrast */
    }

    .post-title a {
        color: #ffffff;
    }

    .post-date, .post-categories a {
        color: #aaaaaa;
    }

    /* Adjust link colors */
    a {
        color: #4a90e2; /* Light blue for links */
    }

    a:hover {
        color: #7bb0f9; /* Slightly lighter on hover */
    }
}

@media (prefers-color-scheme: dark) {
    .card {
        background-color: #333333; /* Dark background for the card */
        color: #ffffff; /* Light text color */
        border: 1px solid #444444; /* Dark border color */
    }

    .card-thumbnail img {
        opacity: 0.9; /* Optional: slightly darken images in dark mode */
    }

    .card-content .post-title a {
        color: #ffffff; /* Light text color for post titles */
    }

    .card-content .post-date {
        color: #cccccc; /* Light text color for post dates */
    }
}

