/* ===========================================
   Portfolio Poster - 잘림 방지
   =========================================== */

/* 포스터 비율 조정 - 더 세로로 길게 */
.portfolio-card .portfolio-poster {
    width: 100%;
    aspect-ratio: 2 / 3 !important;  /* 3/4에서 2/3으로 변경 (더 세로로 김) */
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    background: #f2f2f2;
}

/* 포스터 이미지 - contain으로 잘림 방지 */
.portfolio-card .portfolio-poster img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;  /* cover에서 contain으로 변경 */
    display: block;
}

/* project-poster도 동일 처리 */
.project-poster {
    width: 100%;
    aspect-ratio: 2 / 3 !important;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    background: #f2f2f2;
}

.project-poster img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    display: block;
}

/* 주요실적 페이지 버튼 호버 색상 */
body.page-template-page-portfolio .btn:hover,
body.page-template-page-portfolio .btn-primary:hover {
    background: #099F97 !important;
    color: #ffffff !important;
}
