a[role="menuitem"]:hover {
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  iframe {
    width: 90vw;
  }
}

.marketing-container {
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  font-family: system-ui, SF Pro Text;
}

.marketing-overlay {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  opacity: 0;
  background: linear-gradient(to right, #83838325, #3d3d3d);
}

.marketing-details {
  width: 75%;
  min-width: 185px;
  color: #fff;
}

.marketing-copy {
  font-size: 1.25em;
  line-height: 1.25em;
  text-overflow: ellipsis;
  font-weight: 500;
}

.marketing-overlay a {
  padding: 10px;
  padding-right: 55px;
  padding-left: 55px;
  border: solid #fbbc04 1px;
  width: 200px;
  border-radius: 25px;
  background-color: #fbbc04;
  color: #fff;
  font-family: system-ui, SF Pro Text;
  text-decoration: none;
  font-weight: 600;
}

.marketing-container:hover .marketing-overlay {
  opacity: 1;
}

.overlayFade {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #83838325, #3d3d3d);
}

.subscribe-cta-container {
  background-color: #fdd14b8a;
  padding: 1rem 2rem 2rem 2rem;
  border-radius: 1rem;
}

.subscribe-cta-text {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.subscribe-cta-form {
  display: flex;
  flex-direction: row;
  height: 3.5rem;
}

.subscribe-cta-form p {
  align-self: center;
  margin-left: 1rem;
  font-size: 0.9rem;
  color: #b4b4b4;
}

.subscribe-cta-input {
  border-width: 0;
  border-radius: 1.5rem;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.subscribe-cta-button {
  cursor: pointer;
  color: #fff;
  font-weight: 700;

  /* Sacra Yellow */
  background: #ffb61a;

  border-width: 0;
  border-radius: 1.5rem;
  padding: 0.5rem 1rem 0.5rem 1rem;
  margin-left: 1rem;
}

.subscribe-cta-button:disabled {
  background-color: #ffb61ab7 !important;
  cursor: not-allowed;
}

.subscribe-cta-button:focus {
  outline-width: 0;
}
.subscribe-cta-input:focus {
  outline-width: 0;
}

#grid-search:focus {
  outline-width: 0 !important;
}

@media (max-width: 768px){
  .subscribe-cta-form {
    flex-direction: column;
    gap: 1rem;
    height: auto;
  }

  .subscribe-cta-button {
    margin-left: 0;
  }
}