/*
Theme Name:   GeneratePress Child (회사 홈페이지)
Theme URI:    https://generatepress.com
Description:  GeneratePress 자식 테마 - 실적 게시판 커스터마이징용
Author:       Your Company
Template:     generatepress
Version:      1.0.0
*/

/* 이 파일 아래에 실적 목록/상세 페이지용 커스텀 CSS를 추가하게 됩니다. */

/* 실적 목록 표 스타일 */
.performance-table-wrap {
    margin: 30px 0;
    overflow-x: auto;
}

.performance-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.performance-table th,
.performance-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.performance-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.performance-table tr:hover {
    background-color: #fafafa;
}

.performance-table a {
    color: inherit;
    text-decoration: none;
    display: block;
}

/* 실적 상세 페이지 - 시공 사진 갤러리 */
.performance-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.performance-gallery img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
}

.performance-meta {
    margin: 16px 0;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 6px;
}

.performance-meta p {
    margin: 4px 0;
}
