/** Shopify CDN: Minification failed

Line 394:34 Expected "*/" to terminate multi-line comment

**/
.aoc-article{
    position: relative;
}

.aoc-article::before {
    content: '';
    position: fixed;
    top: var(--header-height, 0);
    left: 0;
    width: 313px; /* set the size you want */
    height: 292px;
    background-image: url('/cdn/shop/files/Clam_Blue.svg');
    background-size: contain; /* or cover */
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

.aoc-article::after {
    content: '';
    position: fixed;
    top: var(--header-height, 0);
    right: 0;
    width: 300px; /* set the size you want */
    height: 332px;
    background-image: url('/cdn/shop/files/Starfish_Blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 0;
}

.aoc-article__wrapper{
    max-width: min(var(--page-width) - var(--page-margin) * 2,calc(100% - var(--page-margin) * 2));
    margin: 0 auto;
    position: relative;
    padding: 64px 0;
    display: grid;
    grid-template-columns: minmax(0, 427px) 1fr;
    column-gap: 64px;
    row-gap: 64px;
}

.aoc-article__sticky-image-ad{
    height: fit-content;
    position: sticky;
    --sticky-header-offset: var(--header-height);
    top: var(--sticky-header-offset, 0);
}

.aoc-article__content{
    position: relative;
    z-index: 1;
}

.aoc-article__image{
    max-width: 100%;
}

.aoc-article__image.for-mobile{
    display: none;
}

.aoc-article__ad{
    padding: 32px;
    margin: 32px 0 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.aoc-article__ad-heading{
    font-family: var(--font-heading--family);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin: 0 0 24px;
    position: relative;
}

.aoc-article__ad-subheading{
    font-family: var(--font-heading--family);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0 0 24px;
    position: relative;
    line-height: 100%;
}

.aoc-article__ad-button{
    font-family: var(--font-h2--family);
    font-weight: 400;
    padding: 12px 16px;
    line-height: 100%;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.aoc-article__ad-button .svg-wrapper{
    position: relative;
    top: 4px;
}

.aoc-article__back-link{
    font-family: var(--font-h2--family);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.aoc-article__back-link .svg-wrapper{
    transform: rotate(180deg);
    position: relative;
    top: 4px;
}

.aoc-article__title{
    font-family: var(--font-heading--family);
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: 1.4px;
    margin: 32px 0;
}

.aoc-article__body{
    font-size: 16px;
}

@media screen and (max-width: 1024px){
    .aoc-article__wrapper{
        grid-template-columns: 1fr;
    }
    
    .aoc-article__content{
        order: 1;
    }

    .aoc-article__image-wrapper{
        order: 2;
    }

    .aoc-article__image{
        display: none;
    }

    .aoc-article__image.for-mobile{
        display: block;
        max-width: 427px;
        margin: 0 auto 32px;
    }
}

@media screen and (max-width: 768px) {
    .aoc-article::before {
        width: 160px;
        height: 150px;
    }

    .aoc-article::after {
        width: 150px;
        height: 165px;
    }
}

@media screen and (max-width: 600px){
    .aoc-article__title{
        font-size: 36px;
    }
}

.aoc-coll-carousel{
    position: relative;
    z-index: 1
}

@media screen and (max-width: 320px) {
    .aoc-article::before {
        width: 110px;
        height: 105px;
    }

    .aoc-article::after {
        width: 105px;
        height: 115px;
    }
}

/*
*  RELATED ARTICLES
*/
.aoc-related-articles{
    position: relative;
    z-index: 1;
}

.aoc-related-articles__list-item-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}

.aoc-related-articles__wrapper{
    max-width: min(
        calc(var(--page-width) - var(--page-margin) * 2),
        calc(100% - var(--page-margin) * 2)
    );
    margin: 0 auto;
    padding: 64px 0;
}

.aoc-related-articles__wrapper .aoc-related-articles__heading *{
    font-size: 48px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    line-height: 100%;
    margin: 0;
}

.aoc-related-articles__wrapper .aoc-related-articles__heading{
    margin: 0 0 36px;
}

.aoc-related-articles__subheading{
    font-size: 15px;
    text-align: center;
    line-height: 22px;
    margin: 0 0 36px;
}

.aoc-related-articles__list {
  display: flex;
  flex-wrap: wrap;           
  gap: 64px 36px;                 
  justify-content: flex-start; 
}

.aoc-related-articles__list-item {
  flex: 1 1 calc(50% - 18px);
  max-width: 50%;
}

.aoc-related-articles__list-item:last-child:nth-child(odd) {
  margin-left: auto;
  margin-right: auto;
}

.aoc-related-articles__list-link{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    height: 100%;
}

.aoc-related-articles__accent{
    width: 64px;
    height: 4px;
    margin: 0 0 16px;
    display: block;
}

.aoc-related-articles__list-item-title{
    font-size: 28px;
    letter-spacing: 0.8px;
    margin: 0 0 32px;
    font-weight: 700;
}

.aoc-related-articles__list-item-excerpt{
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 32px;
}

.aoc-related-articles__list-item-image-wrapper {
  width: 100%;               
  aspect-ratio: 2 / 3;      
  overflow: hidden;           
  position: relative; 
  display: flex;
  align-items: center;
  height: 100%;
}

.aoc-related-articles__list-item-image-wrapper img.aoc-related-articles__list-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;    
  display: block;
  object-position: center; 
  transition: transform 0.3s ease;
}

.aoc-related-articles__list-read-more{
    font-weight: 400;
    font-family: var(--font-h2--family);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    width: fit-content;
}

.aoc-related-articles__list-read-more svg{
    position: relative;
    top: 4px;
}

.aoc-related-articles__list-read-more::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFA300;
    transition: width 0.3s ease-in-out;
}

.aoc-related-articles__list-item:hover .aoc-related-articles__list-read-more::before{
    width: 100%;
}

.aoc-related-articles__list-item:hover .aoc-related-articles__list-item-image{
    transform: scale(1.05);
}

.aoc-related-articles__button{
    display: block;
    line-height: 100%;
    font-family: var(--font-heading--family);
    padding: 12px 16px;
    font-size: 1rem;
    text-transform: uppercase;
    margin: 36px auto 0;
    width: fit-content;
}

.aoc-related-articles__button .button-text{
    position: relative;
    top: -2px;
    letter-spacing: 0.5px;
}

.aoc-related-articles__button .svg-wrapper{
    position: relative;
    top: 2px;
}

@media screen and (max-width: 1200px) and (min-width: 769px){
    .aoc-related-articles__list-link{
        grid-template-columns: 1fr;
        height: auto;
    }
}

@media screen and (max-width: 768px) {
  .aoc-related-articles__list-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .aoc-related-articles__list-item:last-child:nth-child(odd) {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 600px) {
    .aoc-related-articles__wrapper .aoc-related-articles__heading *{
        font-size: 36px;
    }

    .aoc-related-articles__list-link{
        grid-template-columns: 1fr;
        height: auto;
    }
}
/*
*   END OF RELATED ARTICLES STYLES