.bs-0313d0ae-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bs-0313d0ae-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.bs-0313d0ae-filter-btn {
    background: transparent;
    border: 1px solid #ccc;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
}

.bs-0313d0ae-filter-btn:hover,
.bs-0313d0ae-filter-btn.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.bs-0313d0ae-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bs-0313d0ae-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
}

.bs-0313d0ae-card:hover {
    transform: translateY(-5px);
}

.bs-0313d0ae-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.bs-0313d0ae-card:hover .bs-0313d0ae-bg {
    transform: scale(1.05);
}

.bs-0313d0ae-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.bs-0313d0ae-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    color: #fff;
}

.bs-0313d0ae-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cca471;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.bs-0313d0ae-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    line-height: 1.3;
    font-family: "Georgia", serif;
}

.bs-0313d0ae-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.bs-0313d0ae-title a:hover {
    color: #eee;
}

.bs-0313d0ae-excerpt {
    font-size: 15px;
    line-height: 1.5;
    color: #ddd;
    margin: 0 0 20px 0;
}

.bs-0313d0ae-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.bs-0313d0ae-btn:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 767px) {
    .bs-0313d0ae-grid {
        grid-template-columns: 1fr !important;
    }
}