.project-content {
    padding-top: 100px;
    padding-bottom: 50px;
}
.project-header {
    margin-bottom: 40px;
    text-align: center;
}
.project-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text);
}
.project-header p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.gallery-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gallery-item {
    width: 100%;
    height: 250px;
    background: var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 500;
    background-size: cover;
    background-position: center;
}
figcaption {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
}
.text-block {
    max-width: 800px;
    margin: 0 auto;
}
.text-block h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: var(--text);
}
.text-block p {
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 15px;
}
