.project-hero-container {
    position: relative;
    overflow: hidden;
    background: #0d1f35;
    display: flex;
    align-items: flex-end;
}

.project-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.project-hero-placeholder {
    background: linear-gradient(135deg, #1a3a5c 0%, #0a3028 50%, #0d1f35 100%);
    opacity: 0.9;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 31, 53, 0.2) 0%, rgba(13, 31, 53, 0.55) 45%, rgba(13, 31, 53, 0.9) 100%);
}

.project-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 56px 48px;
    width: 100%;
}

.project-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0e7c6e;
    color: #fff;
    padding: 5px 12px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.project-hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    display: inline-block;
}

.project-hero-title {
    margin: 0 0 18px;
    max-width: 720px;
    color: #fff;
}

.project-hero-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.project-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
}

.project-hero-meta i,
.project-hero-meta svg {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

@media (max-width: 767px) {
    .project-hero-content {
        padding: 0 24px 32px;
    }
    .project-hero-meta {
        gap: 12px;
    }
}
