@charset "utf-8";
/******************************************************************
    시공분야 카드 그리드 (bcm_service_cards) — area.php 전용
    service 게시판 대표 이미지를 3열 카드로 보여주고,
    호버 시 제목(제품명)을 오버레이로 덮어 보여준다.
    컬러 토큰은 theme/busanbcm/css/brand.css 에 정의되어 있다.
******************************************************************/

.bcm-svc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
    padding: 0;
    list-style: none;
}
.bcm-svc-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #fff;
}
.bcm-svc-card > a { display: block; color: inherit; text-decoration: none; }

/* 대표 이미지 — 1:1 */
.bcm-svc-card-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--gray-bg);
}
.bcm-svc-card-thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1);
}
.bcm-svc-card:hover .bcm-svc-card-thumb > img { transform: scale(1.06); }
.bcm-svc-card-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ccc;
    font-size: 40px;
}

/* 제품명 — 평소 숨김, 호버 시 남색 오버레이 위로 나타난다 */
.bcm-svc-card-name {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(46, 49, 99, .72);
    color: #fff;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.bcm-svc-card:hover .bcm-svc-card-name { opacity: 1; }

.bcm-svc-empty { padding: 60px 0; color: #888; }

@media screen and (max-width: 768px) {
    .bcm-svc-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media screen and (max-width: 480px) {
    .bcm-svc-cards { grid-template-columns: 1fr; }
}
