div.Module {
    background-color: white;
    --module-background: white;
}

.Influencer-Layout {
    display: grid;
    gap: var(--module-gap);
}

@media (min-width: 960px) {
    .Influencer-Layout {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }
}

.Influencer-Breadcrumb {
    margin-bottom: 30px;
}

.Influencer-Title {
    font-size: calc(var(--font-size-h3-h1) * 0.5);
    margin-bottom: 10px;
    text-wrap: balance;
}

.Influencer-Content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.Influencer-Sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

/* Organizer Widget */
.Organizer-Widget {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: #F4F9FC;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgb(var(--color-black) / 0.1);
}

.Organizer-Profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.Organizer-Avatar-Container {
    position: relative;
    display: inline-block;
}

.Organizer-Avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0E4D78;
}

.Host-Badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #0E4D78;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 12px;
    border: 2px solid #F4F9FC;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.Organizer-Stats {
    flex: 1;
    min-width: 280px;
}

.Organizer-Numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.Amount-Raised {
    font-weight: 800;
    font-size: 1.5rem;
    color: #0E4D78;
}

.Percentage {
    font-weight: 800;
    color: #0E4D78;
    font-size: 1.1rem;
}

/* Custom Progress */
.Organizer-Progress-Container {
    height: 12px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.Organizer-Progress-Bar {
    height: 100%;
    background: #3BB1E2;
    border-radius: 10px;
    width: 44.1%;
}

/* Hero Media */
.Hero-Media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.Hero-Media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Live-Badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FF0000;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.Live-Dot {
    display: block;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.Watching-Badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.Play-Button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    z-index: 2;
}

.Play-Button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.Play-Button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

.Join-Overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
}

/* Impact Grid */
.Impact-Grid-Container {
    background: rgb(var(--color-white));
    padding: 30px;
    border: 1px solid rgb(var(--color-black) / 0.1);
    border-radius: 16px;
}

.Impact-Header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.Impact-Grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.Impact-Cell {
    aspect-ratio: 1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.2s;
    position: relative;
}

.Impact-Cell:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 100;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: none;
}

.Impact-Cell:hover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #1a1a1a transparent transparent transparent;
    margin-bottom: -4px;
    z-index: 100;
    pointer-events: none;
}

.Impact-Cell.funded {
    background-color: #1F4B78;
    box-shadow: 0 2px 4px rgba(31, 75, 120, 0.2);
}

.Impact-Cell.needed {
    background-color: #F8F9FA;
    border: 1px solid #E9ECEF;
    color: #DEE2E6;
}

.Impact-Legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 0.9rem;
}

.Legend-Item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.Legend-Color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

/* Donation Sidebar */
.Donate-Widget {
    overflow: hidden;
    border: 1px solid rgb(var(--color-black) / 0.1);
    background: white;
    border-radius: 16px;
    border-top-left-radius: 40px;
}

.Donate-Header {
    background-color: rgb(var(--color-blue-light));
    color: rgb(var(--color-black-dark));
    padding: 16px 24px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 40px;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.Donate-Header-Content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 150px;
}

.Donate-Header-Icon {
    position: static;
    transform: none;
    padding: 10px;
    opacity: 1;
    width: 100px;
    height: auto;
    flex-shrink: 0;
}

.Donate-Body {
    background: white;
    padding: 24px;
}

.Donate-Choice {
    --columns: 2;
    margin-bottom: 30px;
}

.Donate-Custom {
    margin-bottom: 20px;
    position: relative;
}

.Donate-Custom-Prefix {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-weight: 600;
}

.Donate-Custom input {
    width: 100%;
    height: 48px;
    padding: 0 15px 0 30px;
    border: 1px solid rgb(var(--color-black) / 0.1);
    border-radius: 8px;
    font-size: 1rem;
}

.Donate-Btn {
    width: 100%;
    max-inline-size: 100%;
}

.Donate-Divider {
    height: 1px;
    background-color: rgb(var(--color-black) / 0.1);
    margin: 20px 0;
}

/* Beneficiary Cards */
.Beneficiary-Grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Updates */
.Update-Item {
    display: flex;
    gap: 15px;
    padding-bottom: 30px;
    border-left: 2px solid rgb(var(--color-black) / 0.1);
    padding-left: 30px;
    position: relative;
    margin-left: 24px;
}

.Update-Item:last-child {
    border-left: 2px solid transparent;
}

.Update-Avatar {
    position: absolute;
    left: -21px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid rgb(var(--color-white));
    object-fit: cover;
}

.Update-Content {
    background: rgb(var(--color-off-white));
    padding: 20px;
    border-radius: 12px;
    width: 100%;
}

.Update-Meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: rgb(var(--color-black-light));
}

/* Latest Donations */
.Donation-List {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Donation-Item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.Donation-Avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgb(var(--color-orange));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.Donation-Info {
    flex: 1;
    font-size: 0.9rem;
}

.Donation-Time {
    font-size: 0.8rem;
    color: rgb(var(--color-black-light));
}

/* Mobile Bottom Bar */
.Mobile-Donate-Bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(var(--color-white));
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.Mobile-Donate-Bar .Button {
    width: 100%;
    /* background: rgb(var(--color-orange));
    color: white;
    border-color: rgb(var(--color-orange)); */
}

@media (min-width: 960px) {
    .Mobile-Donate-Bar { display: none; }
}

.Mobile-Donate-Info {
    display: none;
}

.Mobile-Donate-Subtext {
    font-size: 0.8em;
    color: gray;
}

.Mobile-Donate-Btn {
    flex: 1;
}

.Section-Title--small {
    font-size: var(--font-size-h4);
    margin-bottom: 20px;
}

.Update-Link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.Avatar--grey {
    background: #ddd;
}

/* Typography & Utilities extracted from inline styles */
.Donation-Avatar--blue {
    background: rgb(var(--color-blue));
}

.Organizer-Label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4F4F4F;
    font-weight: 700;
}

.Organizer-Name {
    font-weight: 800;
    font-size: 1.2rem;
    color: #333;
}

.Amount-Raised-Subtext {
    font-weight: 400;
    color: #666;
    font-size: 0.7em;
}

.Hero-Media-Img {
    background: #333;
}

.Impact-Title {
    font-size: calc(var(--font-size-h3) * 0.5);
    margin: 0;
}

.Impact-Subtitle {
    font-size: 1.1rem;
    color: #4F4F4F;
    margin-top: 5px;
}

.Impact-Goal-Label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.Impact-Goal-Value {
    font-weight: 800;
    font-size: 1.5rem;
    color: #333;
}

.Beneficiary-Section {
    background-color: rgb(var(--color-off-white));
    padding: 40px 20px;
    border-radius: 16px;
}

.Beneficiary-Header {
    text-align: center;
    margin-bottom: 30px;
}

.Beneficiary-Title {
    font-size: var(--font-size-h3);
    margin-bottom: 10px;
}

.Donate-Title {
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.Donate-Subtitle {
    font-size: 0.85rem;
    margin: 0;
}

.Donate-Label {
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.Latest-Donations-Title {
    font-size: var(--font-size-h5);
    margin-bottom: 15px;
}

.Text--right {
    text-align: right;
}

.Text--blue {
    color: rgb(var(--color-blue));
}

.Text--highlight {
    color: #0E4D78; /* Dark blue similar to Donate-Header background */
    background: transparent;
    padding: 0;
    display: inline;
}

.Organizer-Avatar--padded {
    background: #ddd;
    padding: 5px;
}

.Bg--grey {
    background: #ddd;
}

/* Sticky Bar */
.Influencer-Sticky-Bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding: 20px 20px;
}

.Influencer-Sticky-Bar.is-visible {
    transform: translateY(0);
}

.Sticky-Bar-Content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Sticky-Bar-Host {
    display: flex;
    align-items: center;
    gap: 12px;
}

.Sticky-Bar-Avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.Sticky-Bar-Host-Info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.Sticky-Bar-Label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #666;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.Sticky-Bar-Name {
    font-weight: 800;
    color: #333;
    font-size: 0.9rem;
}

.Sticky-Bar-Stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.Sticky-Bar-Numbers {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.Sticky-Bar-Amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
}

.Sticky-Bar-Subtext {
    font-size: 0.8rem;
    color: #666;
}

.Sticky-Bar-Progress {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 200px;
}

.Sticky-Bar-Percentage {
    font-weight: 800;
    color: #0E4D78;
    font-size: 0.9rem;
}

.Sticky-Bar-Progress-Track {
    width: 100%;
    height: 6px;
    background: #E9ECEF;
    border-radius: 3px;
    overflow: hidden;
}

.Sticky-Bar-Progress-Fill {
    height: 100%;
    background: #3BB1E2;
    border-radius: 3px;
}

@media (max-width: 959px) {
    .Influencer-Sticky-Bar {
        display: block;
        padding: 12px 20px;
    }

    .Sticky-Bar-Host-Info {
        display: none;
    }

    .Sticky-Bar-Stats {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: 
            "numbers percentage" 
            "track track";
        width: 100%;
        gap: 6px;
        margin-left: 15px;
        min-width: 0;
    }

    .Sticky-Bar-Progress {
        display: contents;
    }

    .Sticky-Bar-Numbers {
        grid-area: numbers;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .Sticky-Bar-Amount {
        font-size: 1rem;
    }

    .Sticky-Bar-Percentage {
        grid-area: percentage;
    }

    .Sticky-Bar-Progress-Track {
        grid-area: track;
        width: 100%;
    }
}