
a {
    color: var(--color-links);
    text-decoration: none;
}

a:hover {
    color: var(--color-links-hover);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
}

#main {
    margin-top: 90px;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}

.section-header {
    border-bottom: 2px solid var(--color-black);
}
.section-header h2 {
    font-size: 50px;
    color: var(--color-black);
}
.section-header p {
    margin-bottom: 0;
}

section {
    scroll-margin-top: 70px;
}

.post-entry-1 {
    margin-bottom: 30px;
}
.post-entry-1 img {
    margin-bottom: 30px;
}
.post-entry-1 h2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    font-weight: 500;
}
.post-entry-1 h2 a {
    color: var(--color-black);
}
.post-entry-1.lg h2 {
    font-size: 40px;
    line-height: 1;
}

.post-meta {
    font-size: 11px;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(var(--color-black-rgb), 0.4);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .custom-border {
        border: none !important;
    }
}

.author .photo {
    margin-right: 10px;
}
.author .photo img {
    width: 40px;
    border-radius: 50%;
    margin-bottom: 0;
}
.author .name h3 {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: var(--font-secondary);
}


.post-entry-2 {
    margin-bottom: 30px;
}
.post-entry-2 .post-meta {
    font-size: 11px;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-secondary);
    color: rgba(var(--color-black-rgb), 0.4);
    margin-bottom: 10px;
}
.post-entry-2 .author {
    color: rgba(var(--color-black-rgb), 0.7);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}
.post-entry-2 .thumbnail {
    flex: 0 0 65%;
    margin-right: 25px;
    display: inline-block;
}
@media (max-width: 960px) {
    .post-entry-2 .thumbnail {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}
.post-entry-2.half .thumbnail {
    flex: 0 0 50%;
}
@media (max-width: 768px) {
    .post-entry-2.half .thumbnail {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}
.post-entry-2.small-img .thumbnail {
    flex: 0 0 30%;
}
@media (max-width: 768px) {
    .post-entry-2.small-img .thumbnail {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

.img-bg {
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center center;
}
@media (max-width: 768px) {
    .img-bg {
        height: 400px;
    }
}
.img-bg:before {
    position: absolute;
    content: "";
    background: black;
    background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.5;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    top: 0;
}