/* Typography */
h1 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 25px !important;
}
.text-block-14 a, .aaa-3 a {
    color: #fff !important;
}
.blog-head {
    font-size: 60px;
}
.nav-link {
    color: #000 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600 !important;
}
strong {
    font-weight: 600 !important;
}
.note {
    font-size: 14px !important;
}
.post-content p, .post-content li {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 17px;
}

/* Nav Button for Blog pages */
.appoint-btn.nav {
    color: #fff;
    text-align: center;
    letter-spacing: .3px;
    background-color: #364e4d;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    font-weight: 600;
    transition: all .325s;
    font-size: 16px;
}

.w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900;
}

/* Create Post Page CSS */
.create-post-container {
    width: 90%;
    margin: 0 auto;
}
.create-post-container input, .create-post-container textarea {
    border-radius: 5px;
    border: 2px solid #34484e;
    padding: 5px;
    margin-bottom: 25px;
    width: 100%;
}
.create-post-container input:read-only {
    background-color: #e0e0e0; 
    border: 2px solid #666;
}
label {
    font-family: 'Montserrat';
    font-weight: bold;
}
.create-btn {
    background-color: #364e4d !important;
    padding: 10px 25px;
    font-weight: 600;
    letter-spacing: .3px;
    color: #fff;
    border: 1px solid rgba(0,0,0,0) !important;
    border-radius: 10px;
    transition: .325s ease;
    text-decoration: none;
    margin-top: 25px;
}
.create-btn:hover {
    opacity: .67;
}
.success-message {
    display: none;
}
.success-message.show {
    display: block;
}

/* Posts Archives CSS */
.post-card {
    padding: 3em;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.25);
}
.blog-btn {
    background-color: #364e4d;
    padding: 19px 27px;
    font-weight: 600;
    letter-spacing: .3px;
    color: #fff;
    border: 1px solid rgba(0,0,0,0);
    border-radius: 10px;
    transition: .325s ease;
    text-decoration: none;
}
.blog-btn:hover {
    opacity: .67;
}

/* Individual Post CSS */
.bg-green {
    background-color: #34484e;
}
.post-head h1 {
    font-size: 48px;
}

.featured-image {
    max-width: 550px;
    float: left;
    margin-right: 2%;
}

@media screen and (max-width: 1080px) {
    .featured-image { max-width: 100% !important; margin-bottom: 2rem; }
}