.wpacm-post-container {
    max-width: 850px; /* 너비 약간 확장 */
    margin: 20px auto; /* 상하 여백 추가 */
    padding: 30px; /* 패딩 증가 */
    font-family: 'Segoe UI', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    line-height: 1.75;
    font-size: 0.9em; /* 본문 폰트 크기 유지 */
    color: #333;
    background-color: #ffffff;
    border-radius: 10px; /* 모서리 둥글게 */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.wpacm-post-container p {
    margin-bottom: 1em;
    line-height: 1.7;
}

.wpacm-post-container h2, .wpacm-post-container h3 {
    color: #2c3e50; /* 진한 회색 */
    margin-top: 2em; /* 제목 위 여백 증가 */
    margin-bottom: 1em;
    border-bottom: 2px solid #e0e0e0; /* 더 명확한 구분선 */
    padding-bottom: 0.7em;
    font-weight: 600;
}

.wpacm-photo-section {
    text-align: center;
    margin-bottom: 30px;
}

.wpacm-photo-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.wpacm-facts-section,
.wpacm-reviews-section,
.wpacm-map-section {
    margin-bottom: 30px; /* 섹션 간 여백 증가 */
    border: none; /* 테두리 제거 */
    padding: 25px; /* 패딩 증가 */
    border-radius: 10px;
    background-color: #f8f9fa; /* 배경색 변경 */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.wpacm-map-section h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px; /* 제목 아래 여백 증가 */
    color: #2c3e50;
    font-size: 1.2em;
}

.wpacm-map-section iframe {
    max-width: 100%;
    width: 100%;
    height: 400px; /* 높이 증가 */
    border: 0;
    border-radius: 10px;
}

.wpacm-facts-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.wpacm-facts-table th,
.wpacm-facts-table td {
    border: 1px solid #e9ecef; /* 테두리 색상 변경 */
    padding: 15px;
    text-align: left;
    vertical-align: top;
}

.wpacm-facts-table th {
    background-color: #eef2f7; /* 배경색 변경 */
    font-weight: 600;
    width: 30%;
    color: #495057;
}

.wpacm-reviews-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wpacm-review {
    border: none; /* 테두리 제거 */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.wpacm-review p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.wpacm-review-meta {
    font-weight: bold;
    color: #34495e;
    margin-bottom: 8px;
    font-size: 1.05em;
}

.wpacm-review-time {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 12px;
}

/* 별점 색상 변경 */
.wpacm-review-meta span.star-rating {
    color: #ff69b4; /* 핫핑크 계열 */
    margin-left: 5px;
}

.wpacm-attribution {
    font-size: 0.85em;
    color: #a0a0a0;
    text-align: right;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.wpacm-error {
    color: #dc3545;
    font-weight: bold;
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffc107;
    text-align: center;
    color: #856404;
}

/* Basic responsive adjustments */
@media (max-width: 768px) {
    .wpacm-post-container {
        padding: 15px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .wpacm-facts-table th,
    .wpacm-facts-table td {
        display: block;
        width: 100%;
        text-align: center;
    }
    .wpacm-facts-table th {
        background-color: #eef2f7;
    }
    .wpacm-map-section iframe {
        height: 280px;
    }
}