#taxonomy-filter {
    /*padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
}

.taxonomy-filter-group {
    margin-bottom: 15px;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.taxonomy-filter-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.taxonomy-filter-group input[type="checkbox"] {
    margin-right: 10px;
}

.taxonomy-filter-group div {
    margin-bottom: 5px;
}
#taxonomy-filter-results {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.filter-item {
    background-color: #e7f3ff;
    color: #0056b3;
    padding: 8px 12px;
    border: 1px solid #cce5ff;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-item button {
    background: none;
    border: none;
    color: #0056b3;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.filter-item button:hover {
    color: #ff3d3d;
}
.blog-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px!important;
}

.column-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-top: 15px;
}

.column-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.post-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;

    border:2px solid gold!important;
    border-radius:5px!important;
}

.column-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.entry-header {
    padding: 15px;
}

.entry-title a {
    color: #0056b3;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.entry-title a:hover {
    text-decoration: underline;
}

.entry-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
.show-more a {
    display: inline-block;
    padding: 8px 12px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.show-more a:hover {
    background-color: #003f88;
}
