.crf-wrapper-b388b1e2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    max-width: 1200px;
    margin: 0 auto 50px auto; /* Added 50px bottom margin */
}
.crf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}
.crf-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}
.crf-filters {
    display: flex;
    gap: 10px;
}
.crf-filter-dropdown {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}
.crf-filter-dropdown:focus {
    border-color: #555;
}
.crf-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}
.crf-post-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.5); /* 50% opacity background */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.crf-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.crf-post-thumb {
    width: 100%;
    overflow: hidden;
}
.crf-post-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.crf-post-item:hover .crf-post-thumb img {
    transform: scale(1.05);
}
.crf-post-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}
.crf-post-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}
.crf-post-title a {
    text-decoration: none !important;
    color: #333;
    transition: color 0.3s;
}
.crf-post-title a:hover {
    color: var(--e-global-color-primary, #0073aa);
}
.crf-post-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}
.crf-read-more {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--e-global-color-primary, #0073aa);
    text-decoration: none !important;
    margin-top: auto;
    transition: color 0.3s;
}
.crf-read-more:hover {
    color: #333;
}
@media (max-width: 1024px) {
    .crf-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .crf-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .crf-posts-grid {
        grid-template-columns: 1fr;
    }
    .crf-post-thumb img {
        height: auto;
        aspect-ratio: 16/9;
    }
}