.single-default-doctor{
    overflow: hidden;
    background-color: var(--color-gray-6);
    #breadcrumbs > span{
        padding: 24px 0;
    }
}

.single-default-doctor-grid{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: min-content 1fr;
    align-items: end;
    gap: 24px 60px;
}
.single-default-doctor-img{
    grid-row: span 2;
    width: 486px;
    position: relative;
    z-index: 1;
    >.circle-1,
    >.circle-2{
        position: absolute;
        z-index: -1;
        border-radius: 50%;
        aspect-ratio: 1;
    }
    >.circle-1{
        left: -160px;
        bottom: 108px;
        width: 160px;
        opacity: 0.8;
        background-color: var(--color-primary-3);
        animation: circle-scale-big 3s ease-in-out infinite alternate;
    }
    >.circle-2{
        left: -222px;
        bottom: -340px;
        width: 600px;
        opacity: 0.5;
        background-color: white;
        backdrop-filter: blur(10px);
        animation: circle-scale-small 3s ease-in-out infinite alternate;
    }
}
.single-default-doctor-title{
    position: relative;
    z-index: 1;
    padding-top: 80px;
    >.circle{
        position: absolute;
        z-index: -1;
        border-radius: 50%;
        aspect-ratio: 1;
        top: 115px;
        right: 82px;
        width: 40px;
        opacity: 0.8;
        background-color: var(--color-primary-3);
    }
    >h2{
        color: var(--color-primary-1);
        margin-bottom: 12px;
    }
}
.single-default-doctor-content{
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
    align-self: center;
    >.circle{
        position: absolute;
        z-index: -1;
        border-radius: 50%;
        aspect-ratio: 1;
        right: -720px;
        bottom: -680px;
        width: 1200px;
        opacity: 0.5;
        background-color: white;
        backdrop-filter: blur(10px);
    }
    >.tags{
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 40px;
        >p{
            color: var(--color-primary-2);
            padding: 2px 12px;
            border-radius: 2px;
            background-color: color-mix(in oklab, var(--color-primary-2) 10%, transparent);
        }
    }
    >h4{
        padding-left: 12px;
        border-left: 1px solid var(--color-primary-2);
        color: var(--color-primary-2);
        margin-bottom: 12px;
    }
    >ul{
        list-style: initial;
        padding-left: 28px;
        margin-bottom: 40px;
        >li{
            font-family: "Noto Sans TC", sans-serif;
            color: var(--color-gray-3);
            font-size: 16px;
            line-height: 1.8;
            font-weight: 350;
            letter-spacing: 2px;
        }
    }
}

@keyframes circle-scale-big {
    0%{
        scale: 1;
    }
    100%{
        scale: 1.2;
    }
}
@keyframes circle-scale-small {
    0%{
        scale: 1;
    }
    100%{
        scale: 0.8;
    }
}

@media screen and (width < 1248px) {
    .single-default-doctor-grid{
        gap: 24px;
    }
    .single-default-doctor-img{
        >.circle-1{
            left: -50px;
        }
        >.circle-2{
            left: -100px;
        }
    }
}
@media screen and (width < 1024px) {
    .single-default-doctor-grid{
        grid-template-columns: 100%;
        grid-template-rows: auto;
        gap: 40px;
    }
    .single-default-doctor-img{
        grid-row: auto;
        margin: 0 auto;
        max-width: 486px;
        width: 100%;

        >.circle-1{
            left: calc(-50 / 486 * 100%);
            bottom: calc(108 / 486 * 100%);
            width: calc(160 / 486 * 100%);
        }
        >.circle-2{
            left: calc(-100 / 486 * 100%);
            bottom: calc(-340 / 486 * 100%);
            width: calc(600 / 486 * 100%);
        }
    }
    .single-default-doctor-title{
        order: -1;
        >h1, >h2{
            text-align: center;
        }
    }
    .single-default-doctor-content{
        >.circle{
            display: none;
        }
    }
}

@media screen and (width < 768px) {
    .single-default-doctor-content{
        >ul{
        padding-left: 24px;
            >li{
                font-size: 14px;
            }
        }
    }
}

@media screen and (width < 576px) {
    .single-default-doctor-title{
        padding-top: 60px;
        >.circle{
            top: 180px;
            right: 24px;
            width: 20px;
        }
    }
    .single-default-doctor-content{
        padding-bottom: 60px;
        >a{
            margin: 0 auto;
        }
    }
}