.project-page {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.project-block {
    display: flex;
    flex-direction: column;
}

.project-section-head {
    margin-bottom: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.project-section-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #222;
}

.project-list {
    display: flex;
    flex-direction: column;
}

.project-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 10px;
}

.project-list .project-card:last-child {
    border-bottom: none;
}

.project-period {
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.current-card .project-period {
    color: var(--accent);
}

.current-card {
    position: relative;
    border-color: #e5e7eb;
    overflow: hidden;
    padding-left: 15px;
}

.current-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}

.project-content h3 {
    font-size: clamp(16px, 2.4vw, 18px);
    font-weight: 500;
    color: #111827;
    line-height: 1.45;
    word-break: keep-all;
}

.project-content p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
}

.project-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 10px;
    margin-left: 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #7193db;
    background: #dbeafe;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .project-card {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 8px;
    }

    .project-period {
        font-size: 13px;
    }

    .project-content p {
        font-size: 13px;
    }

    .current-card {
        padding-left: 15px;
    }
}