.project-detail {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 80px 40px;
}

.project-detail__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main Title */
.project-detail__main-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.6px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 60px 0;
    max-width: 900px;
}

/* Featured Image */
.project-detail__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background-color: #f0f0f0;
    margin-bottom: 40px;
}

.project-detail__image-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.project-detail__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Description */
.project-detail__description {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.45px;
    color: #E5E5E5;
    margin: 0 0 60px 0;
    max-width: 800px;
    text-align: left;
}

.project-detail__description p {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    margin: 0 0 16px 0;
}

.project-detail__description p:last-child {
    margin-bottom: 0;
}

/* Second Title */
.project-detail__second-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 40px 0;
    max-width: 800px;
}

/* Second Description */
.project-detail__second-description {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.45px;
    color: #E5E5E5;
    margin: 0;
    max-width: 800px;
    text-align: left;
}

.project-detail__second-description p {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    margin: 0 0 16px 0;
}

.project-detail__second-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .project-detail {
        padding: 60px 32px;
    }
    
    .project-detail__main-title {
        font-size: 48px;
        letter-spacing: -1.2px;
        margin-bottom: 50px;
    }
    
    .project-detail__image-wrapper {
        border-radius: 20px;
        margin-bottom: 32px;
    }
    
    .project-detail__description {
        font-size: 16px;
        letter-spacing: -0.4px;
        margin-bottom: 50px;
    }
    
    .project-detail__second-title {
        font-size: 36px;
        letter-spacing: -0.9px;
        margin-bottom: 32px;
    }
    
    .project-detail__second-description {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
}

@media (max-width: 768px) {
    .project-detail {
        padding: 50px 20px;
    }
    
    .project-detail__main-title {
        font-size: 36px;
        letter-spacing: -0.9px;
        margin-bottom: 40px;
    }
    
    .project-detail__image-wrapper {
        border-radius: 16px;
        margin-bottom: 28px;
    }
    
    .project-detail__description {
        font-size: 15px;
        letter-spacing: -0.38px;
        margin-bottom: 40px;
    }
    
    .project-detail__second-title {
        font-size: 28px;
        letter-spacing: -0.7px;
        margin-bottom: 28px;
    }
    
    .project-detail__second-description {
        font-size: 15px;
        letter-spacing: -0.38px;
    }
}

@media (max-width: 480px) {
    .project-detail {
        padding: 40px 16px;
    }
    
    .project-detail__main-title {
        font-size: 28px;
        letter-spacing: -0.7px;
        margin-bottom: 32px;
    }
    
    .project-detail__image-wrapper {
        border-radius: 12px;
        margin-bottom: 24px;
    }
    
    .project-detail__description {
        font-size: 14px;
        letter-spacing: -0.35px;
        margin-bottom: 32px;
    }
    
    .project-detail__second-title {
        font-size: 29px;
        letter-spacing: -0.6px;
        margin-bottom: 24px;
    }
    
    .project-detail__second-description {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
}

/* Alignment Support */
.alignfull.project-detail {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.alignwide.project-detail .project-detail__container {
    max-width: 1280px;
}

/* Editor Preview Styles */
.editor-preview .project-detail {
    min-height: auto;
}

