.gpcps-slider-container {
    position: relative;
    max-width: 1200px; /* 사이트 최대 폭에 맞게 조절 */
    margin: 0 auto;
    padding: 20px 0 40px 0;
}

.gpcps-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gpcps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gpcps-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gpcps-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gpcps-category {
    font-size: 13px;
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 8px;
}

.gpcps-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.gpcps-title a {
    color: #222;
    text-decoration: none;
    /* 두 줄 이상 넘어가면 말줄임표(...) 처리 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gpcps-date {
    font-size: 13px;
    color: #888;
    margin-top: auto; /* 날짜를 항상 맨 아래로 밀어냄 */
}

/* Swiper 화살표 커스텀 */
.swiper-button-next, .swiper-button-prev {
    color: #333 !important;
    background: rgba(255,255,255,0.8);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

/* 스크롤바 (이미지 하단의 회색 선) */
.swiper-scrollbar {
    background: #eee !important;
    height: 4px !important;
    bottom: 0 !important;
}
.swiper-scrollbar-drag {
    background: #888 !important;
}