.studio-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    min-height: calc(100vh - 255px); 
    margin: 0 auto;
    background: #FFFFFF;
}


.title-section {
    height: 100px;
    background: #044799;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px; 
}

.title-section h1 {
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0.6em;
    color: #FFFFFF;
}


.studio-intro {
    width: 1200px;
    margin: 50px auto;
    text-align: justify;
}

.studio-intro p {
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    text-indent: 40px;
    color: #666666;
}


.studio-descriptions {
    width: 1200px;
    margin: 50px auto;
}

.studio-desc {
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 200%;
    text-indent: 40px;
    letter-spacing: 0%;
    color: #666666;
    text-align: justify;
}


.studio-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 1.28px;
    width: 1197px;
    height: 69.85px;
    margin: 0 auto;
}

.studio-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 19.8646px 0px;
    gap: 1.28px;
    width: 238.37px;
    height: 69.85px;
    background: #D9D9D9;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 17.9422px;
    line-height: 23px;
    color: #000000;
    cursor: pointer;
}

.studio-item.active {
    background: #044799;
    color: #FFFFFF;
}


.studio-showcase {
    width: 1200px; 
    margin: 0 auto;
    box-sizing: border-box;
}

.showcase-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px; 
    gap: 40px; 
}

.showcase-item {
    width: 580px;
    position: relative;
    height: 337px; 
    overflow: hidden; 
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    overflow: hidden;
}


.studio-container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 300px;
    left: 0px;
    top: 218px;
    z-index: -1;
    background-color: #F5F5F5;
}

.studio-main {
    display: flex;
    margin-top: 30px;
}

.studio-nav-item {
    box-sizing: border-box;
    width: 346px;
    height: 109px;
    background: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    color: #373737;
    border-top: 1px solid #000000;
}

.studio-nav-item:first-child {
    border-bottom: 1px solid #000000;
    border-top: none;
}

.studio-nav-item.active {
    background: #044799;
    color: #FFFFFF;
}


.studio-images {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.studio-image {
    position: relative;
    width: 1191px;
    height: 611px;
    margin-bottom: 20px;
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #D9D9D9;
}

.image-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 84px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    padding: 0 23px;
    box-sizing: border-box;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #FFFFFF;
}


@media (max-width: 768px) {
    .studio-container {
        flex-direction: column;
        padding: 10px;
    }
    
    .title-section {
        height: 60px;
        margin-bottom: 20px;
    }
    
    .title-section h1 {
        font-size: 20px;
        letter-spacing: 0.3em;
    }

    .studio-nav {
        flex: none;
        margin-bottom: 20px;
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 5px;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .studio-item {
        width: 100%;
        height: 50px;
        font-size: 16px;
        padding: 10px 0;
    }
    
    .studio-descriptions {
        width: 100%;
        margin: 20px auto;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .studio-desc {
        font-size: 14px;
        line-height: 160%;
        text-indent: 28px;
    }
    
    .studio-content {
        padding: 0;
        width: 100%;
    }
    
    .studio-showcase {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .showcase-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .showcase-item {
        width: 100%;
        height: 200px;
        margin-bottom: 0;
        position: relative;
        overflow: hidden;
    }
    
    .showcase-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .item-desc {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        box-sizing: border-box;
        font-size: 12px;
        color: #FFFFFF;
    }
}

@media (max-width: 375px) {
    .title-section h1 {
        font-size: 18px;
        letter-spacing: 0.2em;
    }
    
    .studio-item {
        font-size: 14px;
        height: 40px;
    }
    
    .studio-desc {
        font-size: 13px;
    }
    
    .showcase-item {
        height: 180px;
    }
    
    .item-desc {
        font-size: 11px;
        padding: 8px;
    }
} 

