#p5 .avatar-name img,
#p6 .avatar-name img,
#p7 .avatar-name img {
    background-color: var(--primary-tiffany-color);
    border-radius: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center bottom;

}
#p8 .container-bg {
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 70% auto;
    padding-bottom: 200px;
}
.p8-list {
    columns: 1;
    column-gap: 1rem;
    font-size: 0.8rem;
}
.p8-list ol li {
    color:var(--primary-magenta-color);
}
.p8-list ol li:nth-child(n + 13) {
    color:var(--primary-blue-color);
}
.p8-list ol li:nth-child(n + 26) {
    color:var(--primary-tiffany-color);
}
.p8-list ol li span {
    display: block;
    font-size: 0.6rem;
}
@media (min-width:992px) {
    #p8 .container-bg {
       padding-bottom: 0;
    }
    .p8-list {
        columns: 2;
        column-gap: 1rem;
    }
}
@media (min-width:1400px) {
    .p8-list {
        columns: 3;
        column-gap: 0.5rem;
    }
}

#p11 {
    padding-top:1rem;
    background: url(../img/ch01/p11-header-bg.png) no-repeat top left / 100% auto;
}
.p11-author p {
    line-height: 1.1;
}
.p11-author p small {
    font-size:70%;
    color:var(--bs-gray-600);
    line-height: 1;
}
@media (min-width:992px) {
    #p11 {
        padding-top:5rem;
    }
}
@media (min-width:992px) {
    #p11 {
        background-size: 60% auto;
    }
}
.p11-header {
    color: var(--bs-light-color);
    display: flex;
    flex-direction: column;
}
.p11-header small {
    font-size: 60%;
}
.p11-header span {
    font-size: 80%;
}
.p11-author-img {
    background:var(--bs-gray-300);
    border-radius: 2rem 0 0 2rem;
    aspect-ratio: 5/4;
    object-fit: cover;
}
.p11-author {
    padding: 1rem 2rem;
}
.p11-author p {
    color:var(--primary-navy-color);
    margin-bottom: 0.5rem;
}
.p11-author p:nth-child(2) {
    color:var(--bs-gray-600);
}

.profile-img {
    border-radius: 0.4rem 0.4rem 0 0;
    width:100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    object-position: center bottom;
    background: rgb(198,198,198);
    background: linear-gradient(180deg, rgba(198,198,198,1) 0%, rgba(233,233,233,1) 100%);
}
.profile-info {
    display: none;
}
#modal-profile-info .profile-info {
    display: flex;
    flex-direction: column;
}
.modal-close {
    position: absolute;
    top: -0.4rem;
    right: -0.4rem;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.4);
    width: 2.4rem;
    height: 2.4rem;
}
.profile-wrapper {
    transition: .5s all ease-in-out;
}
.profile-wrapper:hover {
    transform: scale(1.05);
    box-shadow: .8rem .8rem .8rem rgba(0,0,0,0.5);
}
.profile-info .position {
    color: var(--bs-gray-600);
    font-size: 0.8rem;
}
.profile-info .position span {
    display: block;
    font-size: 0.7rem;
}
.profile-info .membership {
    color: var(--bs-gray-600);
    font-size: 0.8rem;
}
.profile-info .membership span {
    display: block;
    
}
.profile-info .name-tc {
    color: var(--primary-tiffany-color);
    font-size: 1.2rem;
    margin-bottom: 0;
}
.profile-info .name-en {
    color: var(--primary-tiffany-color);
}

.last-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.last-section-header h2 {
    background: rgb(var(--primary-tiffany-rgb));
    background: linear-gradient(90deg, rgba(var(--primary-tiffany-rgb),0.3) 0%, rgba(var(--primary-magenta-rgb),0.3) 100%);
    display: inline-block;
    padding: 1rem 1rem 1rem 2rem;
    text-align: center;
    border-radius: 3rem;
    z-index: 2;
}
.last-section-header h2 span:first-child {
    color:var(--primary-tiffany-color);
}
.last-section-header h2 span:last-child {
    color:var(--primary-magenta-color);
}
.last-section-header h3 {
    background: rgb(var(--primary-tiffany-rgb));
    background: linear-gradient(90deg, rgba(var(--primary-tiffany-rgb),1) 0%, var(--bs-light-color) 50%, rgba(var(--primary-magenta-rgb),1) 100%);
    display: inline-block;
    padding: 2px;
    text-align: center;
    border-radius: 3rem;
    margin-top:-1rem;
}
.last-section-header h3 b {    
    background-color: var(--bs-light-color);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 3rem;
    color:var(--bs-gray-600);
}
.last-section-header h3 span:first-child {
    color:var(--primary-tiffany-color);
}
.last-section-header h3 span:last-child {
    color:var(--primary-magenta-color);
}

#last .interview h4 {
    margin: 2rem 0;
}
#last .interview p {
    margin-left:2.5rem;
    position: relative;
    border-radius: 100%;
}
#last .interview p:nth-of-type(odd) {
    color: var(--primary-magenta-color);
}
#last .interview p:nth-of-type(odd)::before {
    content: "吳";
    background-color: var(--primary-magenta-color);
}
.en-us #last .interview p:nth-of-type(odd)::before {
    content: "VN";
    background-color: var(--primary-magenta-color);
}
#last .interview p:nth-of-type(even) {
    color: var(--primary-tiffany-color);
}
#last .interview p:nth-of-type(even)::before {
    content: "林";
    background-color: var(--primary-tiffany-color);
}
.en-us #last .interview p:nth-of-type(even)::before {
    content: "CL";
    background-color: var(--primary-tiffany-color);
}

#last .interview p::before {
    position: absolute;
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    margin-right:0.8rem;
    line-height: 1;
    left:-2.8rem;
    align-items: center;
    justify-content: center;
    color:var(--bs-light-color);
    border-radius: 100%;
    padding: 0.5rem;
}

.en-us #profile-18-info blockquote svg.end-quote:last-child {
    float: right;
}