
.main-fullpage {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    scroll-snap-type: y mandatory;
    overflow-y: auto;
}

.main-fullpage .main-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    scroll-snap-align: start;
    position: relative;
}

.main-fullpage .main-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.main-footer-note {
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.main-fullpage .main-section::after {
    content: "▼";
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    animation: scroll-cue 1.6s infinite;
    pointer-events: none;
}

.main-fullpage .main-section:last-of-type::after {
    display: none;
}

@keyframes scroll-cue {
    0%, 20% { opacity: 0; transform: translate(-50%, 6px); }
    40%, 60% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 6px); }
}

/* 고지 블록 */
.gp-child-disclosure {
    max-width: 760px;
    margin: 48px auto 32px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: #fafafa;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    display: block;
    line-height: 1.6;
    white-space: normal;
    min-height: 120px; /* 라인 표시 시 스크롤 점프 방지 */
    overflow: hidden;
}

.gp-child-disclosure strong {
    font-weight: 700;
}

.gp-child-disclosure .typed-cursor {
    font-weight: 300;
}

.muktrip-site-header {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    text-align: center;
}

.muktrip-site-header .inside-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 12px 24px;
    width: 100%;
    box-sizing: border-box;
}

.muktrip-site-header .grid-container {
    max-width: 100%;
    width: 100%;
}

.muktrip-site-header .site-branding {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.muktrip-site-header .site-title {
    text-decoration: none;
    color: #121212;
    font-size: 18px;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 760px;
    min-width: 0;
    background: #fff;
    border: 1px solid #e6e2dc;
    border-radius: 999px;
    padding: 6px 8px;
    margin-left: auto;
    justify-content: flex-end;
}

.header-search input {
    border: 0;
    background: transparent;
    padding: 6px 10px;
    width: 100%;
    min-width: 0;
    color: #121212;
    font-size: 14px;
}

.header-search input:focus {
    outline: none;
}

.header-search:focus-within {
    border-color: #ff6b3d;
    box-shadow: 0 0 0 2px rgba(255, 107, 61, 0.18);
}

.header-search button {
    border: 0;
    background: #ff6b3d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
}

.header-search button:hover {
    background: #ff4a18;
}

.header-langs {
    display: flex;
    gap: 10px;
    font-size: 12px;
    margin-left: 16px;
    white-space: nowrap;
}

.header-langs a {
    color: #121212;
    text-decoration: none;
    opacity: 0.7;
}

.header-langs a.is-current {
    opacity: 1;
    text-decoration: underline;
}

.home-footer {
    background: #101010;
    color: #fff;
    padding: 48px 0 64px;
    width: 100%;
    text-align: center;
}

.home-footer .grid-container {
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.footer-cta {
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
    justify-items: center;
    text-align: center;
}

.footer-col h3 {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: #dcdcdc;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-langs {
    display: flex;
    gap: 12px;
    font-size: 12px;
    justify-content: center;
}

.footer-langs a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
}

.footer-langs a.is-current {
    opacity: 1;
    text-decoration: underline;
}

.single-post .content-area,
.single-post .site-main,
.single-post .inside-article,
.single-post .entry-content {
    margin-left: auto;
    margin-right: auto;
}

.single-post .content-area {
    box-sizing: border-box;
}

.single-post .site-main {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.single-post .inside-article .grid-container,
.single-post .inside-article .grid-parent {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.single-post .inside-article {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.author-more-posts {
    max-width: 1100px;
    margin: 48px auto 0;
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-more-title {
    font-size: 20px;
    margin: 0 0 18px;
}

.author-more-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.author-more-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.author-more-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.author-more-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.author-more-media img,
.author-more-placeholder {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    background: #e5e7eb;
}

.author-more-body {
    padding: 12px;
    display: grid;
    gap: 8px;
}

.author-more-heading {
    font-size: 15px;
    margin: 0;
    line-height: 1.3;
}

.author-more-excerpt {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.45;
}

.nearby-posts {
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nearby-posts-title {
    font-size: 20px;
    margin: 0 0 18px;
}

.nearby-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.nearby-post-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nearby-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.nearby-post-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.nearby-post-media img,
.nearby-post-placeholder {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    background: #e5e7eb;
}

.nearby-post-body {
    padding: 12px;
    display: grid;
    gap: 8px;
}

.nearby-post-heading {
    font-size: 15px;
    margin: 0;
    line-height: 1.3;
}

.nearby-post-excerpt {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.45;
}

@media (max-width: 1023px) {
    .author-more-posts,
    .nearby-posts {
        padding: 20px;
    }

    .author-more-grid,
    .nearby-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .author-more-posts,
    .nearby-posts {
        padding: 16px;
    }

    .author-more-grid,
    .nearby-posts-grid {
        grid-template-columns: 1fr;
    }
}

body,
#page {
    min-height: 100vh;
}

#page {
    display: flex;
    flex-direction: column;
}

#content {
    flex: 1;
}

@media (max-width: 1023px) {
    body.both-sidebars #secondary,
    body.both-sidebars #left-sidebar,
    body.both-sidebars #right-sidebar,
    body.left-sidebar #secondary,
    body.right-sidebar #secondary {
        display: none;
    }

    body.both-sidebars .content-area,
    body.left-sidebar .content-area,
    body.right-sidebar .content-area {
        width: 100%;
        max-width: 100%;
    }

    .single-post .content-area,
    .single-post .site-main,
    .single-post .inside-article,
    .single-post .entry-content {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .single-post .content-area,
    .single-post .site-main {
        max-width: 1100px;
        width: 100%;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }

    .single-post .inside-article,
    .single-post .entry-content {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .single-post.both-sidebars .site-content {
        display: grid;
        grid-template-columns: 1fr minmax(0, 1100px) 1fr;
        column-gap: 24px;
        align-items: start;
    }

    .single-post.both-sidebars #left-sidebar {
        grid-column: 1;
        width: 100%;
    }

    .single-post.both-sidebars #primary,
    .single-post.both-sidebars .content-area {
        grid-column: 2;
        width: 100%;
        max-width: 1100px;
    }

    .single-post.both-sidebars #right-sidebar {
        grid-column: 3;
        width: 100%;
    }
}

@media (max-width: 960px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .muktrip-site-header .inside-header {
        flex-direction: column;
        align-items: stretch;
    }

    .header-search {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}
