.core-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10050;
    background: rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.core-reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--primary, #0088cc);
    transition: width 120ms ease;
}

.core-cursor-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    border: 2px solid var(--primary, #0088cc);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-100px, -100px, 0);
    transition: opacity 160ms ease, transform 80ms ease;
    z-index: 10040;
}

.core-cursor-effect.is-visible {
    opacity: 0.75;
}

.core-cursor-effect.is-active {
    transform: translate3d(-100px, -100px, 0) scale(0.82);
}

.core-side-panel-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 10030;
    width: 42px;
    height: 42px;
    border: 0;
    color: #fff;
    background: #212529;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transform: translateY(-50%);
}

.core-side-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10035;
    width: min(320px, calc(100vw - 32px));
    height: 100vh;
    color: #212529;
    background: #fff;
    border-left: 1px solid #dee2e6;
    box-shadow: -12px 0 28px rgba(0, 0, 0, 0.14);
    transform: translateX(100%);
    transition: transform 180ms ease;
}

.core-side-panel.is-open {
    transform: translateX(0);
}

.core-side-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 18px;
    border-bottom: 1px solid #e9ecef;
}

.core-side-panel__header button {
    width: 34px;
    height: 34px;
    border: 0;
    color: #495057;
    background: transparent;
}

.core-side-panel__body {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
}

.core-side-panel__body a {
    display: block;
    padding: 10px 12px;
    color: #212529;
    border: 1px solid #e9ecef;
    text-decoration: none;
}

.core-side-panel__body a:hover,
.core-side-panel__body a:focus {
    color: var(--primary, #0088cc);
    border-color: var(--primary, #0088cc);
}

.core-gdpr-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10045;
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(520px, calc(100vw - 40px));
    padding: 16px;
    color: #212529;
    background: #fff;
    border: 1px solid #dee2e6;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.core-gdpr-banner p {
    margin: 4px 0 0;
}

.core-gdpr-banner.is-hidden {
    display: none;
}

@media (max-width: 575px) {
    .core-gdpr-banner {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
        align-items: flex-start;
        flex-direction: column;
    }
}

.core-site-gallery-grid {
    row-gap: 24px;
}

.core-site-gallery-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.core-site-gallery-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
