/**
 * Privezem — Custom CSS Overrides
 * Add any theme-specific overrides here.
 * Tailwind classes are in tailwind.css.
 */

/* WordPress-specific: admin bar offset */
.admin-bar #header {
    top: 32px;
}
.admin-bar main {
    padding-top: 12rem; /* 192px — header 60px + admin bar 32px + safe margin */
}

@media screen and (max-width: 782px) {
    .admin-bar #header {
        top: 46px;
    }
    .admin-bar main {
        padding-top: 13rem;
    }
}

/* Prose styling for blog posts */
.prose img {
    border-radius: 0.75rem;
}

.prose a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Custom logo in header */
.custom-logo {
    max-height: 40px;
    width: auto;
}
