
.collection-newest,
.collection-archive {
    padding: 90px 0 0;
    max-width: 1280px;
    margin: 0 auto;
}
.page-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 54px;
    padding: 0 20px;
}
.page-header h1 {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 19px;
}
.page-header .page-link {
    font-size: 1.1rem;
    font-family: var(--third-font);
    margin-bottom: 0;
    line-height: 1;
}
.page-header .page-link > * {
    vertical-align: middle;
}

.archive-nav .categories {
    font-size: 1.1rem;
    font-family: var(--third-font);
    text-align: right;
}

.archive-nav .categories span {
    line-height: 1;
    display: block;
}
.archive-nav .categories span:after {
    content: "\e3d4";
    font-family: var(--icon-font);
    padding-left: .75em;
}
.archive-nav .categories span.is_open:after {
    content: "\e32a";
    font-family: var(--icon-font);
    padding-left: .75em;
}

.archive-nav .categories > div {
    display: none;
}

.archive-nav .categories ul {
    margin-bottom: 0;
    display: inline-block;
}
.archive-nav .categories ul li a {
    display: block;
    text-align: left;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
  justify-items: center;
}

.collection-card {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.article_inner {
    padding: 40px 20px 26px;
    text-align: center;
    /*flex: 1;*/
}
.article_inner a {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.article_inner .img_outer {
    line-height: 0;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.article_inner .img_outer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article_inner .title_wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex: 1;
}
.article_inner .collection-title {
    font-size: 3.0rem;
    font-weight: 600;
    margin-bottom: .2em;
    line-height: 1.1;
}
.collection-subtitle {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    letter-spacing: normal;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0;
    flex: 1;
}
.collection-brand {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 1.3em;
    line-height: 1;
    margin-bottom: 0;
}

.collection-meta {
    font-size: 1.2rem;
    letter-spacing: normal;
    font-weight: 400;
    display: flex;
    justify-content: center;
    gap: 10px;
    line-height: 1;
    align-items: center;
    margin-bottom: 0;
    margin-top: 1.5em;
}

.collection-meta .collection-type {
    border: .5px solid #1e1e1e;
    border-radius: 100vmax;
    padding: .35em 1.2em;

}

@media (min-width: 574px) {
      .collection-card {
        max-width: 390px;
    }
}

@media (min-width: 768px) {
    .collection-newest,
    .collection-archive {
        padding: 120px 30px 0;
    }

}

@media (min-width: 992px) {
    collection-newest,
    .collection-archive {
        padding: 150px 40px;
    }
    .page-header {
    
    margin-bottom: 105px;
}
    .collection-grid{
        grid-template-columns: repeat(2, 1fr);
        max-width: 880px;
        column-gap: 100px;
        row-gap: 80px;
        margin-left: auto;
        margin-right: auto;
    }

      .collection-card {
        min-height: auto;
    }
}


@media (min-width: 1200px) {
    
}



