 

.pcn-container {
    width: 100%;
    position: relative;
}

/* Grid Layout */
.pcn-container.pcn-layout-grid {
    display: grid;
    gap: 20px;
}

/* Item Style */
.pcn-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.pcn-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* Alignment handled via flex properties in controls */
}

/* Elements */
.pcn-cat-img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.pcn-item:hover .pcn-cat-img {
    transform: scale(1.05);
}

.pcn-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.pcn-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0 0 5px 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.pcn-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    line-height: 1.5;
}

.pcn-count {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-top: auto; /* Push to bottom if flex stretch */
}

/* Active State Defaults */
.pcn-item.active {
    border: 1px solid #000;
}

/* Carousel Fixes */
.pcn-layout-carousel {
    overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 50%;
    color: #333;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}