/* Posts Carousel Widget */
.pc-widget {
    position: relative;
}

.pc-swiper-container {
    position: relative;
    padding: 0 15px;
}

/* Card */
.pc-card {
    display: block;
}

.pc-image-link {
    display: block;
}

.pc-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e8e8e8;
}

.pc-content {
    padding-top: 10px;
}

/* Title */
.pc-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    margin-top: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.pc-title:hover {
    color: #3b4a6b;
}

/* Excerpt */
.pc-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 8px 0 0;
}

/* Read More */
.pc-read-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #3b4a6b;
    text-decoration: none;
    padding-top: 10px;
    transition: color 0.3s ease;
}

.pc-read-more:hover {
    color: #222;
}

/* Navigation */
.pc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    z-index: 10;
    cursor: pointer;
    padding: 6px;
    color: #333;
    transition: color 0.3s ease;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pc-nav-btn:hover {
    color: #000;
}

.pc-nav-btn svg {
    width: 28px;
    height: 28px;
}

.pc-nav-prev {
    left: -36px;
}

.pc-nav-next {
    right: -36px;
}

/* Responsive */
@media (max-width: 991px) {
    .pc-nav-prev {
        left: -10px;
    }
    .pc-nav-next {
        right: -10px;
    }
    .pc-nav-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 767px) {
    .pc-swiper-container {
        padding: 0 30px;
    }

    .pc-nav-btn {
        padding: 0;
    }

    .pc-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .pc-nav-prev {
        left: 0;
    }
    .pc-nav-next {
        right: 0;
    }
}
