/*
 Theme Name:     GeneratePress Child (Custom Homepage)
 Theme URI:      https://generatepress.com
 Description:    GeneratePress Child Theme with a custom homepage for web services.
 Author:         [여기에 본인 이름 또는 닉네임 입력]
 Author URI:     [웹사이트 주소 입력]
 Template:       generatepress
 Version:        1.1.0
 License:        GNU General Public License v2 or later
 License URI:    http://www.gnu.org/licenses/gpl-2.0.html
*/

/* --- 전역 CSS 변수 정의 --- */
:root {
    --primary-color: #0073aa;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --light-gray: #f9f9f9;
}

/* --- 공통 타이틀 --- */
.homepage-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

/* --- 공통 섹션 컨테이너 --- */
.homepage-section {
    padding: 60px 20px;
    background-color: #fff;
}
.homepage-section:nth-child(odd) {
    background-color: #fff;
}


/* --- 공통 그리드 레이아웃 --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 공통 카드 스타일 (서비스 & 최신글 공유) --- */
.card {
    display: flex;
    flex-direction: column;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 30px 20px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}
.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    text-align: center;
}
.card-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

/* --- 서비스 카드 전용 --- */
.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
    align-self: center;
}

/* --- 최신글 카드 전용 --- */
.text-post-card {
    justify-content: center; /* 아이콘이 없어졌으므로 컨텐츠를 중앙 정렬 */
}

.text-post-card .card-desc {
    margin-bottom: 15px;
}

.text-post-card .post-date {
    font-size: 0.85rem;
    color: #777;
    margin-top: auto; /* 날짜를 카드 하단에 위치 */
    align-self: center;
}

/* --- 기존 최신글 그리드 스타일은 제거 (공통 스타일 사용) --- */
/* .latest-posts-grid, .post-card, .post-card-thumbnail, .post-card-content 등은 삭제됨 */