/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
.block-project-intro .project-intro-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .block-project-intro .project-intro-container {
    flex-direction: column;
  }
}
@media (min-width: 1537px) {
  .block-project-intro .project-intro-text {
    width: 60%;
  }
}
@media (min-width: 1025px) and (max-width: 1536px) {
  .block-project-intro .project-intro-text {
    width: 50%;
  }
}
@media (min-width: 1537px) {
  .block-project-intro .project-details {
    width: 40%;
    margin-top: -8rem;
  }
}
@media (min-width: 1025px) and (max-width: 1536px) {
  .block-project-intro .project-details {
    width: 50%;
    margin-top: -8rem;
  }
}
.block-project-intro .project-details .project-details-table {
  background: var(--wp--preset--color--light-grey);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-top: 1px solid var(--wp--preset--color--primary);
}
.block-project-intro .project-details .project-details-table .project-details-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--wp--preset--color--primary);
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.block-project-intro .project-details .project-files {
  display: flex;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--secondary);
  padding: 2.5rem;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 1rem;
}
@media (min-width: 1025px) and (max-width: 1536px) {
  .block-project-intro .project-details .project-files {
    padding: 1rem;
  }
}
.block-project-intro .project-details .project-files a {
  display: inline-flex;
  color: var(--wp--preset--color--secondary);
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  padding: 0.25rem 1rem;
  text-decoration: none;
}
.block-project-intro .project-details .project-files a:hover {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--primary);
}