.dc-doctor-showcase {
    display: grid;
    gap: 24px;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}

.dc-doctor-card {
    --dc-primary: #0a1f3e ;
    --dc-primary-dark: #183759 ;
    --dc-text: #0f172a;
    --dc-text-soft: #475569;
    --dc-border: #e2e8f0;
    --dc-bg: #ffffff;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--dc-border);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    box-shadow:
        0 12px 34px rgba(15, 23, 42, .06),
        0 2px 8px rgba(15, 23, 42, .03);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    max-width: 800px;
    margin: auto;
}

.dc-doctor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 118, 110, .22);
    box-shadow:
        0 24px 50px rgba(15, 23, 42, .10),
        0 8px 20px rgba(15, 118, 110, .08);
}

.dc-doctor-card__glow {
    position: absolute;
    right: -70px;
    top: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 90, 155, 0.14) 0%, rgba(20, 98, 201, 0) 70%);
    pointer-events: none;
}

.dc-doctor-card__head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px 0;
}

.dc-doctor-card__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dc-primary);
}

.dc-doctor-card__label {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--dc-text);
}

.dc-doctor-card__tag {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(15, 118, 110, .12);
    border-radius: 999px;
    background: rgba(15, 118, 110, .06);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--dc-primary);
    white-space: nowrap;
}

.dc-doctor-card__body {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 22px 24px 24px;
}

.dc-doctor-card__media {
    width: 100%;
}

.dc-doctor-card__image-link,
.dc-doctor-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 200px;
    border-radius: 22px;
    overflow: hidden;
}

.dc-doctor-card__image-link {
    position: relative;
    background: #eef2f7;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, .08),
        inset 0 0 0 1px rgba(255, 255, 255, .6);
}

.dc-doctor-card__image-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .5s ease;
}

.dc-doctor-card:hover .dc-doctor-card__image-link img {
    transform: scale(1.05);
}

.dc-doctor-card__placeholder {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, .12) 0%, rgba(14, 165, 233, .12) 100%);
    border: 1px solid rgba(15, 118, 110, .10);
    color: var(--dc-primary);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, .06),
        inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.dc-doctor-card__content {
    min-width: 0;
}

.dc-doctor-card__name {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--dc-text);
}

.dc-doctor-card__name a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 2px;
    transition: background-size .28s ease, color .28s ease;
}

.dc-doctor-card__name a:hover {
    color: var(--dc-primary);
    background-size: 100% 2px;
}

.dc-doctor-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.dc-doctor-card__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.dc-doctor-card__bio {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--dc-text-soft);
}

.dc-doctor-card__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.dc-doctor-card__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--dc-primary) 0%, #183759 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(15, 118, 110, .22);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}

.dc-doctor-card__button:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
    box-shadow: 0 16px 28px rgba(15, 118, 110, .28);
}

.dc-doctor-card__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 991px) {
    .dc-doctor-card__name {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .dc-doctor-showcase {
        gap: 18px;
        margin-top: 28px;
    }

    .dc-doctor-card {
        border-radius: 20px;
    }

    .dc-doctor-card__head {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px 0;
    }

    .dc-doctor-card__label {
        font-size: 18px;
    }

    .dc-doctor-card__body {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px 18px 20px;
    }

    .dc-doctor-card__image-link,
    .dc-doctor-card__placeholder {
        width: 100%;
        height: 100%;
        border-radius: 18px;
    }

    .dc-doctor-card__name {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .dc-doctor-card__bio {
        font-size: 14px;
        line-height: 1.75;
    }

    .dc-doctor-card__button {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 520px) {
    .dc-doctor-card__tag{
        position: absolute;
        right: 10px;
    }
    .dc-doctor-card:hover .dc-doctor-card__image-link img{
        transform: none;
        max-height: 320px;
    }
    .dc-doctor-showcase{
        padding: 15px;
    }
    
}