.scpd-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.scpd-category-btn {
    padding: 15px 35px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    color: #1b2944;
        text-transform: uppercase;
    font-weight: 400;
}


.scpd-posts-container.scpd-grid-4 img {
    max-height: 240px;
    width: 100%;
}

.scpd-category-btn:hover {
    background: #1b2944;
}

.scpd-category-btn.active {
    background: #1b2944;
    color: white;
    border-color: #1b2944;
}

.scpd-posts-container {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.scpd-grid-2 { grid-template-columns: repeat(2, 1fr); }
.scpd-grid-3 { grid-template-columns: repeat(3, 1fr); }
.scpd-grid-4 { grid-template-columns: repeat(4, 1fr); }

.scpd-post {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
}

.scpd-post img {
    width: 100%;
    height: auto;
    display: block;
}

.scpd-post h3 {
    margin: 12px 10px;
    font-size: 24px;
    line-height: 1.3;
}

.scpd-post h3 a {
    color: #333;
    text-decoration: none;
}

.scpd-post h3 a:hover {
    color: #0073aa;
}

.scpd-load-more-wrap {
    text-align: center;
    margin: 30px 0;
}

.scpd-load-more {
    padding: 12px 28px;
    font-size: 1.05rem;
    background: #1b2944;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.scpd-load-more:hover {
    background: #005f8b;
}

.scpd-load-more:hidden {
    display: none;
}