#series-tapestry div.text-block div#tapestry-Border{
    border: 30px solid transparent;

    /* 2. Use the shorthand property carefully, or define longhand after */
    border-image-source: url("../images/Border-Image-Two.webp");
    
    /* 3. This tells CSS how to 'cut' the corners and sides of your image */
    /* Since your image is a single icon, '33%' usually works well for grids */
    border-image-slice: 33%; 

    /* 4. This ensures the icon repeats rather than stretching into a blur */
    border-image-repeat: repeat;

    /* 5. Adjust the thickness of the border visually */
    border-image-width: 30px;
    background-image: url(../images/Stars-Background.webp);
    background-size: cover;
    background-repeat: none;
    background-position: top;
    height: auto;
    padding: 60px;
    margin-top: 20px;

}
.tapestry-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
}
.tapestry-entry{
  flex: 0 0 calc(33.333% - 40px); /* 3 columns, account for margins */
  max-width: calc(33.333% - 40px);
  margin: 20px;
}
@media (max-width: 720px){
  .tapestry-entry{
    flex: 0 0 calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
}
main #tapestry-border h3{
    text-align: center;
    margin: 20px;
    color: var(--secondary);
    text-shadow: -1px -1px 1px #000;
}
main #series-tapestry h3, main #series-tapestry h2{
    text-align: center;
}

