body {
    background: var(--bg-black-900);
}

.post-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: var(--bg-black-100);
    border-bottom: 1px solid var(--bg-black-50);
    box-shadow: var(--shadow-soft);
}

.post-topbar .logo a {
    color: var(--text-black-900);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 22px;
}

.post-topbar .logo a span {
    font-family: 'Clicker Script', cursive;
    font-size: 30px;
    color: var(--skin-color);
}

.post-topbar .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black-900);
    transition: color 0.3s ease, gap 0.3s ease;
}

.post-topbar .back-link:hover {
    color: var(--skin-color);
    gap: 12px;
}

.post-hero {
    position: relative;
    height: 46vh;
    min-height: 320px;
    overflow: hidden;
}

.post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.post-hero .post-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 50px;
}

.post-hero .post-hero-inner {
    max-width: 800px;
}

.post-hero .post-category {
    display: inline-block;
    background: rgba(var(--skin-color-rgb), 0.9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.post-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.2px;
}

.post-hero-caption {
    max-width: 800px;
    margin: 36px auto 0;
    padding: 0 20px;
    font-size: 14.5px;
    font-style: italic;
    color: var(--text-black-900);
    text-align: left;
}

.post-hero-caption i {
    margin-right: 6px;
    color: var(--skin-color);
    font-style: normal;
}

.post-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 100px;
}

.post-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--bg-black-50);
    color: var(--text-black-700);
    font-size: 14px;
}

.post-meta-bar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.post-meta-bar i {
    color: var(--skin-color);
}

.post-body p {
    font-size: 17px;
    line-height: 30px;
    color: var(--text-black-700);
    margin-bottom: 22px;
}

.post-body h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-black-900);
    margin: 45px 0 18px;
}

.post-body blockquote {
    border-left: 4px solid var(--skin-color);
    background: var(--bg-black-100);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 25px;
    margin: 30px 0;
    font-size: 18px;
    font-style: italic;
    color: var(--text-black-900);
}

.post-body ul {
    margin: 0 0 22px 0;
    padding-left: 0;
}

.post-body ul li {
    position: relative;
    list-style: none;
    padding-left: 26px;
    font-size: 17px;
    line-height: 28px;
    color: var(--text-black-700);
    margin-bottom: 10px;
}

.post-body ul li::before {
    content: '\2022';
    position: absolute;
    left: 6px;
    color: var(--skin-color);
    font-weight: bold;
}

.post-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 35px 0;
}

.post-gallery figure {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.post-gallery figure:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.post-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.post-gallery figcaption {
    padding: 12px 14px;
    font-size: 13.5px;
    color: var(--text-black-700);
}

.post-footer-cta {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid var(--bg-black-50);
    text-align: center;
}

.post-footer-cta p {
    color: var(--text-black-700);
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .post-topbar {
        padding: 15px 20px;
    }
    .post-hero {
        height: 36vh;
        min-height: 240px;
    }
    .post-hero .post-hero-content {
        padding: 25px;
    }
    .post-hero h1 {
        font-size: 26px;
    }
    .post-article {
        padding: 35px 18px 70px;
    }
    .post-gallery {
        grid-template-columns: 1fr;
    }
}
