.resources-dropdown {
  min-width: 340px;
}

.resource-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.resource-description {
  font-size: 14px;
  line-height: 1.45;
}

.resource-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 7px;
  color: var(--skin);
  font: 700 18px/1 Arial, sans-serif;
}

.resource-discord::before { content: '◉'; }
.resource-book::before { content: '▣'; }

.resource-status::before {
  display: block;
  width: 13px;
  height: 13px;
  background: #48db7d;
  border: 2px solid #171311;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #48db7d;
  content: '';
}

@media (min-width: 801px) {
  .resources-menu:hover .resources-dropdown,
  .resources-menu:focus-within .resources-dropdown {
    display: grid;
  }

  .resources-menu:hover .resources-chevron,
  .resources-menu:focus-within .resources-chevron {
    transform: rotate(180deg);
  }
}

@media (max-width: 800px) {
  .resources-dropdown {
    position: fixed;
    top: 92px;
    right: 14px;
    width: min(280px, calc(100vw - 28px));
    min-width: 0;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }
}
