.angie-pc-131a687f {
    position: relative;
    width: 100%;
}
.angie-pc-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 0;
    scrollbar-width: none;
}
.angie-pc-track::-webkit-scrollbar {
    display: none;
}
.angie-pc-slide {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .angie-pc-slide { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 767px) {
    .angie-pc-slide { flex: 0 0 100%; }
}
.angie-pc-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.angie-pc-no-img {
    background: #eaeaea;
}
.angie-pc-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.angie-pc-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
}
.angie-pc-title a {
    text-decoration: none;
    color: inherit;
}
.angie-pc-excerpt {
    margin: 0 0 15px;
    font-size: 0.9rem;
    color: #666;
    flex-grow: 1;
}
.angie-pc-readmore {
    display: inline-block;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    align-self: flex-start;
}
.angie-pc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.angie-pc-nav.prev { left: -20px; }
.angie-pc-nav.next { right: -20px; }
.angie-pc-nav:hover { background: rgba(0,0,0,0.8); }
