/* 專科介紹區塊-start -- */
.specialty-intro-section {
    padding: 72px 0 24px;
    background: var(--tcm-cream);
}

.specialty-intro-desc {
    margin: 0 auto;
    text-align: center;

    p {
        font-size: 16px;
        line-height: 1.9;
        color: rgba(44, 36, 22, 0.78);
        margin: 0;
    }

    .specialty-intro-label {
        width: 100%;
        margin-top: 20px;
        font-size: 18px;
        font-weight: 500;
        color: var(--primary-color);
        letter-spacing: 0.06em;
        background-color: #ffffff;
        border: 1px solid var(--primary-color);
        padding: 12px;
    }
}

.section-header .section-title {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    font-size: 40px;
    line-height: 1.35;
}

/* 專科介紹區塊-end -- */

/* 專科板塊區-start -- */
.specialty-dept-section {
    padding: 24px 0 88px;
    background: var(--tcm-cream);
}

.specialty-dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.specialty-dept-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(44, 36, 22, 0.12);
    background: #fff;
    box-shadow: 0 2px 10px rgba(44, 36, 22, 0.06);
    transition: var(--transition);
    overflow: visible;
    scroll-margin-top: 100px;

    &:hover {
        transform: translateY(-6px);
        border-color: rgba(179, 32, 44, 0.25);
        box-shadow: var(--tcm-shadow);

        .specialty-dept-img img {
            transform: scale(1.06);
        }

        .specialty-dept-title {
            color: #ffffff;
            border-color: rgba(179, 32, 44, 0.4);
            box-shadow: 0 6px 18px rgba(179, 32, 44, 0.14);
            background-color: var(--primary-color);
        }
    }
}

/* 專科卡片頂部組合-start */
.specialty-dept-banner {
    position: relative;
    z-index: 2;
    padding-bottom: 28px;
    /* background: linear-gradient(165deg, #fff 0%, #faf5ef 52%, #f3ebe2 100%); */
    border-bottom: none;
    overflow: visible;

    &::before {
        content: '';
        position: absolute;
        top: -40px;
        left: -40px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(179, 32, 44, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    &::after {
        content: '';
        position: absolute;
        top: 12px;
        right: 12px;
        width: 56px;
        height: 56px;
        border-top: 2px solid rgba(201, 164, 92, 0.35);
        border-right: 2px solid rgba(201, 164, 92, 0.35);
        pointer-events: none;
    }
}

.specialty-dept-img {
    position: relative;
    z-index: 1;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: transparent;
    overflow: hidden;

    img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 8px 18px rgba(44, 36, 22, 0.1));
        transition: transform 0.45s ease;
    }
}

.specialty-dept-head {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    transform: translateY(50%);
    background: transparent;
    border: none;
    pointer-events: none;

    .specialty-dept-title {
        pointer-events: auto;
    }
}

.specialty-dept-title {
    display: inline-block;
    margin: 0;
    padding: 10px 34px;
    font-family: var(--family-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.12em;
    text-align: center;
    white-space: nowrap;
    /* background: linear-gradient(135deg, #faf0d4 0%, #edd9a6 50%, #e4c988 100%); */
    border: 1px solid var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 4px 14px rgba(44, 36, 22, 0.1);
    transition: var(--transition);
}

/* 專科卡片頂部組合-end */

.specialty-dept-list {
    position: relative;
    z-index: 1;
    flex: 1;
    margin: 0;
    margin-top: -2px;
    padding: 44px 24px 26px;
    list-style: none;
    background: linear-gradient(180deg, #fff9f9 0%, #fff 100%);
    border-top: 1px solid rgba(201, 164, 92, 0.18);
}

.specialty-dept-item {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(44, 36, 22, 0.1);

    &:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    &:first-child {
        padding-top: 0;
    }
}

.specialty-dept-link {
    display: inline-block;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;

    &::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 1px;
        height: 1px;
        background-color: currentColor;
        transform: scaleX(1);
        transform-origin: center center;
        transition: transform 0.35s ease;
    }

    &:hover {
        color: #8a1822;

        &::after {
            transform: scaleX(0);
        }
    }
}

.specialty-dept-desc {
    margin: 6px 0 0;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(44, 36, 22, 0.82);
}

/* 專科板塊區-end -- */