/* Blur effect to a button */
.glass-button {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px); /* For Safari browser support */
}

/* Border radius to portfolio items */
.wpzoom-blocks_portfolio-block.layout-grid .wpzoom-blocks_portfolio-block_item-wrap {
    border-radius: 28px;
}

.wpzoom-blocks_portfolio-block .wpzoom-blocks_portfolio-block_item-wrap .wpzoom-blocks_portfolio-block_item-thumbnail {
    border-radius: 28px;
}


/* Remove author everywhere on single posts */
.single .byline,
.single .author-box,
.single .entry-author {
  display: none !important;
}

/* Remove separator and "on" before the date */
.single .posted-on::before,
.single .posted-on::after {
  content: none !important;
}

/* If the slash/on is coming from the whole meta line as text,
   hide all meta text and re-show only the date */
.single .entry-meta {
  font-size: 0 !important;
}

.single .entry-meta .posted-on,
.single .entry-meta .posted-on * {
  font-size: 14px !important; /* adjust if needed */
}

/* Hide author avatar explicitly */
.single .author-box img,
.single .avatar {
  display: none !important;
}

/* Remove all likely bottom author elements */
.single .author-box,
.single .author-info,
.single .entry-author,
.single .author-bio,
.single .post-author,
.single .author-description,
.single .author-title,
.single .author-name {
  display: none !important;
}



/* Hide ONLY wpzoom credit link */
.site-info a[href*="wpzoom"] {
    display: none !important;
}

/* Remove any leftover separator like "|" or "/" after hiding */
.site-info a[href*="wpzoom"]::before,
.site-info a[href*="wpzoom"]::after {
    display: none !important;
}
``
/* Hide WPZOOM link */
.site-info a[href*="wpzoom"] {
    display: none !important;
}

/* Hide loose footer text like "Inspiro Theme by" */
.site-info .copyright {
    font-size: 0 !important;
}

/* Re-add your copyright text */
.site-info .copyright::before {
    content: "Copyright © 2026 deduci";
    font-size: 14px !important;
}

/* Keep Privacy Policy visible */
.site-info .copyright a[href*="privacy"],
.site-info .copyright a[href*="Privacy"] {
    font-size: 14px !important;
}

/* Optional spacing between copyright and privacy link */
.site-info .copyright a[href*="privacy"]::before,
.site-info .copyright a[href*="Privacy"]::before {
    content: " | ";
}
