.bs-5409b441-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    font-family: inherit;
}

.bs-5409b441-sidebar {
    width: 100%;
    max-width: 280px;
    flex-shrink: 0;
}

.bs-5409b441-content {
    flex: 1;
    min-width: 0;
}

.bs-5409b441-widget {
    margin-bottom: 40px;
}

.bs-5409b441-search form {
    display: flex;
    position: relative;
}

.bs-5409b441-search input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    background: #fcfcfc;
    font-size: 14px;
    outline: none;
}

.bs-5409b441-search input:focus {
    border-color: #d0d0d0;
}

.bs-5409b441-search button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
}

.bs-5409b441-widget-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #111;
}

.bs-5409b441-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bs-5409b441-category-item {
    margin-bottom: 5px;
    border-radius: 4px;
    overflow: hidden;
}

.bs-5409b441-category-item a {
    text-decoration: none;
    color: #555;
    transition: all 0.2s;
    display: block;
    padding: 10px 15px;
    font-size: 14px;
}

.bs-5409b441-category-item:hover {
    background-color: #f9f9f9;
}

.bs-5409b441-category-item.active {
    background-color: #fcf4ec; /* Matches the slightly warm tone of active state in image */
}

.bs-5409b441-category-item.active a {
    color: #111;
}

.bs-5409b441-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bs-5409b441-tag {
    font-size: 12px;
    padding: 8px 12px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
}

.bs-5409b441-tag:hover,
.bs-5409b441-tag.active {
    border-color: #333;
    color: #333;
}

.bs-5409b441-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.bs-5409b441-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.bs-5409b441-post-thumbnail {
    display: block;
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.bs-5409b441-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.bs-5409b441-post:hover .bs-5409b441-post-thumbnail img {
    transform: scale(1.03);
}

.bs-5409b441-post-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bs-5409b441-post-cat {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 12px;
}

.bs-5409b441-post-title {
    font-size: 17px;
    line-height: 1.4;
    margin: 0 0 12px 0;
    font-family: serif; /* To match the elegant serif heading style in the image */
}

.bs-5409b441-post-title a {
    color: #111;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: color 0.2s;
}

.bs-5409b441-post-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
}

.bs-5409b441-post-meta {
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .bs-5409b441-wrapper {
        flex-direction: column;
    }
    .bs-5409b441-sidebar {
        max-width: 100%;
    }
}