.project-view {
    padding: 80px 20px;
}

.project-view .inner {
    max-width: 800px;
    margin: 0 auto;
}

.project-view .sec-title {
    margin-bottom: 60px;
}

.project-view .category {
    margin-bottom: 20px;
}

.project-view .badge {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #111;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.project-view .title {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
    word-break: keep-all;
    margin-bottom: 12px;
}

.project-view .images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

.project-view .image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-view .view-actions {
    margin-top: 48px;
    text-align: center;
}

.project-view .btn-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    border: 1px solid #111;
    text-decoration: none;
    box-sizing: border-box;
}

.project-view .btn-list:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 768px) {
    .project-view {
        padding: 60px 16px;
    }

    .project-view .title {
        font-size: 32px;
    }

    .project-view .images {
        gap: 20px;
    }

    .project-view .view-actions {
        margin-top: 32px;
    }
}
