/* 전체 박스 스타일 */
.box.post {
    text-align: center;
    font-weight: 500;
}

/* 교회 정보 스타일 */
.church-header h3 {
    font-size: 22px;
    font-weight: bold;
    color: #043e07;
}

.church-header h4 {
    font-size: 18px;
    color: #333;
}

.church-header p {
    font-size: 16px;
    color: #444;
    margin-top: 10px;
}

/* 3대 목회철학 */
.philosophy h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    color: #2a8a2e;
}

.philosophy-list {
    list-style: none;
    padding: 0;
}

.philosophy-list li {
    font-size: 16px;
    color: #444;
    background: #e6f1e6;
    margin: 8px 0;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 5대 사역 스타일 */
.ministry-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.card {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 16px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card h4 {
    font-size: 18px;
    color: #2d8e31;
    margin-bottom: 8px;
}

.card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 1em;
}

/* 선교 기관 스타일 */
.mission-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.mission-list li {
    font-size: 15px;
    background: #fffae5;
    padding: 8px 12px;
    border-radius: 5px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .ministry-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}
