/* 1. Standardise across Safari, Chrome, Firefox */
html {
    -webkit-text-size-adjust: 100%; /* Prevents Safari font-boosting */
    -moz-osx-font-smoothing: grayscale; /* Firefox specific smoothing */
    -webkit-font-smoothing: antialiased; /* Safari/Chrome smoothing */
    text-rendering: optimizeLegibility; /* Forces better kerning */
}

/* 2. Reset default browser margins/paddings that differ */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    /* Ensure the browser doesn't 'guess' the line height */
    line-height: 1.6; 
    /* Some browsers default to 'subpixel-antialiased' which looks thicker */
    -webkit-font-smoothing: antialiased;
}


/* ============================================================
   1. FONTS & ROOT VARIABLES
   ============================================================ */

@font-face{
	font-family:Avenir;
	font-style:normal;
	src:url(/wordpress/wp-content/themes/Cauchi/fonts/140829075332Avenir.woff) format('woff')
}

@font-face{
	font-family:'Avenir Medium';
	font-style:normal;
	src:url(/wordpress/wp-content/themes/Cauchi/fonts/140829092202Avenir_8.woff) format('woff')
}

@font-face{
	font-family:AGaramondPro-Regular;
	font-style:normal;
	src:url(/wordpress/wp-content/themes/Cauchi/fonts/AGPRegular.woff2) format('woff2')
}

:root {
    --wp--preset--color--black: #000000;
    --wp--preset--color--white: #ffffff;
    --wp--preset--font-size--normal: 16px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
    width: 100%;
	margin: 0;
	background: #fff;
    font: 13px AGaramondPro-Regular, sans-serif;
	font-weight: 400;
	font-variant-numeric: oldstyle-nums;
    line-height: 1.6;
	letter-spacing: .1em;
	color: #1a1a1a;
}


/* ============================================================
   2. GLOBAL BASE (Mobile-First / 0px - 850px)
   ============================================================ */
/*
.page-id-2035 {
	background: url(/die_wahrheit_install_v.jpg) no-repeat center center fixed; background-size: cover;
}
*/

/* --- LEVEL 1: CONTENT (Bottom) --- */
#primary, .entry-content, .wp-block-image {
    z-index: 1; 
}

/* --- LEVEL 2: BRANDING & META (Sides) --- */
#branding, 
.single-artwork .meta-title-date, 
.single-artwork .meta-details {
    z-index: 10; 
}

/* --- LEVEL 3: ARTWORK NAVIGATION (Interactive) --- */
#fullscreen-navigation {
    z-index: 20; 
}

.custom-arrow-cursor {
    z-index: 30; /* Must be above the nav blocks to be visible */
}

/* --- LEVEL 4: THE MENU OVERLAY (Full-screen) --- */
.fn-primary-nav {
    z-index: 80; /* Covers everything below it */
}

/* --- LEVEL 5: THE HAMBURGER (Top) --- */
.fn-header-controls, 
.fn-primary-nav-trigger {
    z-index: 90; /* Stays visible and clickable over the dark menu */
}

/* --- THE 'KILL-SWITCH' (When Menu is open) --- */
body.menu-open #fullscreen-navigation {
    z-index: -1 !important; /* Physically push it behind the page */
}

/* Apply your standard page padding/fonts to the 404 container */
.error404 #primary {
    padding-top: 80px; /* Same as your About/Contact fix */
    font-family: 'AGaramondPro-Regular', serif;
    color: #1a1a1a;
}

.error404 .entry-title {
    font-family: 'Avenir Medium', sans-serif;
    font-size: 18px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Fix those "Big Blue Links" */
.error404 a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}

/* FUTURE HOME CONTENT (Keep this) */
#home-content {
    position: relative;
    z-index: 5; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #1a1a1a;
    font-family: 'Avenir Medium', sans-serif;
}

#copyright {
	position: fixed;
	left: 20px;
	bottom: 20px;
}

a {
    text-decoration: none !important;
    color: #404040;
    transition: color 0.3s ease;
    outline: 0;
}

a:hover {
	color: #000;
	text-decoration: none !important;
}

.wp-caption { 
    position: static; 
    max-width: 100% !important; 
    margin: 0 auto 10px; 
}

.wp-caption .wp-caption-text {
	padding: 10px 20px;
	text-align: left;
}

.single-artwork .artwork-meta-container {
    display: block;
    text-align: center;
    margin: 15px auto;
    padding: 0 20px;
    font-family: AGaramondPro-Regular, serif !important;
}
/*
/* Force title/date and details onto separate lines on mobile */
.single-artwork .meta-title-date, 
.single-artwork .meta-details {
    display: block;
    margin: 5px 0;
}

/* On mobile: Medium and Size stay on ONE line */
.single-artwork .art-medium, 
.single-artwork .art-size {
    display: inline;
}

/* Add the automatic comma ONLY on mobile */
.single-artwork .art-size::before {
    content: ", ";
}

.single-artwork .art-title {
    font-style: italic;
    font-weight: normal;
}

.single-artwork .art-collection {
    display: block;
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}
/*
/* Container for all artwork metadata 
.single-artwork .artwork-meta-container {
    display: block;
    text-align: center;
    margin: 15px auto;
    padding: 0 20px;
    font-family: AGaramondPro-Regular, serif !important;
}

/* Force groups onto separate lines on mobile 
.single-artwork .meta-title-date, 
.single-artwork .meta-details {
    display: block;
    margin: 5px 0;
}

/* Specific styling for the Title on mobile (Italics) 
.single-artwork .art-title {
    font-style: italic;
    font-weight: normal;
}

/* Ensure secondary details stack clearly 
.single-artwork .art-collection {
    display: block;
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}
*/
img {
    height: auto; 
	max-width: 100%;
	display: block;
    pointer-events: none;
	-webkit-touch-callout: none;
}

/* --- 1. SMOOTH 0.6s FADE --- */
.entry-content img { 
    opacity: 1; 
    transition: opacity 0.6s ease-in-out; 
    color: transparent !important;
    text-indent: -9999px;
}

/* Instant hide when loading starts */
.entry-content.loading img { 
    opacity: 0 !important; 
    transition: opacity 0.6s ease-in-out !important; 
}
/*
.entry-content img { 
    opacity: 1; 
    transition: opacity 0.3s ease-in-out; 
    /* Remove text-indent for now to see if it's the cause*
    color: transparent !important;
}
*/
/* Ensure the image block has a layout */
.wp-block-image img {
    display: block;
    width: auto;
    height: 100% !important;
}
/*
.entry-content.loading img { 
    opacity: 0; 
}
*/

a[href$=".jpg"], a[href$=".jpeg"], a[href$=".png"], a[href$=".gif"] {
    pointer-events: none;
	cursor: default;
}

p {
	margin: 10px 0;
	padding-bottom: 10px;
	font-family: AGaramondPro-Regular !important;
	font-size: 14px;
}

h1, h2, h3 {
	font-family: 'Avenir Medium', sans-serif;
	font-weight: 400;
	margin: 15px 0;
}

h5 {
    font-size: 13px;
	font-weight: normal;
    margin: 30px 0;
    line-height: 20px;
    font-family: 'Avenir Medium';
    text-transform: uppercase;
}

#page {
	width: 100%;
	padding: 15px;
	overflow: hidden;
}

#main {
	padding-top: 64px/*10vh*/;
	width: 100%;
}

#content {
	margin: 20px 0;
	padding-bottom: 50px;
}

#branding {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 64px; 
	/*z-index: 10;*/
	display: flex;
	align-items: center;
	/*
	position: relfative;
	width: 100%;
	height: auto;
	z-index: 10;
	background: transparent;
	text-align: center;*/
}

.site-title {
    font-family: 'Avenir Medium', sans-serif;
	font-size: 1.3em/*1.2em*/; 
    text-transform: uppercase;
	letter-spacing: 0.2em;
	padding-left: 20px;/*padding: 20px 0;*/
}

.page-id-7 #branding, .page-id-5 #branding {
    background: #fff;
}

/* Hide Desktop UI on Mobile */
#access, #heading, #navigation, /*#fullscreen-navigation,*/ .mobile-caption, .back, .next, .counter {
	display: none; 
}
/*
#fullscreen-navigation  {
	position: fixed;
	left: 25%;
	top: 0px;
	right: 20px;
	bottom: 0px;
	z-index: 9999;
    pointer-events: none; /* Let clicks pass to children *
}

#fullscreen-next {
	height:100%;
	width:50%;
	float:right;
	display:block;
	/*cursor: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' style='fill:%23FFDE21;'%3E%3Ctext x='0' y='30' font-size='30'%3E→%3C/text%3E%3C/svg%3E"), auto !important;
	pointer-events: auto; /* Re-enable for the actual buttons *
}

#fullscreen-back {
	height:100%;
	width:50%;
	float:left;
	display:block;
	/*cursor: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' style='fill:%23FFDE21;'%3E%3Ctext x='0' y='30' font-size='30'%3E←%3C/text%3E%3C/svg%3E"), auto !important;
	pointer-events: auto; /* Re-enable for the actual buttons *
}

#fullscreen-next a, #fullscreen-back a {
	height:100%;
	width:100%;
	float:left;
	display:block;
	/*cursor: inherit;*
}
*/
/* Mobile Hamburger Overlay 
.fn-header {
	position: absolute;
	top: 0;
	right: 20px /*0*;
	height: 64px/*50px*;
	width: 40px/*50px*;
	display: flex;
	align-items: center;
	/*z-index: 100;*
}

.fn-primary-nav {
    position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 25;
    background-color: rgba(25, 25, 25, 1);
	text-align: center;
	padding: 20vh 0 !important;
    transform: translateY(-100%);
	transition: transform 0.4s;
	list-style: none;
}

.fn-primary-nav.is-visible {
	transform: translateY(0) !important;
}

.fn-primary-nav a {
	color: #bbb;
	font-size: 13px;
	letter-spacing: .25em;
	text-transform: uppercase;
}
*/
/* --- 1. THE TRIGGER (Fixed to Viewport) --- */
.fn-header-controls {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 60px;
    height: 64px;
    /*z-index: 9999;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
}

.fn-primary-nav-trigger {
    position: fixed !important; /* Ensure it stays put */
    right: 0;
    top: 0;
    height: 64px;
    width: 60px;
   /* z-index: 10000; /* Must be higher than the overlay */
    
    /* THE FIX: Makes the whole block clickable */
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Ensure the spans don't block the click from reaching the 'a' tag */
.fn-menu-icon {
    pointer-events: none; 
}

/* --- TWO-BAR HAMBURGER --- */
.fn-menu-icon {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: transparent !important; /* Hide the middle bar */
    transition: all 0.3s;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.fn-menu-icon::before, .fn-menu-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #404040; /* Your bar colour */
    left: 0;
    transition: all 0.3s;
}

/* Position the two bars 4px apart (adjust as needed) */
.fn-menu-icon::before { top: -4px; }
.fn-menu-icon::after { top: 4px; }

/* --- THE "X" TRANSFORMATION --- */
/* When clicked, they move to the center (top: 0) and rotate */
.fn-menu-icon.is-clicked::before { 
    top: 0; 
    transform: rotate(45deg); 
    background-color: #bbb; 
}
.fn-menu-icon.is-clicked::after { 
    top: 0; 
    transform: rotate(-45deg); 
    background-color: #bbb; 
}
/* --- 1. THE FULL-SCREEN OVERLAY --- */
.fn-primary-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(25, 25, 25, 0.98);
   /* z-index: 9000;
    
    /* Center the menu items */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    
    /* Animation: Slide down from top */
    transform: translateY(-100%) !important;
    transition: transform 0.4s ease-in-out;
    
    /* Reset any Desktop rotation */
    writing-mode: horizontal-tb !important;
}

.fn-primary-nav.is-visible {
    transform: translateY(0) !important;
}

/* --- 2. THE MENU ITEMS (Inside .fn-primary-nav) --- */
.fn-primary-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fn-primary-nav li {
    padding: 1vh 0; /* Vertical spacing based on screen height */
    transform: none !important; /* Ensure links aren't sideways */
}

.fn-primary-nav a {
    font-family: 'Avenir Medium', 'Avenir', sans-serif;
    font-size: clamp(13px, 1.5vw, 18px); /* Fluid size */
    letter-spacing: 0.25em;
    color: #bbb;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fn-primary-nav a:hover {
    color: #fff;
}

/* Three-bar icon using pseudo-elements *
.fn-menu-icon, .fn-menu-icon::before, .fn-menu-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #404040;
    transition: all 0.3s;
}

.fn-menu-icon::before { top: -6px; }
.fn-menu-icon::after { top: 6px; }
*/
/* The "X" Transformation when .is-clicked is added *
.fn-menu-icon.is-clicked { background-color: transparent !important; }
.fn-menu-icon.is-clicked::before { top: 0; transform: rotate(45deg); background-color: #bbb; }
.fn-menu-icon.is-clicked::after { top: 0; transform: rotate(-45deg); background-color: #bbb; }
*/
/* --- 2. THE FULL-SCREEN OVERLAY --- *
.fn-primary-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(25, 25, 25, 1);
    z-index: 9000;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
}

.fn-primary-nav.is-visible {
    transform: translateY(0) !important;
}

/* --- 3. UNIFIED MENU LINKS --- *
.fn-primary-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fn-primary-nav li {
	padding: 1em;
}

.fn-primary-nav a {
    font-family: 'Avenir Medium', sans-serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: #bbb;
    text-transform: uppercase;
    text-decoration: none;
}
*/
/* --- 3. UNIFIED MENU LINKS --- *
.fn-secondary-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fn-secondary-nav li {
    margin: 15px 0;
	padding: .5em;
}

.fn-secondary-nav a {
    font-family: 'Avenir Medium', sans-serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: #bbb;
    text-transform: uppercase;
    text-decoration: none;
}
*/


/* ============================================================
   3. DESKTOP ENHANCEMENTS (851px+)
   ============================================================ */

@media screen and (min-width: 851px) {

/* --- 1. FULLSCREEN NAV BASE --- */
#fullscreen-navigation {
    position: fixed;
    left: 65px;
    top: 0;
    right: 65px;
    bottom: 0;
    pointer-events: none;
    display: flex; /* Modern replacement for floats */
	justify-content: space-between;
}

#fullscreen-next, #fullscreen-back {
    height: 100%;
    width: 50%;
    cursor: none !important; 
    pointer-events: auto;
}

#fullscreen-next a, #fullscreen-back a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: none !important;
}

/* If the nav box is empty (no link), show the default arrow cursor */
#fullscreen-back:not(:has(a)), 
#fullscreen-next:not(:has(a)),
#fullscreen-back:empty, 
#fullscreen-next:empty {
    cursor: default !important;
    pointer-events: none; /* Stops the JS from trying to 'help' */
}

/* --- 2. THE INVERTING CURSOR --- */
.custom-arrow-cursor {
    position: fixed;
    pointer-events: none;
    width: 60px;
    height: 60px;
    mix-blend-mode: difference;
    color: white; 
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.custom-arrow-cursor.active {
    opacity: 1;
}

/* --- 3. MENU OPEN OVERRIDES --- */
/* When menu is open, hide the arrow and disable the navigation hit-box */
body.menu-open .custom-arrow-cursor {
    display: none !important;
}

body.menu-open #fullscreen-navigation {
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Open state for the menu overlay */
.fn-primary-nav.is-visible {
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/*
	/* --- THE INVERTING CURSOR --- *
.custom-arrow-cursor {
    position: fixed;
    pointer-events: none; /* Crucial: clicks must pass through to the links below *
    z-index: 99999;
    width: 60px;
    height: 60px;
    display: block /*none*;
    mix-blend-mode: difference;
    color: white; 
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    transform: translate(-50%, -50%); /* Centers the arrow on the mouse tip *
    transition: opacity 0.2s ease, transform 0.1s ease-out;
    opacity: 0;
	pointer-events: none;
}

/* Appear when hovering over nav areas *
.custom-arrow-cursor.active {
    display: block;
    /*opacity: 1;*/


/* Hide the browser's default pointer only in the nav areas. Apply to the containers that NEVER move *
#fullscreen-next, 
#fullscreen-back {
    cursor: none !important;
    pointer-events: auto;
}
/* Also apply to the links inside them *
#fullscreen-back a, 
#fullscreen-next a {
    cursor: none !important;
}
*/
	#page {
		padding: 0;
	}

	#branding {
	    position: fixed;
		height: 100%;
		width: 64px;
		right: 0;
		left: auto;
	    writing-mode: vertical-lr;
		transform: rotate(180deg);
		/*z-index: 10;*/
	    background: none;
		display: flex;
		align-items: flex-start;
	}

	.site-title {
		margin: 0;
		width: 100%;
		padding: 20px 0 20px 20px;
		text-align: left;
		font-size: 1.5em;
		letter-spacing: 0.2em;
		display: flex;
	}

	.site-title a.site-name {
        display: inline-block;
        line-height: 1; 
        padding: 0;
        color: #404040;
    }

	.fn-header {
        position: fixed;
        top: 0;
        right: 0;
        height: 64px; /* Matches #branding width */
        width: 64px; 
        display: flex;
        align-items: center;
        justify-content: center;
       /* z-index: 100;*/
    }

	/* Layout & Gallery Logic */
	#main {
		width: -webkit-fill-available;
		margin: 0;
	}

	#content {
		margin: 0;
		padding: 0;
	}

	#heading {
		position: fixed;
		left: 20px;
		bottom: 70px;
		display: block;
		font-weight: bold;
	}
    
	/* Image Handling */
	img {
		height: 100% !important;
		width: auto;
		object-fit: contain;
		margin: 0 auto;
		pointer-events: none;
	}

	.wp-caption {
		position: fixed;
		text-align: center;
		height: 75%;
		width: 100vw !important;
		top: 10%;
	}

	.wp-caption .wp-caption-text {
		position: fixed;
		left: 0;
		bottom: 0;
		text-align: left;
		width: 20%;
		top: auto;
		font-size: 13px;
	}
	
/*active but try without *	.single-artwork .entry-content img {
    	position: fixed;
    	top: 10%;
		left: 50%;
    	height: 75% !important;
		width: auto !important;
    	object-fit: contain;
    	transform: translateX(-50%);
    	margin: 0;
		z-index: 1;
	}
    /* 3. IMAGE FIX (Ensure CPT Image matches .wp-caption container) */
    .single-artwork .entry-content p,
    .single-artwork .entry-content p a {
        position: fixed !important;
        top: 10% !important;
        left: 0 !important;
        height: 75% !important;
        width: 100vw !important; /* Matched to .wp-caption */
        margin: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
        /*z-index: 1;*/
    }

    .single-artwork .entry-content img {
        height: 100% !important;
        width: auto !important;
        object-fit: contain;
    }
	/* Title and Date group */
.single-artwork .meta-title-date {
    position: fixed;
    margin: 0;
	left: 20px;
    bottom: 70px;
    display: inline-block;
    text-align: left;
    width: auto;
    font-size: 13px;
	font-style: normal;
    /*z-index: 100;*/
}

.single-artwork .art-title,
.single-artwork .art-date {
    font-style: normal;
    font-weight: bold;
}

/* Details group: Stacked on desktop */
.single-artwork .meta-details {
    position: fixed;
	margin: 0;
    left: 20px;
    bottom: 20px;
    display: block;
    text-align: left;
    width: 250px;
    font-size: 13px;
    color: #404040;
    /*z-index: 100;*/
    line-height: 1.6;
}

/* Force Medium and Size to stack and REMOVE the comma on desktop */
.single-artwork .art-medium, 
.single-artwork .art-size {
    display: block;
}

.single-artwork .art-size::before {
    content: ""; /* Hides the mobile comma */
}

.single-artwork .art-collection {
    position: fixed;
    left: 27px;
    bottom: -15px; /* Adjust if needed to sit below stacked size/medium */
    display: block;
}
/*this bit was green
	.single-artwork .meta-title-date {
	    position: fixed;
		left: 27px;
		bottom: 70px;
	    display: block;
		text-align: left;
		z-index: 100;
	}
*/
/*active 	.single-artwork .art-title {
		font-style: normal;
		font-weight: bold;
	}
/*his bit was green
	.single-artwork .meta-details {
	    position: fixed;
		left: 27px;
		bottom: 45px;
	    display: block;
		text-align: left;
		white-space: nowrap;
		z-index: 100;
	}
*/
/*active 	.single-artwork .art-collection {
	    position: fixed;
		left: 27px;
		bottom: 20px;
		display: block;
	}

	    /* active Group 1: Title and Date - Pinned to your Sidebar 
    .single-artwork .meta-title-date {
        position: fixed;
        left: 27px;
        bottom: 70px;
        display: inline-block;
        text-align: left;
        width: auto;
        font-size: 14px;
        z-index: 100;
    }

    /* active Group 2: Medium, Size, and Collection - Pinned Lower 
    .single-artwork .meta-details {
        position: fixed;
        left: 27px;
        bottom: 10px; /* Sits below the title 
        display: block;
        text-align: left;
        width: 250px;
        font-size: 13px;
        color: #404040;
        z-index: 100;
    }

    /* active Title styling for Desktop (Bold & Normal Style) 
    .single-artwork .art-title {
        font-style: normal;
        font-weight: bold;
    }

    /* this bit was greenNeutralize the existing caption styling if both exist
    .single-artwork .wp-caption-text {
        display: none !important;
    } */


    /* Target the Gutenberg Figure instead of P */
    .single-artwork .wp-block-image {
        position: fixed !important;
        top: 10% !important;
        left: 0 !important;
        width: 100vw !important;
        height: 75% !important;
        margin: 0 !important;
        display: flex;
        justify-content: center;
    }


	/* Nav Controls *
	.back {
		position: fixed;
		left: 30px;
		bottom: 2%;
		display: block;
	}

	.counter {
		position: fixed;
		left: 40px;
		bottom: 2%;
		display: block;
	}

	.next {
		position: fixed;
		left: 105px;
		bottom: 2%;
		display: block;
	}

	#fullscreen-navigation {
		display: block;
		position: fixed;
		left: 60px;
		top: 0;
		right: 60px;
		bottom: 0;
	}
*/
	/* Sidebar Navigation Links */
	#access {
		display: block;
		float: left;
		padding-left: 10px;
		margin: 0 0 0 10px;
	}

	#access li {
		float: none;
		list-style: none;
		margin-bottom: 5px;
	}

	#access a {
		color: #404040;
		padding: 0;
		display: block;
		line-height: 2;
		pointer-events: auto;
	}

	/* Page Specifics */
	.page-id-7 #main, .page-id-5 #main {
		padding-left: 25%;
		padding-right: 64px;
	}

	.page-id-7 .entry-content, .page-id-5 .entry-content {
		padding-top: 80px;
	}
    
	.page-id-7 #heading, .page-id-5 #heading {
		display: none;
	}

	/* Fade Gradient */
	.page-id-7 #fade-top { 
		position: fixed; top: 0; right: 0; width: 75%; height: 100px; 
    	background: linear-gradient(to bottom, rgba(236,236,234,1) 0%, rgba(236,236,234,0) 100%); 
	}

	/* Undo Mobile Nav */
	.nav-collapse, .nav-toggle {
		display: none !important;
		height: 0;
	}
}

/* ============================================================
   4. UTILITIES
   ============================================================ */

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
}