@charset "UTF-8";

.card-header {
    background-color: #fff;
}

.content-edit-badge {
    position: absolute;
    margin-top: -1rem;
    font-size: .75rem;
    font-weight: normal;
    background: #ffa500;
    color: #fff;
    line-height: 1.2;
    text-transform: none;
    padding: 3px 8px;
    border-radius: 50px;
    letter-spacing: -.25px;
    text-decoration: none !important;
    display: none !important;
}

:hover > .content-edit-badge {
    display: inline-block !important;
}

@keyframes breathe {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.breathing {
    animation-name: breathe;
    animation-duration: var(--breath-duration, 1s);
    animation-delay: var(--breath-delay, 0s);
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.body-public {
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, .08), transparent 30%),
        radial-gradient(circle at top right, rgba(25, 135, 84, .07), transparent 28%),
        linear-gradient(180deg, #f8f9fa 0%, #eef2f7 100%);
    min-height: 100vh;
}

.public-shell-card {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 1.5rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.public-topbar {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(33, 37, 41, .08);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .04);
}

.public-nav-link {
    color: var(--bs-body-color);
    font-weight: 500;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.public-nav-link:hover,
.public-nav-link:focus {
    color: var(--bs-primary);
}

.public-hero-card {
    position: relative;
}

.public-hero-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -30% auto;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(13, 110, 253, .14), transparent 68%);
    pointer-events: none;
}

.public-highlight-panel {
    border-left: 1px solid rgba(13, 110, 253, .12);
    padding: .75rem 0 .75rem 1.5rem;
}

.public-stat-label {
    color: #6c757d;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: .35rem;
    text-transform: uppercase;
}

.public-stat-value {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.public-mini-pill {
    background: rgba(248, 249, 250, .95);
    border: 1px solid rgba(33, 37, 41, .08);
    border-radius: 999px;
    font-weight: 500;
    padding: .75rem 1rem;
}

.public-content-block {
    border-top: 1px solid rgba(33, 37, 41, .08);
}

.public-feature-card,
.public-action-card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(33, 37, 41, .08);
    border-radius: 1.25rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    padding: 1.75rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.public-action-card:hover,
.public-action-card:focus-within,
.public-feature-card:hover {
    border-color: rgba(13, 110, 253, .25);
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .09);
    transform: translateY(-2px);
}

.public-feature-icon {
    align-items: center;
    background: rgba(248, 249, 250, .95);
    border-radius: 1rem;
    display: inline-flex;
    font-size: 1.5rem;
    height: 3.5rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 3.5rem;
}

.public-footer-card {
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    color: #fff;
}

.public-footer-shell {
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 0;
}

.public-footer-link {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}

.public-footer-link:hover,
.public-footer-link:focus {
    color: #fff;
}

.pt-90 {
    padding-top: 6.5rem;
}

@media (max-width: 991px) {
    .public-nav-link {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .pt-90 {
        padding-top: 5.75rem;
    }

    .public-highlight-panel {
        border-left: 0;
        border-top: 1px solid rgba(13, 110, 253, .12);
        padding-left: 0;
        padding-top: 1.5rem;
    }
}
