
/*
Theme Name: Youth Benefit Magazine
Theme URI: https://example.com
Author: OpenAI
Description: 청년 정책 콘텐츠 플랫폼 스타일 워드프레스 테마
Version: 1.0
*/

body{
    margin:0;
    font-family:'Pretendard',sans-serif;
    background:#F5F7FB;
    color:#111827;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:1200px;
    margin:0 auto;
}

header{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    padding:24px 0;
    position:sticky;
    top:0;
    z-index:10;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:34px;
    font-weight:800;
    color:#2563EB;
}

.menu{
    display:flex;
    gap:32px;
    font-weight:600;
}

.hero{
    padding:100px 0 80px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:72px;
    line-height:1.15;
    margin-bottom:24px;
}

.hero p{
    font-size:24px;
    color:#4b5563;
    line-height:1.7;
}

.search-box{
    background:#fff;
    border-radius:24px;
    padding:28px;
    margin-top:36px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.search-box input{
    width:100%;
    padding:20px;
    border-radius:16px;
    border:1px solid #d1d5db;
    font-size:18px;
}

.section{
    padding:60px 0;
}

.section-title{
    font-size:40px;
    font-weight:800;
    margin-bottom:28px;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.policy-card{
    background:#fff;
    border-radius:24px;
    padding:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.2s;
}

.policy-card:hover{
    transform:translateY(-5px);
}

.badge{
    display:inline-block;
    background:#2563EB;
    color:#fff;
    border-radius:999px;
    padding:8px 16px;
    font-size:14px;
    margin-bottom:18px;
}

.policy-card h3{
    font-size:28px;
    margin:10px 0;
}

.meta{
    color:#6b7280;
    margin-top:16px;
}

.tip-box{
    background:#111827;
    color:#fff;
    border-radius:28px;
    padding:40px;
}

footer{
    margin-top:80px;
    padding:60px 0;
    background:#fff;
    border-top:1px solid #e5e7eb;
    text-align:center;
    color:#6b7280;
}
