.pc-75725285-container {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.pc-75725285-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.pc-75725285-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    width: 100%;
    scrollbar-width: none; /* Firefox */
}

.pc-75725285-viewport::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
}

.pc-75725285-track {
    display: flex;
    --pc-cols: 3;
    scroll-snap-type: x mandatory;
}

.pc-75725285-card {
    flex: 0 0 calc((100% - (var(--pc-cols) - 1) * var(--gap, 20px)) / var(--pc-cols));
    min-width: 250px;
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.pc-75725285-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #f0f0f0;
    overflow: hidden;
}

.pc-75725285-img, 
.pc-75725285-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pc-75725285-image-placeholder {
    background: linear-gradient(135deg, #ddd 25%, #eee 50%, #ddd 75%);
}

.pc-75725285-card:hover .pc-75725285-img {
    transform: scale(1.05);
}

.pc-75725285-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pc-75725285-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pc-75725285-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.pc-75725285-title a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.pc-75725285-excerpt {
    font-size: 14px;
    line-height: 1.5;
}

.pc-75725285-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background-color 0.2s, opacity 0.2s;
}

.pc-75725285-btn:hover {
    opacity: 0.9;
}

.pc-75725285-prev {
    left: -20px;
}

.pc-75725285-next {
    right: -20px;
}

.pc-75725285-empty {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 8px;
    color: #777;
}

@media (max-width: 1024px) {
    .pc-75725285-track {
        --pc-cols: 2;
    }
}

@media (max-width: 600px) {
    .pc-75725285-track {
        --pc-cols: 1;
    }
    .pc-75725285-btn {
        display: none; /* Hide arrows on small mobiles for touch scrolling */
    }
}
