@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Gowun+Batang:wght@400;700&display=swap");

.posting-theme {
    --posting-ink: #1c1f24;
    --posting-muted: #4b5563;
    --posting-accent: #0b6e4f;
    --posting-accent-2: #e4572e;
    --posting-paper: #f7f3ea;
    --posting-panel: #ffffff;
    --posting-border: rgba(0, 0, 0, 0.08);
    --posting-shadow: 0 18px 45px rgba(20, 20, 30, 0.08);
    background-color: var(--posting-paper);
    background-image: radial-gradient(circle at 12% 12%, rgba(11, 110, 79, 0.08), transparent 40%),
                      radial-gradient(circle at 88% 18%, rgba(228, 87, 46, 0.1), transparent 45%),
                      linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(247, 243, 234, 0.6));
    color: var(--posting-ink);
    font-family: "Gowun Batang", "Nanum Myeongjo", serif;
    padding: 32px 16px 72px;
}

.posting-hero {
    max-width: 1400px;
    margin: 0 auto 36px;
    border-radius: 28px;
    padding: 48px 48px 56px;
    background: linear-gradient(135deg, #0f172a, #0b6e4f 45%, #e4572e);
    color: #fff;
    box-shadow: var(--posting-shadow);
    position: relative;
    overflow: hidden;
}

.posting-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25), transparent 45%);
    pointer-events: none;
}

.posting-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.posting-hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 16px;
}

.posting-hero-title {
    font-family: "Black Han Sans", "Gowun Batang", serif;
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    margin: 0 0 12px;
}

.posting-hero-desc {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 460px;
    color: rgba(255, 255, 255, 0.85);
}

.posting-shell {
    max-width: 1400px;
    margin: 0 auto;
}

.posting-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 32px;
    align-items: start;
}

.posting-feed {
    min-width: 0;
}

.posting-feed .main-header {
    margin-bottom: 28px !important;
    border-radius: 20px !important;
}

.posting-feed .posts-section {
    padding: 0 !important;
}

.posting-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
}

.posting-sidebar .modern-weather-widget {
    max-width: none;
    margin: 0;
    padding: 0;
}

.posting-sidebar .widget-header {
    border-radius: 20px;
    margin-bottom: 24px;
}

.posting-sidebar .widget-grid {
    grid-template-columns: 1fr;
}

.posting-sidebar .music-card {
    margin-top: 12px;
}

.posting-media {
    margin-top: 48px;
    display: grid;
    gap: 40px;
}

.posting-media-block {
    background: var(--posting-panel);
    border-radius: 24px;
    padding: 24px 0;
    box-shadow: var(--posting-shadow);
}

@media (max-width: 1200px) {
    .posting-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
    }
}

@media (max-width: 1024px) {
    .posting-layout {
        grid-template-columns: 1fr;
    }

    .posting-sidebar {
        position: static;
    }

    .posting-media-block {
        padding: 18px 0;
    }
}

@media (max-width: 640px) {
    .posting-theme {
        padding: 20px 12px 48px;
    }

    .posting-hero {
        padding: 32px 24px 38px;
        border-radius: 20px;
    }

    .posting-hero-desc {
        font-size: 1rem;
    }
}
