.content-part6{
    height: auto;
    width: 100%;
    padding-block: var(--main-block-padding);
    background-color: rgb(246, 246, 246);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.part6-main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.part6-main-content-cards {
    flex-grow: 1;
    display: flex;
    gap: 20px;
}

.part6-main-content-card-one {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    /* border: 2px solid blue; */
    background-color: white;
    border-radius: 12px;
    height: 550px;
    transition: all 0.5s ease-in-out;
}

.part6-main-content-card-one > div:first-child {
    width: 100%;
    height: 400px;
    background-image: url(../imgs/part6/https___popbee.com_image_2025_05_starbucks-japanese-style-cafe-taiwan-taoyuan-daxi10.jpg);
    /* background-image: url(../imgs/part6/https___popbee.com_image_2025_05_starbucks-japanese-style-cafe-taiwan-taoyuan-daxi10.jpg); */
    /* background-image: url(./part6/https___popbee.com_image_2025_05_starbucks-japanese-style-cafe-taiwan-taoyuan-daxi10.jpg); */
    background-size: cover;
    border-radius: 10px;
}

.part6-main-content-card-one > div.card2:first-child {
    width: 100%;
    height: 400px;
    background-image: url(../imgs/part6/Apple-MacBook-Pro-M4-lifestyle-02_big.jpg.large_2x.jpg);
    /* background-image: url(../imgs/part6/https___popbee.com_image_2025_05_starbucks-japanese-style-cafe-taiwan-taoyuan-daxi10.jpg); */
    /* background-image: url(./part6/https___popbee.com_image_2025_05_starbucks-japanese-style-cafe-taiwan-taoyuan-daxi10.jpg); */
    background-size: cover;
    border-radius: 10px;
}

.part6-main-content-card-one > div.card3:first-child {
    width: 100%;
    height: 400px;
    background-image: url(../imgs/part6/two-peaks-white-house-with-dark-roof-blue-sunset-sky-isolated-with-white-highlights_660230-206393.jpg);
    /* background-image: url(../imgs/part6/https___popbee.com_image_2025_05_starbucks-japanese-style-cafe-taiwan-taoyuan-daxi10.jpg); */
    /* background-image: url(./part6/https___popbee.com_image_2025_05_starbucks-japanese-style-cafe-taiwan-taoyuan-daxi10.jpg); */
    background-size: cover;
    border-radius: 10px;
}

.part6-main-content-card-one > .texts-container {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.texts-container > div {
    /* height: 100%;
    flex-grow: 1; */
    /* height: 100%; */
    /* border: 2px solid red; */
}

.texts-container-item1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.texts-container-item1 > span:first-child {
    font-size: 0.8rem;
    color: rgb(136, 136, 136);
}

.texts-container-item1 > span:last-child {
    font-size: 1.4rem;
    font-weight: 700;
    white-space: pre-line;
}

.texts-container-item2 {
    border-top: 1px solid rgb(190, 190, 190);
    border-bottom: 1px solid rgb(190, 190, 190);
    display: flex;
    align-items: center;
    padding-block: 30px;
    gap: 20px;
}

.texts-container-item2 > span:first-child {
    font-size: 1.6rem;
    font-weight: 700;
}

.texts-container-item2 > span:last-child {
    font-size: 1.2rem;
    color: rgb(136, 136, 136);
    text-transform: capitalize;
}

.texts-container-item3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.texts-container-item3 > div:first-child {
    display: flex;
    align-items: center;
}

.texts-container-item3 > div:first-child > div {
    display: flex;
}

.texts-container-item3 > div:first-child > div > div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background-size: cover;
    filter: grayscale(100%);
}

.texts-container-item3 > div:first-child > div > div:nth-child(1) {
    background-image: url('../imgs/part4/person1.jpg');
}

.texts-container-item3 > div:first-child > div > div:nth-child(2) {
    background-image: url('../imgs/part4/person2.png');
    margin-left: -10px;
}

.texts-container-item3 > div:first-child > div > div:nth-child(3) {
    background-image: url('../imgs/part4/person3.png');
    margin-left: -20px;
}

.texts-container-item3 > div:first-child > span {
    font-weight: 700;
}

.texts-container-item3 > div:last-child {
    font-size: 1.6rem;
}

.part6-main-content > div:last-child {
    display: flex;
    align-self: flex-end;
    gap: 10px;
}

.part6-main-content > div:last-child > div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgb(72, 72, 72);
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.part6-main-content > div:last-child > div:first-child {
    transform: scaleX(-1);
    opacity: 0.2;
}


.part6-main-content-card-one:hover {
    transform: translateY(-20px);
}