.resources-section {
  padding: 34px;
  display: flex;
  flex-direction: column;
  row-gap: 34px;
}

.resources-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resources-section__title {
  font-family: Radikal;
  font-weight: bold;
  font-size: 34px;
  letter-spacing: 0.25px;
  color: #E4FE00;
}

.resources-section__filter {
  background-color: black;
  border: 1px solid #3D3D3D;
  color: white;
  font-family: Poppins;
  border-radius: 8px;
  padding: 6px 16px;
}

.resources-section__description {
  font-family: Poppins;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: white;
  width: 90%;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  gap: 34px;
}

.resource-card {
  background-color: black;
  border: 1px solid #3D3D3D;
  cursor: pointer;
}

.resource-card__thumbnail {
  height: 180px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.resource-card-content {
  padding: 16px;
}

.resource-card-content__title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.25px;
  color: #E4FE00;
  text-transform: uppercase;
}

.resource-card-content__description {
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.25px;
  color: white;
}

.resources-section-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000B2;
  z-index: 1001;
}

.resources-section-modal__video-container {
  aspect-ratio: 16 / 9;
  width: 80%;
  position:relative;
}

.resources-section-modal__close-button {
  position: absolute;
  z-index: 1;
  width: 35px;
  height: 35px;
  top: 10px;
  right: 10px;
  background-color: #3D3D3D;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}

.resources-section-modal__video-player {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .resources-section-header {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
  }

}

