/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

@media only screen and (max-width: 768px) {
	/* Wrap Site Title for mobile */
	.has-inline-mobile-toggle .inside-header {
		flex-direction: column;
	}
	/* Centralize mobile navigation*/
	.mobile-menu-control-wrapper {
		margin-left: initial;
	}

	.nav-float-right #site-navigation {
		margin-left: initial;
	}
}

/* General */
h2 a {
	text-decoration: none;
}

/* Sticky top bar */
.top-bar {
	font-size: 17px;
	top: 0;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

.site-header {
	top: 65.5px;
}

.site {
	padding-top: 65.5px;
}

.site-header .header-image {
	min-width: 60px;
}

.separate-containers .inside-article {
	padding: 0;
}

.separate-containers .site-main {
    margin: 0;
}

.site-footer li.wp-social-link.wp-block-social-link {
    margin-bottom: unset;
}

/* Cards */

.card-3 {
	box-shadow: 0 4px 8px 0 var(--iron);
	transition: 0.3s;
	border-radius: 10px;
	padding: 15px;
	flex-direction: row;
}

.card-3:hover {
	box-shadow: 0 8px 16px 0 var(--iron);
}

/* Back to top */
.generate-back-to-top,
.generate-back-to-top:visited {
    bottom: 30px; /* 30px from the bottom of your screen */
    left: 30px; /* 30px from the left of your screen */
}

/* Highlight HTML anchor */
:target {
	background-color: var(--iron);
}

.featured-image {
	display: none;
}

/* Accordion */
.accordion-container {
    margin: 0 auto;
    border: 2px solid var(--cod-gray);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-container summary {
	background-color: var(--base);
    padding: 15px;
    text-align: left;
    border: none;
	display: flex;
	gap: 15px;
    justify-content: space-between;
    cursor: pointer;
	align-items: center;
}

.accordion-container :not(:first-child) summary {
    border-top: 2px solid var(--cod-gray);
}

.accordion-container .gb-container {
    padding: 15px;
}

.accordion-container summary::after {
	content: "+";
	transition: transform 0.3s;
}

.accordion-container details[open] summary::after {
	transform: rotate(45deg);
}

.ul-1 {
	display: table;
	margin: 0 auto;
	margin-bottom: 1.5em;
}

/* Change bullet list to star */
/* ul {
  list-style-image: url('/wp-content/uploads/star-solid.svg');
} */