/* Chloe Blog Listing Styles */
.chloe-blog-listing {
    position: relative;
    padding: 80px 0;
    /* Faint warm-to-cool gradient */
    background: linear-gradient(180deg, #FFFCEB 0%, #F5EBFA 100%);
}

.chloe-blog-listing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Search Bar */
.chloe-blog-search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.chloe-blog-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.chloe-blog-search-input {
    width: 100%;
    padding: 16px 24px 16px 56px;
    /* Left padding for icon */
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #0B254C;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    outline: none;
    transition: all 0.3s ease;
}

.chloe-blog-search-input:focus {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #F061A9;
}

.chloe-blog-search-input::placeholder {
    color: #9CA3AF;
}

.chloe-blog-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.chloe-blog-no-results {
    text-align: center;
    padding: 60px 0;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.chloe-blog-no-results h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #0B254C;
}

/* Post Card */
.chloe-blog-card {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.chloe-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Post Image */
.chloe-blog-card-image-wrapper {
    width: 40%;
    min-height: 300px;
    position: relative;
}

.chloe-blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chloe-blog-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Post Content */
.chloe-blog-card-content {
    width: 60%;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.chloe-blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.3;
    color: #0B254C;
    margin: 0 0 12px 0;
}

.chloe-blog-card-nav {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #F061A9;
    margin-bottom: 20px;
}

.chloe-blog-card-excerpt {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 32px;
}

.chloe-blog-read-more {
    display: inline-block;
    background-color: #F061A9;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.chloe-blog-read-more:hover {
    background-color: #d64590;
}

/* Pagination / See More */
.chloe-blog-see-more {
    text-align: center;
    margin-top: 60px;
}

.chloe-blog-see-more a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #F061A9;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.chloe-blog-see-more a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
    .chloe-blog-card {
        flex-direction: column;
    }

    .chloe-blog-card-image-wrapper {
        width: 100%;
        min-height: 250px;
        height: 250px;
    }

    .chloe-blog-card-content {
        width: 100%;
        padding: 32px 24px;
    }

    .chloe-blog-card-title {
        font-size: 24px;
    }

    .chloe-blog-search-container {
        margin-bottom: 40px;
    }

    .chloe-blog-search-wrapper {
        max-width: 100%;
    }
}