/* My profile (ppm-*) */
.profile-page-minimal {
    display: grid;
    gap: 0.95rem;
    padding-bottom: 2rem;
}

.ppm-hero {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--white);
    border: 1px solid var(--lavender);
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
}

.ppm-hero__avatar {
    width: 92px;
    height: 92px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--lavender);
    flex-shrink: 0;
}

.ppm-hero__body { min-width: 0; flex: 1; }
.ppm-hero__body h1 { margin: 0 0 0.2rem; font-size: 1.35rem; color: var(--primary-dark); }
.ppm-hero__body p { margin: 0; font-size: 0.84rem; color: var(--text-muted); }

.ppm-section {
    background: var(--white);
    border: 1px solid var(--lavender);
    border-radius: var(--radius-md);
    padding: 0.9rem;
}

.ppm-section h2 { margin: 0 0 0.75rem; font-size: 1rem; color: var(--primary-dark); }

.ppm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 0.75rem;
}

.ppm-grid > div {
    border: 1px solid var(--lavender);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.6rem;
}

.ppm-grid label {
    display: block;
    margin: 0 0 0.2rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.ppm-grid span { display: block; font-size: 0.84rem; color: var(--text); line-height: 1.4; }

@media (max-width: 767.98px) {
    .ppm-grid { grid-template-columns: 1fr; }
}

/* Profile details v3 — matches profile-card listing style */
.page-profile-details .pd-profile {
    display: grid;
    gap: 1rem;
    padding-bottom: 2.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.pd-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pd-topbar__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem;
    background: #f8f6fc;
    border: 1px solid #e4e0ec;
    border-radius: 999px;
}

.pd-topbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 34px;
    padding: 0.35rem 0.75rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.pd-topbar-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.pd-topbar-btn--link {
    font-family: inherit;
}

.pd-topbar-btn--menu {
    min-width: 34px;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
}

.pd-more-dropdown {
    display: inline-flex;
}

.pd-more-menu {
    min-width: 11.5rem;
    padding: 0.35rem 0;
    border: 1px solid #e4e0ec;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(31, 21, 51, 0.12);
}

.pd-more-menu__item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
}

.pd-more-menu__item i {
    width: 1rem;
    text-align: center;
    opacity: 0.85;
}

.pd-more-menu__item--danger {
    color: #dc3545;
}

.pd-more-menu__item--danger:hover,
.pd-more-menu__item--danger:focus {
    color: #fff;
    background: #dc3545;
}

.pd-export-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.pd-export-btn--print {
    text-decoration: none;
}

body.pd-exporting {
    cursor: wait;
}

.pd-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    width: fit-content;
}

.pd-back:hover { color: var(--primary-dark); }

/* Print / PDF export page */
.page-profile-export-pdf .rishthe-navbar,
.page-profile-export-pdf .dash-subnav,
.page-profile-export-pdf .mobile-bottom-nav,
.page-profile-export-pdf footer {
    display: none !important;
}

.pd-print-doc {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.25rem 1rem 2rem;
}

.pd-print-doc__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e4e0ec;
}

.pd-print-doc__logo { height: 36px; width: auto; object-fit: contain; }
.pd-print-doc__meta { margin: 0; flex: 1; font-size: 0.82rem; color: var(--text-muted); }
.pd-print-doc__btn { margin-left: auto; }

.pd-print-hero {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.pd-print-hero__photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e4e0ec;
}

.pd-print-hero h1 { margin: 0 0 0.25rem; font-size: 1.35rem; }
.pd-print-hero__id { margin: 0; font-weight: 600; color: var(--primary); }

.pd-print-sections {
    display: grid;
    gap: 1rem;
}

.pd-print-sections .pd-section {
    border: 1px solid #e4e0ec;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    break-inside: avoid;
}

.pd-print-doc__foot {
    margin-top: 1.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e4e0ec;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

@media print {
    .no-print { display: none !important; }
    .page-profile-export-pdf body,
    .page-profile-export-pdf {
        background: #fff !important;
    }
    .pd-print-sections .pd-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

.pd-hero {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid #e4e0ec;
    box-shadow: 0 1px 3px rgba(31, 21, 51, 0.06);
}

.pd-hero .profile-card__divider {
    margin: 0;
    border-color: #e4e0ec;
}

.pd-hero .profile-card__details {
    margin: 0;
    flex: none;
}

.pd-hero .profile-card__meta-line {
    margin: 0;
}

.pd-hero__gallery {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

/* Profile detail — action bar */
.pd-action-bar {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #ebe8f0;
}

.pd-action-bar__primary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.pd-action-bar__primary--solo {
    grid-template-columns: minmax(0, 1fr);
}

.pd-action-bar__tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.pd-action-bar__tools .pd-act--tool {
    flex: 1 1 calc(33.333% - 0.3rem);
    min-width: calc(33.333% - 0.3rem);
    max-width: 100%;
}

.pd-act {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 46px;
    padding: 0.6rem 0.85rem;
    border-radius: 12px;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.pd-act:active:not(:disabled):not([hidden]) {
    transform: scale(0.98);
}

.pd-act__label {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-act--interest {
    background: linear-gradient(135deg, #e11d8f 0%, #9333ea 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.28);
}

.pd-act--interest:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.38);
    color: #fff;
}

.pd-act--interest:disabled,
.pd-act--interest.is-sent {
    background: #ece9f3;
    color: #7c7390;
    box-shadow: none;
    cursor: not-allowed;
}

.pd-act--withdraw {
    background: var(--white);
    color: var(--text-muted);
    border: 1.5px solid #dcd6e8;
}

.pd-act--withdraw:hover {
    background: #f8f6fc;
    color: var(--primary-dark);
    border-color: #c4b5d9;
}

.pd-act--message {
    background: var(--primary, #6b21a8);
    color: #fff;
    box-shadow: 0 4px 14px rgba(107, 33, 168, 0.22);
}

.pd-act--message:hover {
    background: var(--primary-dark, #581c87);
    color: #fff;
}

.pd-act--tool {
    flex-direction: column;
    gap: 0.25rem;
    min-height: 58px;
    padding: 0.5rem 0.35rem;
    background: #f8f6fc;
    color: var(--primary-dark);
    border: 1px solid #e4e0ec;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 10px;
}

.pd-act--tool i {
    font-size: 1rem;
    line-height: 1;
}

.pd-act--tool:hover:not(:disabled):not([hidden]) {
    background: var(--white);
    border-color: #cfc6de;
}

.pd-act--tool:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.pd-act--shortlist.is-shortlisted,
.pd-act--shortlist.active {
    background: var(--soft-lavender, #f3e8ff);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.pd-act--skip:disabled {
    background: #f3f4f6;
    color: #9ca3af;
}

.pd-act--danger {
    color: #b91c1c;
    background: #fef2f2;
    border-color: #fecaca;
}

.pd-act--danger:hover:not([hidden]) {
    background: #fee2e2;
    border-color: #fca5a5;
}

.pd-act--unblock {
    color: #166534;
    background: #ecfdf3;
    border-color: #bbf7d0;
}

.pd-act--unblock:hover:not([hidden]) {
    background: #dcfce7;
    border-color: #86efac;
}

.pd-act[hidden] {
    display: none !important;
}

.pd-action-bar__inform {
    width: 100%;
}

.pd-act--inform {
    width: 100%;
    background: var(--white);
    color: #7e22ce;
    border: 1.5px solid #c084fc;
    box-shadow: none;
}

.pd-act--inform:hover:not(:disabled):not(.is-done) {
    background: #faf5ff;
    color: #6b21a8;
    border-color: #a855f7;
}

.pd-act--inform.is-done,
.pd-act--inform:disabled.is-done {
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
    box-shadow: none;
}

.pd-inform-modal .modal-content {
    border: 1px solid #e4e0ec;
    border-radius: 14px;
    overflow: hidden;
}

.pd-inform-modal__lead {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pd-inform-modal__options {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    border: none;
}

.pd-inform-option {
    display: block;
    margin: 0;
    cursor: pointer;
}

.pd-inform-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pd-inform-option__box {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border: 1.5px solid #e4e0ec;
    border-radius: 10px;
    background: #fcfbfe;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.pd-inform-option__mark {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    border-radius: 50%;
    border: 2px solid #c4b5d9;
    background: var(--white);
    position: relative;
}

.pd-inform-option__mark::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.15s ease;
}

.pd-inform-option input:checked + .pd-inform-option__box {
    border-color: #9333ea;
    background: #faf5ff;
    box-shadow: 0 0 0 1px rgba(147, 51, 234, 0.15);
}

.pd-inform-option input:checked + .pd-inform-option__box .pd-inform-option__mark {
    border-color: #9333ea;
}

.pd-inform-option input:checked + .pd-inform-option__box .pd-inform-option__mark::after {
    background: #9333ea;
}

.pd-inform-option__text {
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--primary-dark);
}

.pd-inform-modal__note {
    margin-top: 1rem;
}

.pd-inform-modal__note .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.pd-inform-modal__footer {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pd-inform-modal__submit {
    min-width: min(100%, 180px);
}

.pd-hero__main-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #f5f0fc;
    border: 1px solid #e4e0ec;
    flex: none;
    max-width: none;
    min-width: 0;
}

.pd-photo--blur,
.pd-hero__main-wrap.pd-photo--blur .pd-hero__main,
.pd-hero__thumb.pd-photo--blur img,
.pd-photo--blur.w-100 {
    filter: blur(14px);
    transform: scale(1.04);
}

.pd-photo--hidden,
.pd-hero__main-wrap.pd-photo--hidden .pd-hero__main {
    object-fit: contain;
    background: var(--soft-bg, #f5f5f7);
}

.pd-photo-lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.35);
    color: var(--primary-dark);
    font-size: 1.5rem;
    pointer-events: none;
    z-index: 2;
}

.pd-photo-lock--blur {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.pd-photo-note {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pd-hero__main-wrap .profile-card__verified,
.pd-hero__main-wrap .pd-hero__verified {
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
    z-index: 3;
    pointer-events: none;
}

.pd-hero__main-wrap .profile-card__premium {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8c547, #c9a227);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    z-index: 3;
    pointer-events: none;
}

.pd-hero__main {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 420px;
    object-fit: cover;
    cursor: zoom-in;
}

.pd-hero__photo-count {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}

.pd-hero__thumbs {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
}

.pd-hero__thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: var(--soft-bg);
    cursor: pointer;
}

.pd-hero__thumb.is-active {
    border-color: var(--primary);
}

.pd-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-hero__info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.pd-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.pd-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.pd-badge--verified {
    background: #dbeafe;
    color: #1d4ed8;
}

.pd-badge--premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
}

.pd-badge--mine {
    background: #ede9fe;
    color: var(--primary-dark);
}

.pd-contact__note--own {
    margin-bottom: 0.75rem;
}

.pd-hero__name {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: var(--primary-dark);
    line-height: 1.2;
}

.pd-hero__meta {
    margin: 0;
}

.pd-presence {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.15rem 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pd-presence.is-online {
    color: #15803d;
}

.pd-presence__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ca3af;
    flex-shrink: 0;
}

.pd-presence.is-online .pd-presence__dot {
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}

.pd-presence__text {
    line-height: 1.3;
}

.pd-hero__facts {
    padding: 0;
}

.pd-alert {
    margin: 0.5rem 0 0;
    padding: 0.55rem 0.7rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    line-height: 1.4;
}

.pd-alert--blocked {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.pd-alert--blocked i {
    margin-top: 0.1rem;
}

.pd-sections {
    display: grid;
    gap: 0.85rem;
}

.pd-section {
    padding: 1rem;
    border: 1px solid #e4e0ec;
}

.pd-section__title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e4e0ec;
}

.pd-section__title i {
    color: var(--primary);
}

.pd-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.pd-table th,
.pd-table td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    vertical-align: top;
    border: 1px solid #e4e0ec;
    line-height: 1.45;
}

.pd-table th {
    width: 38%;
    max-width: 220px;
    font-weight: 600;
    color: var(--text-muted);
    background: #f8f6fc;
    font-size: 0.8rem;
}

.pd-table td {
    color: var(--text);
    background: var(--white);
    word-break: break-word;
}

.pd-table tbody tr:nth-child(even) th {
    background: #f3f0f9;
}

.pd-table tbody tr:nth-child(even) td {
    background: #fcfbfe;
}

.pd-contact__note {
    margin: 0 0 0.75rem;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.pd-contact__value {
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.pd-contact__value.is-revealed {
    letter-spacing: normal;
    color: var(--text);
}

.pd-contact__link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    word-break: break-all;
}

.pd-contact__link:hover {
    text-decoration: underline;
}

.pd-contact__link .fa-whatsapp {
    color: #25d366;
}

.pd-contact__reveal {
    margin-top: 0.85rem;
    width: 100%;
    max-width: 320px;
}

.pd-contact__reveal.is-shown {
    background: #ece9f3;
    color: #7c7390;
    box-shadow: none;
    cursor: default;
}

.pd-contact__hint {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.pd-empty {
    margin: 0;
    padding: 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    border: 1px dashed var(--lavender);
    border-radius: var(--radius-sm);
}

@media (max-width: 767.98px) {
    .pd-hero {
        grid-template-columns: 1fr;
    }

    .pd-hero__main {
        max-height: 360px;
        aspect-ratio: 1;
    }

    .pd-topbar-btn span {
        display: none;
    }

    .pd-topbar-btn {
        min-width: 38px;
        padding: 0.35rem 0.55rem;
    }

    .pd-action-bar {
        position: sticky;
        bottom: calc(var(--bottom-nav-height, 64px) + 0.5rem);
        z-index: 5;
        margin-top: 0.85rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(8px);
        border: 1px solid #e4e0ec;
        border-radius: 14px;
        box-shadow: 0 -4px 24px rgba(91, 31, 150, 0.14);
    }

    .pd-action-bar__tools {
        flex-wrap: nowrap;
    }

    .pd-action-bar__tools .pd-act--tool {
        flex: 1 1 0;
        min-width: 0;
    }

    .pd-act--tool {
        min-height: 54px;
        font-size: 0.68rem;
    }

    .page-profile-details .pd-profile {
        padding-bottom: calc(var(--bottom-nav-height, 64px) + 5.5rem);
    }
}

/* Profile detail — advertisement slider (one ad at a time) */
.rishthe-ad-slot--profile.rishthe-ad-slot--slider {
    margin-bottom: 0.85rem;
    background: var(--white);
    border: 1px solid var(--lavender);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.rishthe-ad-slot--profile .rishthe-ad-carousel {
    border-radius: var(--radius-md);
}

.rishthe-ad-slot--profile .rishthe-ad-carousel .carousel-inner,
.rishthe-ad-slot--profile .rishthe-ad-carousel .carousel-item,
.rishthe-ad-slot--profile .rishthe-ad-banner--slide {
    min-height: 120px;
    background: var(--soft-bg, #f8f6fc);
}

.rishthe-ad-slot--profile .rishthe-ad-banner--slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.rishthe-ad-slot--profile .rishthe-ad-banner--slide .rishthe-ad-banner__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    object-position: center center;
}

@media (min-width: 768px) {
    .rishthe-ad-slot--profile .rishthe-ad-carousel .carousel-inner,
    .rishthe-ad-slot--profile .rishthe-ad-carousel .carousel-item,
    .rishthe-ad-slot--profile .rishthe-ad-banner--slide {
        min-height: 140px;
    }

    .rishthe-ad-slot--profile .rishthe-ad-banner--slide .rishthe-ad-banner__img {
        max-height: 140px;
    }
}

.rishthe-ad-slot--profile .rishthe-ad-carousel__indicators {
    margin-bottom: 0.35rem;
}

.rishthe-ad-slot--profile .rishthe-ad-carousel__indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(123, 44, 191, 0.35);
    border: none;
    opacity: 1;
}

.rishthe-ad-slot--profile .rishthe-ad-carousel__indicators .active {
    background-color: var(--primary);
}

.rishthe-ad-slot--profile .rishthe-ad-carousel__control {
    width: 2.25rem;
    opacity: 0.85;
}

.rishthe-ad-slot--profile .rishthe-ad-carousel__control .carousel-control-prev-icon,
.rishthe-ad-slot--profile .rishthe-ad-carousel__control .carousel-control-next-icon {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
