/*
 Theme Name:	Save The Tigris Foundation
 Theme URI:		https://savethetigris.org/
 Description:	A tweaked GeneratePress child theme developed for the Save The Tigris Foundation
 Author:		Nils Henrik
 Author URI:	https://fabrikat.es
 Template:		generatepress
 Version:		0.1
*/

/* Custom CSS */

body {
	background-color: var(--outside-container);
}

/* Site Wrapper to set overall site max width */
.site-wrapper {
	width: 100%;
	max-width: 1920px;
	background-color: var(--base);
	margin-inline: auto;
}

body {
	background-color: var(--outside-container);
}


/* HELPER CLASSES */

/* Standard Shadow(s) */

.shadow-standard {
	box-shadow: 0px 5px 16px -5px rgba(33, 33, 33, 0.2);
	transition: all .2s ease-in;
}

.shadow-standard:hover {
	box-shadow: 0px 8px 32px 0px rgba(33, 33, 33, 0.1);
}

/* Max Width(s) */
.max-width-1024 {
	max-width: 1024px;
}

.max-width-768 {
	max-width: 768px;
}

.max-width-640 {
	max-width: 640px;
}

.max-width-480 {
	max-width: 480px;
}

.max-65ch {
	max-width: 65ch;
}

/* Margin Auto */
.margin-auto {
	margin-left: auto;
	margin-right: auto;
}

/* Position Properties */
.relative {
	position: relative;
}

.absolute {
	position:absolute;
	top: 0px;
	left: 0px;
}

.sticky {
	position: sticky;
	top: 24px;
}

/* Image Aspect Ratios */
.aspect-1-1 img {
    aspect-ratio: 1/1;
	object-fit: cover;
}

.aspect-3-2 img {
    aspect-ratio: 3/2;
	object-fit: cover;
}

.aspect-2-3 img {
    aspect-ratio: 2/3;
	object-fit: cover;
}

.aspect-4-3 img {
    aspect-ratio: 4/3;
	object-fit: cover;
}

.aspect-3-4 img {
    aspect-ratio: 3/4;
	object-fit: cover;
}

.aspect-16-9 img {
    aspect-ratio: 16/9;
	object-fit: cover;
}

.gb-container p:last-child:last-of-type {
	margin-bottom: 0px;
}

/* Custom tweaks */
.paging-navigation {
	padding: 64px 0;
}
