/* Single Post/Project Styles */
.single-project {
    margin-top: var(--header-height);
}

.hero-header {
    position: relative;
    height: 273px;
    margin-bottom: var(--spacing-large);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.hero-header .entry-title {
    color: #ffffff;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0 0 0.75rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    line-height: 1.2;
}

.hero-header .entry-meta {
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    margin: 0;
}

.no-hero {
    text-align: center;
    padding: var(--spacing-large) var(--spacing-medium);
    background: var(--color-light-gray);
    margin-bottom: var(--spacing-large);
}

.project-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

.entry-content {
    font-size: 1.3rem;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    word-break: normal;
    hyphens: none;
}

.entry-footer {
    margin: var(--spacing-medium) auto;
    padding-top: var(--spacing-small);
    border-top: 1px solid var(--color-light-gray);
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-family: var(--font-title);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-header {
        height: 200px;
    }

    .hero-header .entry-title {
        font-size: 1.75rem;
    }

    .entry-content {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .project-content {
        padding: 0 var(--spacing-small);
    }
}