:root { --main-green: #2d5a27; }

.budo-container { max-width: 1200px; margin: 80px auto; padding: 0 20px; font-family: 'Pretendard', sans-serif; }

/* title-style */
.budo-header { text-align: center; margin-bottom: 80px; }
.trust-text { color: var(--main-green); font-size: 14px; letter-spacing: 3px; font-weight: 600; }

.budo-title { font-size: 38px; color: #333; margin-top: 10px; font-weight: 700; }

.title-line { width: 50px; height: 2px; background: var(--main-green); margin: 25px auto; }

.section-label { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: #444; display: flex; align-items: center; }
.section-label span { color: var(--main-green); font-size: 14px; margin-right: 10px; border: 1px solid var(--main-green); padding: 2px 6px; border-radius: 3px; }

.img-box { overflow: hidden; border-radius: 4px; background: #f9f9f9; }
.img-box img { width: 100%; height: 100%; object-fit: cover; display: block; transition: 0.4s; }
.img-box:hover img { transform: scale(1.08); }

.main-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 60px; }

.pair-group { display: flex; flex-direction: column; gap: 15px; }
.img-box { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 4px; border: 1px solid #eee; }

.img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

.scenery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 100px; }
.scenery-grid .img-box { aspect-ratio: 16 / 9; }

.method-section { border-top: 1px solid #eee; padding-top: 60px; margin-top: 50px; }

.method-label { font-size: 20px; color: #333; margin-bottom: 30px; border-left: 4px solid var(--main-green); padding-left: 15px; text-align: left; font-weight: bold;}

.method-display { background-color: #f8f9f7; padding: 60px 40px; text-align: center; border-radius: 8px; }

.method-img { max-width: 500px; width: 100%; height: auto; display: inline-block; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* 반응형 웹 */
@media (max-width: 768px) {
    .main-grid { grid-template-columns: 1fr; gap: 40px; }

    .pair-group { flex-direction: row; gap: 10px; }

    .pair-group .img-box { width: 50%; }

    .method-display { padding: 30px 15px; }
}
