/* DT Social Sharing: deliberately distinct from footer Follow icons. */
.dtp-content-share {
    --dtp-share-navy: #0c2744;
    --dtp-share-gold: #d6aa45;
    --dtp-share-cream: #fffaf0;
    position: fixed;
    z-index: 99980;
    bottom: var(--dtp-share-bottom, 84px);
    display: none;
    font-family: inherit;
    color: #fff;
    transition: opacity .2s ease, transform .2s ease;
}
.dtp-content-share--left { left: 18px; }
.dtp-content-share--center { left: 50%; transform: translateX(-50%); }
.dtp-content-share--right { right: 18px; }
.dtp-content-share.is-footer-near { opacity: 0; pointer-events: none; transform: translateY(16px); }
.dtp-content-share--center.is-footer-near { transform: translate(-50%, 16px); }
@media (max-width: 767px) { .dtp-content-share[data-show-mobile="1"] { display: block; } }
@media (min-width: 768px) and (max-width: 1023px) { .dtp-content-share[data-show-tablet="1"] { display: block; } }
@media (min-width: 1024px) { .dtp-content-share[data-show-desktop="1"] { display: block; } }

.dtp-content-share__toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 10px 16px;
    border: 1px solid rgba(214, 170, 69, .9);
    border-radius: 999px;
    background: var(--dtp-share-navy);
    color: #fff;
    box-shadow: 0 12px 34px rgba(5, 20, 36, .28);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.dtp-content-share__toggle:hover,
.dtp-content-share__toggle:focus-visible { background: #143a61; border-color: #f1ca70; }
.dtp-content-share__toggle-icon { width: 21px; height: 21px; color: var(--dtp-share-gold); }
.dtp-content-share svg { display: block; width: 100%; height: 100%; }

.dtp-content-share__panel {
    width: min(94vw, 510px);
    padding: 13px;
    border: 1px solid rgba(214, 170, 69, .72);
    border-radius: 22px;
    background: rgba(12, 39, 68, .985);
    box-shadow: 0 18px 45px rgba(5, 20, 36, .34);
    backdrop-filter: blur(12px);
}
.dtp-content-share:not(.is-always-open) .dtp-content-share__panel { margin-top: 8px; }
.dtp-content-share__panel[hidden] { display: none !important; }
.dtp-content-share__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 2px 3px 11px; }
.dtp-content-share__head strong { display: block; font-size: 15px; color: #fff; }
.dtp-content-share__head small { display: block; margin-top: 2px; color: rgba(255,255,255,.68); font-size: 12px; }
.dtp-content-share__close { border: 0; background: transparent; color: #fff; font-size: 25px; line-height: 1; cursor: pointer; }
.dtp-content-share__actions { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.dtp-content-share__item {
    appearance: none;
    display: flex;
    min-width: 0;
    min-height: 76px;
    padding: 9px 5px 7px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    background: rgba(255,255,255,.055);
    color: #fff;
    font: inherit;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.dtp-content-share__item:hover,
.dtp-content-share__item:focus-visible { color: #fff; border-color: var(--dtp-share-gold); background: rgba(214,170,69,.13); transform: translateY(-1px); }
.dtp-content-share__icon { display: grid; place-items: center; width: 32px; height: 32px; padding: 6px; border-radius: 11px; background: var(--dtp-share-cream); color: var(--dtp-share-navy); }
.dtp-content-share__privacy { margin: 10px 3px 0; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.35; text-align: center; }
.dtp-content-share__toast { position: absolute; left: 50%; bottom: calc(100% + 9px); transform: translateX(-50%); width: max-content; max-width: 88vw; padding: 8px 12px; border-radius: 999px; background: #fff; color: var(--dtp-share-navy); box-shadow: 0 8px 25px rgba(0,0,0,.2); font-size: 12px; font-weight: 700; }
.dtp-content-share__toast[hidden] { display: none !important; }

@media (max-width: 620px) {
    .dtp-content-share--left { left: 10px; }
    .dtp-content-share--right { right: 10px; }
    .dtp-content-share--center { width: calc(100% - 20px); }
    .dtp-content-share--center .dtp-content-share__toggle { display: flex; margin-inline: auto; }
    .dtp-content-share__panel { width: 100%; padding: 11px; border-radius: 19px; }
    .dtp-content-share__actions { grid-template-columns: repeat(5, minmax(52px, 1fr)); gap: 5px; }
    .dtp-content-share__item { min-height: 70px; padding-inline: 2px; font-size: 10px; }
    .dtp-content-share__icon { width: 29px; height: 29px; }
}
@media (max-width: 380px) {
    .dtp-content-share__actions { grid-template-columns: repeat(3, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    .dtp-content-share, .dtp-content-share__item { transition: none !important; }
}
