/* Hide the page title on the homepage */
.home .wp-block-post-title {
  display: none;
}
/* If your theme uses .entry-title instead: */
.home .entry-title {
  display: none;
}

/* Always show on desktop */
@media (min-width: 768px) {
  .social‑icons‑wrapper {
    display: block !important;
  }
}

/* Hide on tablet & mobile */
@media (max-width: 767px) {
  .social‑icons‑wrapper {
    display: none !important;
  }
}