/*Project 頁面區塊*/
.project-container {
    padding: 200px 0 100px;
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.project-box {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* 支援多欄折行 */
}

.project-img {
    width: 500px;
    height: 500px;
    margin: 20px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px; /* 美化圖片邊角 */
}

.project-thumb {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.project-thumb img {
    margin: 10px;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.project-txt {
    width: 300px;
    height: auto;
    margin: 20px;
}

.project-txt h2 {
    margin: 10px 2px;
}

.project-txt p {
    text-align: left;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

.project-txt a{
    font-size: 18px;
}

/* 📱 RWD 手機、平板支援 */
@media screen and (max-width: 1024px) {
    .project-box {
        flex-direction: column;
    }

    .project-img,
    .project-txt {
        width: 100%;
        height: auto;
    }

    .project-img {
        max-width: 100%;
    }

    .project-txt {
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .project-container {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .project-txt h2 {
        font-size: 20px;
    }

    .project-txt p {
        font-size: 14px;
    }
}
