.post-detail-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Breadcrumb Section */
.hero-section-daytime {
    display: block;
    height: 130px;
}

.breadcrumb-nav {
    margin-top: 70px;
}

/* Hero Section */
.hero-image {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-badge {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.post-meta .meta-item {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

/* Tablet Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        height: 400px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section-daytime {
        height: 100px;
    }

    .breadcrumb-nav {
        margin-top: 50px;
    }

    .hero-image {
        height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .category-badge {
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
    }

    .post-meta .meta-item {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .post-content {
        font-size: 1rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
    .hero-section-daytime {
        height: 80px;
    }

    .breadcrumb-nav {
        margin-top: 30px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .post-meta {
        gap: 0.5rem !important;
    }

    .post-meta .meta-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .category-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}
