#category .title h1 {
    font-size: 1.5em;
    margin: 0;
    padding: 0;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}


.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  .project-info {
    display: flex;
    gap: 16px;
  }
  
  .project-info .thumbnail {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .project-info .thumbnail img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: auto;
  }
  
  .project-info .info {
    width: 100%;
    align-self: center;  
  }
  
  .project-info .info h3 {
    font-size: 1.2em;
    margin: 0;
    padding: 0;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5em;
  }

  .contents {
    flex: 1 1;
    min-width: 65ch;
  }

  .side {
  }
}

.publications {
  ol {
    padding-left: 2em;
    list-style-type: decimal;

    li {
      margin: 1em 0;
      font-size: 14px;
    }
  }

  .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  
  .pagination button.page-select {
    border: 0;
    background: none;
    outline: none;
    padding: 0;
    min-height: 36px;
  }
  
  .pagination .page-select a {
    border: 0;
    background: rgba(0, 0, 0, .1);
    color: #000;
    padding: 8px 12px;
    border-radius: 8px;
  }
  
  .pagination .page-select:disabled:not(.current) a {
    opacity: 0.5;
  }
  
  .pagination .page-select.current a {
    background: var(--color-compass-bordeaux);
    color: #ffffff;
  }
  
  .pagination .page-select.page {
    aspect-ratio: 1;
    width: auto;
    box-sizing: border-box;
  }
  
}

.faq {
  .faq-entries {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;

    .faq-entry {
      background: #EEE;
      
      summary {
        padding: 1em;
        font-weight: bold;
        cursor: pointer;
        background: var(--color-compass-bordeaux);
        color: white;
      }

      .content {
        padding: 1em;
        margin: 0;
      }

      .content p:first-child {
        margin-top: 0;
      }

      .content p:last-child {
        margin-bottom: 0;
      }

      .content pre {
        border-radius: 8px;
      }
    }

    .faq-entry:first-child {
      border-radius: 8px 8px 0 0;
    }

    .faq-entry:last-child {
      border-radius: 0 0 8px 8px;
    }

    .faq-entry:first-child:last-child {
      border-radius: 8px;
    }

    .faq-entry + .faq-entry {
      border-top: 1px solid var(--color-compass-bordeaux);
    }
  }
}