/**
 * UCSB Icon — global styles for frontend and admin pages.
 *
 * Loaded on all pages via hook_page_attachments so icons
 * render correctly in content, previews, and admin views.
 */

.ucsb-icon {
  display: block;
  padding: 10px;
  box-sizing: border-box;
}

.ucsb-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.ucsb-icon a.ucsb-icon-lnk {
  display: block;
  border-bottom: none !important;
  text-decoration: none !important;
}

.ucsb-icon .ucsb-icon-lnk:hover svg {
  opacity: 0.5;
}

.ucsb-icon .ucsb-icon-inner {
  display: block;
}

/* Alignment */
.ucsb-icon.float-left {
  float: left;
}

.ucsb-icon.float-middle {
  margin-left: auto;
  margin-right: auto;
}

.ucsb-icon.float-right {
  float: right;
}
