/* --------------------------------------  */
/* ## RESOURCE LIBRARY
/* --------------------------------------  */
.views-exposed-form.bef-exposed-form form#views-exposed-form-resources-block-1 { display: flex; padding-top: 2rem; }
.views-exposed-form.bef-exposed-form .isu-form-group { margin-right: 4rem; }

.isueo-grid--resource .card { text-align: start; }
.isueo-grid--resource .card-body { padding: 0.8rem; }
.isueo-grid--resource h3.card-title { margin-top: 0; margin-bottom: .3rem; font-size: clamp(1.1rem, 1.3vw, 1.4rem) !important; font-family: 'Merriweather', serif; }
.isueo-grid--resource .isueo-card-icon { display: inline-flex; font-size: 0.9rem; color: #676767; padding-bottom: .3rem; font-style: italic;}
.isueo-grid--resource .isueo-card-icon .fontawesome-icons { padding-right: .3rem;}
.isueo-grid--resource .card-body p {font-size: clamp(.7rem, 1vw, .95rem); }
.isueo-grid--resource .card-footer { padding: 0.8rem; }
.isueo-grid--resource .isueo-card-link { text-align: right; color: #7c2529; }

/* --------------------------------------  */
/* ## STAFF
/* --------------------------------------  */
.isueo-staff-author--body {
    max-width: 83%;
}
/* --------------------------------------  */
/*  RESOURCE VIEW AND SLIDE DRAWER
/* --------------------------------------  */
.resource-view-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.resource-group .views-row {
  border: 1px solid #f5f5f5;
}
.resource-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: background 0.15s;
  outline: none;
  width: 100%;
}
.resource-card:hover {
  background: #f5f5f5;
}
.resource-card:focus-visible {
  outline: 2px solid #7c2529;
  outline-offset: -2px;
}
.resource-card.is-active {
  background: #f5f5f5;
  border-left: 3px solid #7c2529;
  padding-left: 15px;
}
.resource-view-wrapper .views-field.views-field-nothing {
  display: flex;
  flex: 1;
}
.resource-view-wrapper .field-content {
  display: flex;
  flex: 1;
  align-items: center;
}
.resources-drawer-row-left {
  display: flex;
  gap: 2px;
  min-width: 0;
  flex-direction: column;
  flex: 1;
}
.resources-card-type {
  margin-bottom: .5rem;
}
.resource-group span.isueo-card-icon {
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  font-size: 0.8rem;
  color: #4a4a4a;
  align-items: center;
  gap: 5px;
  display: flex;
  font-family: 'Merriweather', serif;
}
.resources-drawer-title {
  font-weight: 600;
  color: #7c2529;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
span.drawer-row-arrow {
  flex-shrink: 0;
  color: #4a4a4a;
  transition: transform 0.2s, color 0.2s;
}
.resource-card.is-active span.drawer-row-arrow {
  transform: rotate(180deg);
  color: #7c2529;
}
.views-field-field-description,
.views-field-field-source,
.views-field-field-link-to-resource,
.views-field-field-upload-resource,
.views-field-field-taxonomy-icon,
.views-field-field-type {
  display: none;
}
.resource-group {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  min-height: 0;
  transition: min-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.resource-group__desc {
  margin-bottom: 2rem;
}
.resource-drawer-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 199;
  cursor: pointer;
}
.resource-drawer-overlay.is-visible {
  display: block;
}
.resource-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 360px;
  max-width: 40%;
  background: #fff;
  border: 1px solid #f5f5f5;
  z-index: 200;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.32s;
  overflow-y: auto;
}
.resource-drawer-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}
.resource-drawer-panel__inner {
  padding: 24px 20px 40px;
  position: relative;
}
.resource-drawer-panel__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: #4a4a4a;
  padding: 4px;
  line-height: 1;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-drawer-panel__close:hover {
  color: #7c2529;
  background: #f5f5f5;
}
.resource-panel-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4a4a4a;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f5f5f5;
  font-family: 'Merriweather', serif;
}
.resource-drawer-panel__type {
  margin-bottom: 10px;
}
.resource-drawer-panel__title {
  font-size: 1.05rem;
  color: #7c2529;
  line-height: 1.35;
  margin: 1.5rem 0 14px;
  padding-right: 28px;
}
.resource-drawer-panel__desc {
  font-size: 1rem;
  margin-bottom: 14px;
}
.resource-drawer-panel__source {
  font-size: 0.9rem;
  color: #676767;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f5f5f5;
}
.resource-drawer-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7c2529;
  text-decoration: none;
}
.resource-drawer-panel__link:hover {
  text-decoration: underline;
}
.rcd-upload-outer {
  display: none;
}
/* Contextual Links */
.resource-card-admin-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
  padding-left: 12px;
}
.resource-card-admin-link {
  color: #999;
  font-size: 13px;
  padding: 4px;
}
.resource-card-admin-link:hover {
  color: #c8102e;
}
.resource-card-admin-link--delete:hover {
  color: #c8102e;
}
/* ================================================================
   HORIZONTAL EVENT FEED
   ================================================================ */
div.program_offering_blocks {
  border-radius: 0px 0px 35px 0px;
  padding: 10px 31px 40px 10px;
  background-color: #fff;
}
.isu-horiz-events ul.program-offering-blocks {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 1em;
  padding: 0;
  list-style-type: none;
}

.isu-horiz-events li.event {
  box-shadow: 0.5625rem 0.5625rem 1.25rem rgb(0 0 0 / 20%);
  padding: 0;
  display: grid;
}
.isu-horiz-events div.event_date {
  height: 100%;
  background-color: #c8102e;
  line-height: 1.2;
  width: 82px;
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin: 0 12px 0 0;
  float: left;
  min-width: 50px;
  padding-right: 5px;
}
.isu-horiz-events span.event_month {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}
.isu-horiz-events span.event_day {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
  float: none;
  font-size: 1.6rem;
  display: block;
}
.isu-horiz-events div.event_title {
  display: block;
  line-height: 1.2;
  padding-top: 1em;
  font-size: clamp(.9rem, 1.1vw, .8rem);
  color: #c8102e;
  font-weight: 600;
}
.isu-horiz-events span.event_time {
  font-weight: normal;
  font-size: clamp(.8rem, 1.2vw, .8rem);
}
.isu-horiz-events span.event_ampm {
  font-size: clamp(.7rem, 1.1vw, .7rem);
  font-weight: normal;
  padding-left: 1px;
}
.isu-horiz-events div.event_register {
  margin-bottom: 1em;
  font-size: clamp(.9rem, 1.1vw, .8rem);
  font-weight: bold;
}
.program-offering-blocks footer a {
  font-weight: 700;
  line-height: 1.388;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  font-size: 1.125rem;
  align-items: center;
}
.program-offering-blocks footer a::after {
  content: '\f061';
  font-family: 'FontAwesome';
  transition: transform 0.3s ease;
  margin-left: 8px;
}
.program-offering-blocks footer a:hover::after {
  transform: translateX(4px);
}
/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 900px) {
  .resource-drawer-panel {
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .resource-drawer-panel {
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-top: 1px solid #7c2529;
    height: auto;
    max-height: 70%;
    top: auto;
    bottom: 0;
    right: 0;
    transform: translateY(100%);
  }
  .resource-drawer-panel.is-open {
    transform: translateY(0);
  }
  .resources-drawer-title {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .resources-drawer-row-left {
    gap: 4px;
  }
}