.pu-insight-page-centre-section {
    position: relative;
    width: 100%;
    background-color: #F8F9FD;
    padding: 90px 0 100px;
}

.pu-insight-page-centre-header {
    margin-bottom: 36px;
}

.pu-insight-page-centre-kicker {
    font-family: var(--pu-insight-font-body);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--pu-insight-navy);
    display: block;
    margin-bottom: 8px;
}

.pu-insight-page-centre-header h2 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 52px;
    line-height: 1.12;
    color: var(--pu-insight-navy);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}

.pu-insight-page-text-purple {
    background: linear-gradient(90deg, #9C338A 0%, #5E3BA6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: inherit;
}

.pu-insight-page-centre-header p {
    font-family: var(--pu-insight-font-body);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.48;
    color: var(--pu-insight-text-body);
    max-width: 820px;
    margin: 0;
}

/* Info Badges Row */
.pu-insight-page-centre-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.pu-insight-page-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FFFFFF;
    color: var(--pu-insight-navy);
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(15, 4, 69, 0.05);
    border: 1px solid rgba(15, 4, 69, 0.08);
}

.pu-insight-page-info-badge svg {
    color: var(--pu-insight-navy);
    flex-shrink: 0;
}

/* Topic Tags Dynamic Flex-Wrap Grid */
.pu-insight-page-topics-wrapper {
    margin-bottom: 36px;
    width: 100%;
}

.pu-insight-page-topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
    align-items: center;
}

.pu-insight-page-topics-page {
    display: contents;
}

.pu-insight-page-topics-dots {
    display: none;
}

@keyframes puGradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.pu-insight-page-topic-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    border: 2px solid transparent;
    border-radius: 50px;
    background: 
        linear-gradient(#FFFFFF, #FFFFFF) padding-box, 
        linear-gradient(90deg, #B53C72 0%, #5641E0 100%) border-box;
    padding: 16px 36px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

/* Horizontal Left-to-Right Flowing Fill Overlay */
.pu-insight-page-topic-tag::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #B53C72 0%, #5641E0 50%, #B53C72 100%);
    background-size: 200% 100%;
    animation: puGradientFlow 3.5s linear infinite;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.pu-insight-page-topic-tag:hover::before {
    transform: scaleX(1);
}

.pu-insight-page-topic-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: inline-block;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: filter 0.3s ease;
}

.pu-insight-page-topic-tag span {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    background: linear-gradient(90deg, #B53C72 0%, #5641E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease, -webkit-text-fill-color 0.3s ease;
}

/* Hover State: White SVG Icon + White Text */
.pu-insight-page-topic-tag:hover .pu-insight-page-topic-icon {
    filter: brightness(0) invert(1);
}

.pu-insight-page-topic-tag:hover span {
    background: none;
    -webkit-background-clip: border-box;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
}

/* Arrange Visit Action Bar */
.pu-insight-page-visit-bar {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pu-insight-page-visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pu-insight-navy);
    color: #FFFFFF;
    font-family: var(--pu-insight-font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.pu-insight-page-visit-btn:hover {
    color: #FFFFFF;
    background-color: #10005F;
}

.pu-insight-page-visit-text {
    font-family: var(--pu-insight-font-body);
    font-weight: 400;
    font-size: 15px;
    color: var(--pu-insight-text-muted);
}

/* Dr. Dipal Patel Feature Card */
.pu-insight-page-doctor-card {
    position: relative;
    background-color: var(--pu-insight-navy);
    border-radius: 28px;
    padding: 50px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    color: #FFFFFF;
    box-shadow: 0 20px 50px rgba(15, 4, 69, 0.25);
    min-height: 480px;
}

.pu-insight-page-doctor-content {
    flex: 0 0 55%;
    max-width: 55%;
    z-index: 3;
    position: relative;
}

.pu-insight-page-quote-box {
    position: relative;
    border: 1.5px solid #FFFFFF;
    border-radius: 18px;
    padding: 34px 28px 24px;
    margin-top: 14px;
    margin-bottom: 28px;
    background-color: transparent;
}

.pu-insight-page-professional-badge {
    position: absolute;
    top: -16px;
    left: -2px;
    display: inline-block;
    background-color: var(--pu-insight-yellow);
    color: var(--pu-insight-navy);
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 7px 22px;
    border-radius: 50px;
    margin: 0;
    z-index: 3;
}

.pu-insight-page-quote-box p {
    font-family: var(--pu-insight-font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.48;
    color: #FFFFFF;
    margin: 0;
}

.pu-insight-page-doctor-meta h3 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    color: var(--pu-insight-yellow);
    margin-bottom: 8px;
}

.pu-insight-page-doctor-role {
    font-family: var(--pu-insight-font-body);
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-bottom: 18px;
}

.pu-insight-page-doctor-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px;
}

.pu-insight-page-doctor-footnote {
    font-family: var(--pu-insight-font-body);
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Right Media Block & Animated Ellipse Circle SVG */
.pu-insight-page-doctor-media {
    position: absolute;
    right: 0px;
    bottom: 0;
    top: 0;
    width: 440px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
}

.pu-insight-page-doctor-img {
    position: relative;
    height: 100%;
    max-height: 480px;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    z-index: 3;
    display: block;
}

/* Background Concentric Ellipse SVGs */
.pu-insight-page-doctor-ellipse-wrap {
    position: absolute;
    top: 70%;
    left: 54%;
    width: 703px;
    height: 703px;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -40%) scale(0.8);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.pu-insight-page-doctor-ellipse-wrap.pu-insight-page-ellipse-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.pu-insight-page-ellipse-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    pointer-events: none;
}

/* 1) Inner Ring: White SVG (391px) */
.pu-ellipse-inner {
    width: 391px;
    height: 391px;
    z-index: 3;
}

/* 2) Middle Ring: White SVG 2 (544px) */
.pu-ellipse-middle {
    width: 544px;
    height: 544px;
    z-index: 2;
}

/* 3) Outer Ring: White SVG 3 (703px) */
.pu-ellipse-outer {
    width: 703px;
    height: 703px;
    z-index: 1;
}

/* Responsive Mobile Layout for Centre Section (< 991.98px) */
@media (max-width: 991.98px) {
    .pu-insight-page-centre-section {
        padding: 50px 0 60px;
    }

    .pu-insight-page-centre-header {
        margin-bottom: 24px;
    }

    .pu-insight-page-centre-header h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .pu-insight-page-centre-header p {
        font-size: 15px;
        line-height: 1.45;
    }

    .pu-insight-page-centre-badges {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 28px;
    }

    .pu-insight-page-info-badge {
        width: 100%;
        justify-content: flex-start;
        font-size: 14px;
        padding: 12px 20px;
    }

    .pu-insight-page-topics-slider-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .pu-insight-page-topics-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        width: 100%;
    }

    .pu-insight-page-topics-grid::-webkit-scrollbar {
        display: none;
    }

    .pu-insight-page-topics-page {
        display: flex;
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: start;
        flex-direction: column;
        gap: 12px;
    }

    .pu-insight-page-topic-tag {
        font-size: 15px;
        padding: 12px 22px;
        width: 100%;
        justify-content: flex-start;
    }

    .pu-insight-page-topic-icon {
        width: 22px;
        height: 22px;
    }

    .pu-insight-page-topic-tag span {
        font-size: 15px;
    }

    .pu-insight-page-topics-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
        margin-bottom: 24px;
    }

    .pu-insight-page-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #D1D1D8;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .pu-insight-page-dot.active {
        width: 24px;
        border-radius: 50px;
        background-color: var(--pu-insight-yellow);
    }

    .pu-insight-page-visit-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 36px;
    }

    .pu-insight-page-doctor-card {
        position: relative;
        flex-direction: row;
        padding: 24px 18px;
        border-radius: 20px;
        min-height: 360px;
        overflow: hidden;
    }

    .pu-insight-page-doctor-content {
        flex: 0 0 60%;
        max-width: 60%;
        margin-bottom: 0;
        z-index: 3;
    }

    .pu-insight-page-quote-box {
        padding: 22px 14px 14px;
        border-radius: 14px;
        margin-top: 10px;
        margin-bottom: 16px;
        border: 1.5px solid #FFFFFF;
    }

    .pu-insight-page-professional-badge {
        font-size: 11px;
        padding: 4px 12px;
        top: -11px;
        left: -2px;
    }

    .pu-insight-page-quote-box p {
        font-size: 12.5px;
        line-height: 1.42;
    }

    .pu-insight-page-doctor-meta h3 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .pu-insight-page-doctor-role {
        font-size: 11px;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .pu-insight-page-doctor-divider {
        margin-bottom: 10px;
    }

    .pu-insight-page-doctor-footnote {
        font-size: 11px;
        line-height: 1.35;
    }

    .pu-insight-page-doctor-media {
        position: absolute;
        right: 0;
        bottom: 0;
        top: 0;
        width: 45%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        z-index: 2;
        pointer-events: none;
    }

    .pu-insight-page-doctor-img {
        position: relative;
        max-height: 240px;
        width: auto;
        object-fit: contain;
        object-position: bottom right;
        z-index: 3;
        display: block;
    }

    .pu-insight-page-doctor-ellipse-wrap {
        position: absolute;
        top: 55%;
        left: 80%;
        width: 360px;
        height: 360px;
        pointer-events: none;
        z-index: 1;
        transform: translate(-50%, -40%) scale(0.85);
        opacity: 0;
        transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
    }

    .pu-insight-page-doctor-ellipse-wrap.pu-insight-page-ellipse-active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    .pu-ellipse-inner { width: 200px; height: 200px; }
    .pu-ellipse-middle { width: 280px; height: 280px; }
    .pu-ellipse-outer { width: 360px; height: 360px; }
}

@media (max-width: 575.98px) {
	.pu-insight-page-centre-kicker{
		font-size: 20px;
	}
}
