
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans KR', 'Malgun Gothic', '맑은 고딕', sans-serif; font-size: 14px; color: #333; background-color: #f4f4f4; line-height: 1.6; font-weight: 400; margin: 0; padding: 20px; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; padding:0; margin:0; }
button { cursor: pointer; font-family: inherit; border: none; background: none; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6, .logo-text { font-weight: 600; }
h1.post-title, h2.sub-title { font-weight: 700; }

:root {
--card-border-radius: 8px;
--theme-color: #8a2be2;
--theme-color-dark: #6a1a9a;
--accent-color-orange: #ff7e00;
--content-width: 1100px; 
--side-padding: 20px; 
}

.breadcrumb-nav { max-width: var(--content-width); margin: 15px auto 0 auto; padding: 0 var(--side-padding); }
.breadcrumb { display: flex; flex-wrap: wrap; padding: 10px 15px; margin-bottom: 1rem; list-style: none; background-color: #e9ecef; border-radius: 6px; font-size: 0.9em; }
.breadcrumb-item { display: flex; align-items: center; }
.breadcrumb-item + .breadcrumb-item::before { display: inline-block; padding-right: .5rem; padding-left: .5rem; color: #6c757d; content: "/"; }
.breadcrumb-item a { color: var(--theme-color); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item.active { color: #6c757d; font-weight: 500; }

.dalto-post-wrap {
    font-family: 'Noto Sans KR', 'Malgun Gothic', '맑은 고딕', sans-serif;
    line-height: 1.75;
    color: #333;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: var(--card-border-radius);
    word-break: keep-all;
    max-width: var(--content-width); 
    margin: 20px auto 30px auto;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.dalto-post-wrap h1.post-title { font-size: 28px; color: var(--theme-color); margin-bottom: 15px; padding-bottom: 20px; border-bottom: 2px solid var(--theme-color); text-align: center; }
.dalto-post-wrap .page-subtitle-text { font-size: 1.1em; text-align: center; color: #555; margin-bottom: 30px; }
.dalto-post-wrap h2.sub-title { font-size: 22px; color: var(--theme-color-dark); margin-top: 40px; margin-bottom: 18px; padding-left: 12px; border-left: 4px solid var(--accent-color-orange); display: flex; align-items: center; padding-top: 25px; border-top: 1px solid #eee; }
.dalto-post-wrap h2.sub-title:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.dalto-post-wrap h2.sub-title i { margin-right: 10px; font-size: 0.9em; color: var(--accent-color-orange); }
.dalto-post-wrap h3.content-subtitle { font-size: 18px; color: #444; margin-top: 25px; margin-bottom: 12px; font-weight: 600; padding-left: 15px; border-left: 3px solid #ccc; }
.dalto-post-wrap p { margin-bottom: 18px; font-size: 15px; color: #444; line-height: 1.75;}
.dalto-post-wrap .intro-image { margin-bottom: 20px; border-radius: var(--card-border-radius); overflow: hidden; border: 1px solid #eee; box-shadow: 0 2px 6px rgba(0,0,0,0.07); }
.dalto-post-wrap .intro-image img { display: block; width: 100%; height: auto; max-width: 100%; margin: 0 auto; object-fit: cover; max-height: 450px; }

.dalto-post-wrap p.intro-text { font-size: 16px; color: #555; margin-top: 30px; margin-bottom: 30px; font-weight: 500; text-align: left; padding: 20px; border-top: 1px dashed #ddd; border-bottom: 1px dashed #ddd; background-color: #fdfaff; border-radius: 6px; }
.dalto-post-wrap strong { color: #000; font-weight: 600; } 
.dalto-post-wrap strong.theme-strong { color: var(--theme-color); } 
.dalto-post-wrap strong.highlight { background-color: #f5f0ff; padding: 2px 5px; border-radius: 4px; font-weight: 600; color: var(--theme-color-dark); }
.dalto-post-wrap ul.features-list, .dalto-post-wrap ol.features-list { list-style: none; padding: 0 0 0 10px; margin: 20px 0; border-left: 3px solid #eee; }
.dalto-post-wrap ul.features-list li { margin-bottom: 14px; padding-left: 30px; position: relative; font-size: 15px; color: #555; }
.dalto-post-wrap ul.features-list li::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent-color-orange); position: absolute; left: 5px; top: 3px; font-size: 16px; }
.dalto-post-wrap ol.features-list { list-style-type: decimal; padding-left: 25px; margin-left: 5px; border-left: none;}
.dalto-post-wrap ol.features-list li::before { content: ''; }
.dalto-post-wrap ol.features-list li { padding-left: 5px; margin-bottom: 10px; }
.dalto-post-wrap ol.features-list li strong { display: block; margin-bottom: 3px; color: var(--theme-color-dark); }

.dalto-post-wrap .listing-grid-detailed { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; margin-top: 20px; }
.dalto-post-wrap .listing-card-detailed { background-color: #fff; border: 1px solid #eee; border-radius: var(--card-border-radius); box-shadow: 0 2px 8px rgba(0,0,0,0.07); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.dalto-post-wrap .listing-card-detailed:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.dalto-post-wrap .listing-card-detailed img { width: 100%; height: 200px; object-fit: cover; }
.dalto-post-wrap .listing-card-detailed-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column;}
.dalto-post-wrap .listing-card-detailed-content h4 { font-size: 1.3em; color: var(--theme-color-dark); margin-top: 0; margin-bottom: 10px;}
.dalto-post-wrap .listing-card-detailed-content h4 a:hover { text-decoration: underline; }
.dalto-post-wrap .listing-card-detailed-content p.card-description { font-size: 0.95em; color: #555; margin-bottom: 12px; line-height: 1.6; flex-grow: 1;}
.dalto-post-wrap .listing-card-detailed-content .card-details-list { list-style: none; padding: 0; margin:0 0 15px 0; font-size:0.9em; color: #666;}
.dalto-post-wrap .listing-card-detailed-content .card-details-list li { margin-bottom: 6px; display: flex; align-items: center; }
.dalto-post-wrap .listing-card-detailed-content .card-details-list i { margin-right: 8px; color: var(--accent-color-orange); width:16px; text-align:center;}
.dalto-post-wrap .listing-card-detailed-content .btn-details-action { background-color: var(--accent-color-orange); color: white; padding: 10px 15px; border-radius: 5px; text-align: center; text-decoration: none; display: block; margin-top:auto; transition: background-color 0.2s ease; font-weight:bold;}
.dalto-post-wrap .listing-card-detailed-content .btn-details-action:hover { background-color: #e66f00; }
.dalto-post-wrap .more-venues-button-wrap { text-align:center; margin-top:30px;}

.dalto-post-wrap .blog-style-section { margin-top: 30px; padding-top: 30px; border-top: 1px solid #eee;}
.dalto-post-wrap .blog-style-section h3.content-subtitle { text-align:center; border-left:none; padding-left:0; font-size: 1.4em; margin-bottom:20px;}
.dalto-post-wrap .blog-post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.dalto-post-wrap .blog-post-item { background-color: #fff; border: 1px solid #e0e0e0; border-radius: var(--card-border-radius); overflow:hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.05); display:flex; flex-direction:column;}
.dalto-post-wrap .blog-post-item img { width:100%; height:180px; object-fit:cover;}
.dalto-post-wrap .blog-post-item-content { padding:15px; flex-grow:1; display:flex; flex-direction:column;}
.dalto-post-wrap .blog-post-item-content h4 { font-size:1.1em; margin-top:0; margin-bottom:8px; color: var(--theme-color-dark);}
.dalto-post-wrap .blog-post-item-content p { font-size:0.9em; color:#666; margin-bottom:12px; flex-grow:1; line-height: 1.5;}
.dalto-post-wrap .blog-post-item-content .btn-read-more { background-color: var(--theme-color); color:white; padding: 8px 12px; border-radius:4px; text-align:center; text-decoration:none; display:inline-block; font-size:0.9em; margin-top:auto; transition: background-color 0.2s ease;}
.dalto-post-wrap .blog-post-item-content .btn-read-more:hover { background-color: var(--theme-color-dark);}


.reviews-section-embed { margin-top: 40px; padding-top: 25px; border-top: 1px solid #eee;}
.reviews-section-embed p { margin-bottom: 15px; }
.reviews-section-embed .more-button-box { display: inline-block; width: auto; margin-top: 10px; background-color: var(--accent-color-orange); color: white !important; text-align: center; padding: 10px 15px; border-radius: 5px; font-weight: 500; transition: background-color 0.2s ease; text-decoration: none; font-size: 0.95em;}
.reviews-section-embed .more-button-box:hover { background-color: #e66f00; }
.reviews-section-embed .more-button-box i { margin-left: 8px; }

.dalto-post-wrap .google-map-container { margin-top: 30px; margin-bottom: 30px; border: 1px solid #eee; border-radius: var(--card-border-radius); overflow: hidden; }
.dalto-post-wrap .google-map-container h4 { font-size: 1.2em; padding: 15px 20px; margin: 0; background-color: #f8f8f8; border-bottom: 1px solid #eee; color: #444; font-weight: 600;} 
.dalto-post-wrap .google-map-container h4 i { margin-right: 8px; color: var(--theme-color); }
.dalto-post-wrap .google-map-container iframe { display: block; border:0; width: 100%; height: 400px; }


.dalto-post-wrap a.internal-link { color: var(--theme-color); font-weight: 500; text-decoration: none; border-bottom: 1px dotted var(--theme-color); transition: color 0.2s, border-color 0.2s; }
.dalto-post-wrap a.internal-link:hover { color: var(--theme-color-dark); border-bottom-color: var(--theme-color-dark); }
.dalto-post-wrap .final-comment { margin-top: 40px; font-style: normal; color: #666; text-align: center; border-top: 1px dashed #ddd; padding-top: 30px; font-size: 16px; font-weight: bold;}

@media (max-width: 992px) {
    :root { --content-width: 720px; }
    .dalto-post-wrap .listing-grid-detailed { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}
@media (max-width: 768px) {
    :root { --content-width: 100%; }
    .breadcrumb-nav { padding: 0 5px; margin-top: 10px; } 
    .dalto-post-wrap { padding: 20px; }
    .dalto-post-wrap h1.post-title { font-size: 24px; }
    .dalto-post-wrap h2.sub-title { font-size: 20px; }
    .dalto-post-wrap .listing-grid-detailed { grid-template-columns: 1fr; }
    .dalto-post-wrap .blog-post-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    body { padding: 10px; }
    .dalto-post-wrap { padding: 15px; }
    .dalto-post-wrap .intro-image img { max-height: 300px; }
}