.pc-92dc41dd-wrapper {
    font-family: inherit;
}

.pc-92dc41dd-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.pc-92dc41dd-filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pc-92dc41dd-filter-btn span {
    color: #888;
    font-weight: normal;
}

.pc-92dc41dd-filter-btn:hover,
.pc-92dc41dd-filter-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.pc-92dc41dd-filter-btn:hover span,
.pc-92dc41dd-filter-btn.active span {
    color: #ff477e;
}

.pc-92dc41dd-grid {
    display: grid;
    gap: 24px;
    /* Default to 1 column for mobile */
    grid-template-columns: repeat(1, 1fr);
}

/* Fallbacks in case settings are missing */
@media (min-width: 768px) {
    .pc-92dc41dd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .pc-92dc41dd-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pc-92dc41dd-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.pc-92dc41dd-card:hover {
    transform: translateY(-5px);
}

.pc-92dc41dd-image {
    height: 200px;
    width: 100%;
    background: #222;
    position: relative;
    overflow: hidden;
}

.pc-92dc41dd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-92dc41dd-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient( 45deg, #222, #222 10px, #2a2a2a 10px, #2a2a2a 20px );
}

.pc-92dc41dd-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pc-92dc41dd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.pc-92dc41dd-tag {
    font-size: 10px;
    color: #ff477e;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pc-92dc41dd-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.pc-92dc41dd-title a {
    color: inherit;
    text-decoration: none;
}

.pc-92dc41dd-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
