:root {
    /* Accent color AC First */
    --ac1: #ffe600;
  
    /* Accent color AC Second */
    --ac2: rgba(0, 0, 0, 0.5);
  
    /* Accent color AC Third */
    --ac3: #6d6d6d;
  
    /* Accent color AC Fourth > Kids */ 
    --ac4: #116F9B;
  
    /* Accent color AC Fifth > Baby */ 
    --ac5: #1899D6;
  
    /* Accent color AC Sixth */ 
    --ac6: #C4C4C4;
  }

/* 

narrow - 736px

*/

/**
* General stylesheet
*/

body {
    margin: 0;
}

a {
    outline: none;
    text-decoration: none;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    margin: auto;
    max-width: 1140px;
    padding: 0 15px;
    position: relative;
}

/**
* Elements
**/

.load-more-wrap {
    text-align: center;
    margin: 60px 0 40px;
}

/* TODO - delelete news class */
.load-more, .load-more-news {
    border: 1px solid rgba(0, 0, 0, 0.25);
    font-family: Noah;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #323232;
    padding: 16px;
    cursor: pointer;
}

/**
* Entry header 
**/

.entry-header {
    display: flex;
    flex-direction: column;
    justify-content:left;
    align-items: start;
    max-width: 1290px;
    margin: 0 auto 64px;
}

@media (min-width: 736px) {
    .entry-header {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
}

.entry-header__thumb--narrow {
    max-width: 736px;
}

a.entry-header__cat {
    font-family: "Noah";
    font-size: 16px;
    line-height: 20px;
    color: var(--ac2);
    margin: 10px 0;
}

@media (min-width: 736px) {
    a.entry-header__cat {
        margin: 36px 0;
    }
}

.entry-header__title {
    font-family: "BlackerProDisplay";
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin: 0 0 10px;
}

@media (min-width: 736px) {
    .entry-header__title {
        font-size: 40px;
        max-width: 1290px;
        margin: 0 0 36px;
        line-height: 48px;
    }
}

.entry-header__desc {
    font-family: "BlackerProDisplay";
    font-size: 18px;
    font-weight: 200;
    line-height: 120%;
    letter-spacing: 0.015em;
    text-align: left;
}

@media (min-width: 736px) {
    .entry-header__desc {
        font-size: 24px;
        text-align: center;
    }
}

.entry-header__desc > p {
    margin: 0 0 18px;
}

.entry-header__date {
    font-size: 14px;
    font-family: "Noah";
    color: var(--ac2);
}

.social-share-buttons {
    margin: 45px auto 75px;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    padding-top: 0px;
    display: none;
}

@media (min-width: 736px) {
    .social-share-buttons {
        display: inline-block;
    }
}

/**
* Entry content
**/

.entry-content {
    font-family: "BlackerProText";
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    max-width: 736px;
    margin: 0 auto;
}

@media (min-width: 736px) {
    .entry-content {
        font-size: 20px;
        line-height: 28px; 
    }
}

/**
* News Archive
*/

.main-wrap--narrow {
    max-width: 736px;
    margin: 0 auto;
    padding: 0 16px
}

@media (min-width: 736px) {
    .main-wrap--narrow {
        padding: 0 32px;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
}

.news-grid__item {
    list-style-type: none;
}

.news-grid__item-entry-meta {
    color: var(--ac3);
    font-family: 'Noah';
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 11px;
}

.news-grid__item-title-link {
    color: #000;
    display: inline-block;
    font-family: 'BlackerProDisplay';
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.4;
    text-decoration: none;
    margin: 0 0 14px;
}

.news-grid__item-description > p {
    color: #000;
    display: inline-block;
    font-family: 'BlackerProDisplay';
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 8px;
}