/* 기본 */
body {
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    background:#f0f0f0 !important;
    margin:0;
    color:#222;
}

/* 컨테이너 */
.container {
    max-width:1200px !important;
    margin:auto;
    padding:0 15px;
}

/* 헤더 */
header {
    background:#fff;
    padding:20px 0;
    border-bottom:1px solid #eee;
}
.header-inner {
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo {
    font-size:22px;
    font-weight:700;
}
.menu a {
    margin-left:20px;
    text-decoration:none;
    font-weight:600;
    color:#333;
}
.menu a:hover {
    color:#0073ff;
}

/* 글 카드 그리드 */
.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

/* 글 카드 */
article {
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    transition:all .2s;
}
article:hover {
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}
article img {
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:10px;
}
article h3 {
    font-size:17px;
    margin:10px 0;
}
article a {
    text-decoration:none;
    color:#111;
	font-weight: 600;
}
.excerpt {
    font-size:14px;
    color:#666;
    line-height:1.5;
}

/* 글 본문 */
.post {
    max-width:900px;
    margin:40px auto;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}
.post h1 {
    margin-bottom:50px;
}
.post-card img{
height:180px;
object-fit:cover;
}

.post-card{
transition:all .2s;
}

.post-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}
.content {
    line-height:1.8;
    font-size:16px;
}
.content img {
    display:block;
    margin:30px auto;
    max-width:100%;
    height:auto;
}

/* 쿠팡 배너 */
.coupang-banner {
    text-align:center;
    margin:40px 0;
}
.coupang-banner iframe {
    max-width:100%;
    width:1200px;
    height:140px;
    border:0;
}
@media (max-width:768px) {
    .coupang-banner iframe {
        width:100%;
        height:auto;
    }
}

/* 관련글 카드 */
.related-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}
.related-card {
    background:#fff;
    padding:15px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.related-card img {
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:6px;
    margin-bottom:10px;
}
.related-card h4 {
    font-size:15px;
    margin:0 0 5px 0;
}
.related-card a {
    text-decoration:none;
    color:#111;
}