:root {
    --std-black: #000000;
    --std-grey: #707070;
    --std-green: #458721;
    --std-creamy: #EEE6D7;

    --black-text: var(--std-black);
    --grey-text: var(--std-grey);
    --green-text: var(--std-green);
    --creamy-text: var(--std-creamy);

    --def-link: var(--black-text);
    --def-active-link: var(--green-text);
    --def-visited-link: #505050;

    --green-bg: var(--std-green);
    --creamy-bg: var(--std-creamy);

    --primary-button-bg: var(--green-bg);
    --primary-button-text: var(--creamy-text);
}

body {
    font-family: 'Rubik', sans-serif;
    font-weight: normal;
    font-size: 16px;

    /*line-height: 1.5em;*/

    color: var(--black-text);

    margin: 0;
    padding: 0;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; font-weight: 500; letter-spacing: -0.05rem; margin-top: 1.65em; margin-bottom: 1.5em;}
h3 { font-size: 1.5rem; font-weight: 500;}


.bigger-font-20 {
    font-size: 1.2rem;
}

.bigger-font-50 {
    font-size: 1.6rem;
}

p, .p { margin-top: 1em; margin-bottom: 1em; color: var(--grey-text); line-height: 1.5em; }
li { margin-top: 1em; margin-bottom: 1em; color: var(--grey-text); line-height: 1.5em; }

a { 
    /* font-size: 1rem;  */
    text-decoration: none; 
    color: var(--def-link); 
}
a:active, a:focus {
    outline: 1px solid var(--def-active-link);
}

a:visited {
    color: var(--dev-visited-link);
}


.mb-1-5 {
    margin-bottom: 1.5rem;
}


.condensed {
    letter-spacing: -1px; /* Tighter spacing for condensed look */
    transform: scaleX(0.8); /* Slight horizontal compression */
    transform-origin:center;
}


.normal-text {
    font-weight: normal;
}
.green-text-1, a.green-text-1:visited {
    color: var(--green-text);
}
.grey-text-1 {
    color: var(--grey-text);
}
.black-text-1, a.black-text-1:visited {
    color: var(--balack-text);
}
.creamy-text-1, a.creamy-text-1:visited {
    color: var(--creamy-text);
}
.color-green-bg {
    background-color: var(--green-bg);
}
.color-creamy-bg {
    background-color: var(--creamy-bg);
 }

.reduced-width {
    max-width: 1140px;
    margin-right: auto; margin-left: auto;
}

.reduced-width-more {
    max-width: 700px;
    margin-right: auto; margin-left: auto;
}

.align-center, .centered {
    text-align: center;
}
.primary-button-green, .button-a  {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
}

.primary-button-green, .button-a.color-green {
    background-color: var(--primary-button-bg);
    color: var(--primary-button-text);
}




.page-wrapper {
}
.header-space-bar {
    height: 2.5rem;
}
.nav-bar {
    padding-left: 0.5rem; padding-right: 0.5rem;
}
.nav-bar-inner {
    height: 3.125rem;
    padding-top: 1rem; padding-bottom: 1rem;
    margin-right: auto; margin-left: auto;

    display: flex;
    justify-content: space-between; align-items: center;
    max-width: 1140px;
}
.nav-bar-inner .logo-wrap>img {
    max-width: 100px;
}
.nav-bar-inner .top-nav-links a {
    font-weight: bold;
    margin-left: 1rem; margin-right: 1rem;
}

/* 2024-03-02 index.html specific sections moved to index.css */

.blog-container .post-list-item {
    max-width: 400px;
    margin-left: auto; margin-right: auto;
    padding-bottom: 6rem;
}

.blog-container .post-list-item .post-image a {
    height: 100%;
    display: inline-block;
}

.blog-container .post-list-item .post-image img {
    width: 100%;
    height: 500px;
    max-width: 400px;
    object-fit: cover;
    display: inline-block;
    max-height: 500px;
    overflow: hidden;
}

.blog-container .post-list-item .post-short-description img {
    display: none;
}

.blog-container .post-list-item  .post-info-wraper {
    display: flex;
    flex-direction: column;
}

.blog-container .post-list-item h2.mp-post-title {
    line-height: 2rem; font-size: 1.5rem; font-weight: 400; 
    /*max-height: 2rem; */
    /*overflow: hidden; */
    margin-bottom: 1rem;
}

.blog-container .post-list-item h2.mp-post-title a {
    line-height: 2rem; font-size: 1.5rem; font-weight: 400; color: var(--green-text);

}

.blog-container .post-list-item .mp-post-info,.blog-container .post-list-item .mp-post-info a {
    font-size: 0.7rem;
}
.blog-container .post-list-item .mp-post-info {
    align-self: flex-start;
    color: var(--grey-text);
}
.blog-container .post-list-item .mp-post-info a {
    color: var(--green-text);
}

.blog-container .post-list-item .post-short-description {
    max-height: 26rem; overflow: hidden;
}

.blog-container .post-list-item .post-short-description p {
    /*text-align: justify;*/
}


footer>div {
    padding-top: 12px; padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    margin-left: auto; margin-right:auto ;
}

footer .copyright {
    max-width: 360px;
}
footer .bottom-links {
    max-width: 710px;
    text-align: right;
}
footer .bottom-links a {
    margin-right: 0.25rem; margin-left: 0.25rem;
}
footer .bottom-links a:first-child {
    margin-left: 0;
}
footer .bottom-links a:last-child {
    margin-right: 0;
}


.mp-blog-icon:before {
    background-repeat: no-repeat;
    color: #999999;
    content: '';
    display: inline-flex;
    width: 12px;
    height: 12px;
    opacity: 50%;
    position: relative;
    top: 2px;
}

.mp-blog-calendar-times:before {
    background-image: url(i/blog-icons/calendar-times.svg);
}
.mp-blog-user:before {
    background-image: url(i/blog-icons/user.svg);
}
.mp-blog-traffic:before {
    background-image: url(i/blog-icons/eye.svg);
}


/* ---------------------------------------------------------------------------- 
 * blog-posts
 * ---------------------------------------------------------------------------- */
.blog-posts {
    margin-top: 6rem;
    max-width: 1068px;
    margin-left: auto; margin-right: auto;
}

.blog-posts .post-content, .blog-posts .post-short-description {
    max-width: calc(768px - 2rem); /*width(.blog-posts) - .post-image - 2rem */
}

.blog-posts .post-content img, .blog-posts .post-short-description img {
    max-width: 100%;
}

.blog-posts .post-item-wraper {
    margin-bottom: 8rem;
    display: flex;
}


.blog-posts .post-item-wraper h2 {
    margin-top: 0;
}


.blog-posts .mp-post-info {
    font-size: 0.8rem;
}
.blog-posts .post-image {
    margin-right: 2rem;
    width: 300px;
}

.blog-posts .post-image img {
    width: 300px;
}

.blog-post-more-link, .blog-posts .post-content a {
    text-transform: capitalize;
    color: var(--green-text);
    text-decoration: underline;
    font-size: 1rem;
}

.blog-post-more-link {
    margin-left: 1rem;
}

.blog-post-more-link:visited, .blog-posts .post-content a:visited {
    color: var(--green-text);
}

.blog-posts .pager-Links {
    max-width: 400px;
    margin-left: auto; margin-right: auto;
}

.blog-posts .pages  {
    padding-top: 5rem; margin-bottom: 5rem;
}

.blog-posts .pager-Links a {
    display: inline-block;
    padding: 1rem;
    width: 1.5rem;
    text-align: center;
    border-radius: 3rem;
    border: 1px solid var(--std-grey);
    color: var(--grey-text);
    margin-left: 0.5rem;
    margin-right: 0.5rem;

    
}

.blog-posts .pager-Links a.current {
    border: 1px solid var(--std-green);
    background-color: var(--green-bg);
    color: var(--creamy-text);
}


/* 2024-03-02 index.html specific sections moved to index.css */


@media screen and (max-width: 1166px ) {
    footer>div {
        flex-direction: column-reverse;
    }
    footer>div .bottom-links, footer>div .copyright {
        text-align: center;
        width: 100%;
        max-width: none;
    }
    footer>div .copyright {
        margin-top: 2rem;
    }
}

/* 2024-03-02 index.html specific sections moved to index.css */
@media screen and (max-width: 725px ) {
    footer>div .bottom-links a {
        display: block;
    }
}

@media screen and (max-width: 670px ) {
/* 2024-03-02 index.html specific sections moved to index.css */
    .blog-posts .post-item-wraper {
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
    }
    .blog-posts .post-info-wraper {
        margin-left: 1rem; margin-right: 1rem;
    }
    .blog-posts .post-content, .blog-posts .post-short-description {
        max-width: 100%; 
        margin-left: auto; margin-right: auto;
    }
    .blog-posts .post-image {
        margin-left: auto; margin-right: auto;
        width: unset;
        max-width: calc(100% - 2rem); 
        margin-bottom: 2rem;
    }        
}
