/* =========================================================
   BLOG CATEGORY TITLES
   ========================================================= */

/* Beyond the Fence posts */
.category-beyond-the-fence .entry-title,
.category-beyond-the-fence .entry-title a {
    color: #035d91 !important;
    font-style: italic;
    font-weight: 700;
}

/* From the Farm posts */
.category-from-the-farm .entry-title,
.category-from-the-farm .entry-title a {
    color: #ac4d4d !important;
    font-style: italic;
    font-weight: 700;
}


/* =========================================================
   IMAGE BORDERS
   ========================================================= */

/* Darker, slightly thicker border around website images */
img:not(.emoji):not(.wp-smiley) {
    border: 2px solid #666666;
    box-sizing: border-box;
}


/* =========================================================
   BLOG POST SPACING
   ========================================================= */

/* Space below post dates */
.wp-block-post-date {
    margin-bottom: 14px;
}


/* =========================================================
   GENERAL PAGE WIDTH
   Applies to all regular pages except Field Notes
   ========================================================= */

/* Widen the main page container */
body.page:not(.page-id-2258) .site-content {
    width: 94% !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Allow regular-page content to use the full container width */
body.page:not(.page-id-2258) .content-area,
body.page:not(.page-id-2258) .site-main,
body.page:not(.page-id-2258) article,
body.page:not(.page-id-2258) .entry-content {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Preserve comfortable margins on phones */
@media screen and (max-width: 800px) {
    body.page:not(.page-id-2258) .site-content {
        width: 92% !important;
    }
}


/* =========================================================
   BUTTON BORDERS
   Applies throughout the website
   ========================================================= */

/* Thin dark border around all buttons */
.wp-block-button__link {
    border: 1px solid #2b2b2b !important;
    box-sizing: border-box;
}

/* Keep visited button text white by default */
.wp-block-button__link:visited {
    color: #ffffff !important;
}


/* =========================================================
   WRITING PAGE BUTTON TEXT
   Writing page ID: 3140
   ========================================================= */

/* Black button text normally and after a link has been visited */
body.page-id-3140 .wp-block-button__link,
body.page-id-3140 .wp-block-button__link:link,
body.page-id-3140 .wp-block-button__link:visited {
    color: #000000 !important;
}

/* White button text while hovering */
body.page-id-3140 .wp-block-button__link:hover {
    color: #ffffff !important;
}

/* Return button text to black after clicking or keyboard focus */
body.page-id-3140 .wp-block-button__link:active,
body.page-id-3140 .wp-block-button__link:focus {
    color: #000000 !important;
}/* =========================================================
   PASSWORD-PROTECTED PAGES
   ========================================================= */

/* Widen the white password-protected page panel */
article.post-password-required {
    width: 92% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Allow the title and content to use the full panel width */
article.post-password-required .entry-header,
article.post-password-required .entry-content {
    width: 100% !important;
    max-width: none !important;
}


/* =========================================================
   FIELD NOTES PAGE LAYOUT
   Field Notes page ID: 2258
   ========================================================= */

/* Main Field Notes post column */
body.page-id-2258 .content-area.primary {
    width: 68% !important;
    float: left !important;
}

/* Field Notes sidebar */
body.page-id-2258 .secondary.widget-area {
    width: 28% !important;
    float: right !important;
    clear: none !important;
    margin-top: 0 !important;
}

/* Stack the posts and sidebar vertically on smaller screens */
@media screen and (max-width: 800px) {
    body.page-id-2258 .content-area.primary,
    body.page-id-2258 .secondary.widget-area {
        width: 100% !important;
        float: none !important;
    }
}