/* Table of Contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Header
- Options
- Section Listings
- Section Listings - Paged List CSS overrides
*/


/* Breakpoints
––––––––––––––––––––––––––––––––––––––––––––––––––
0-374		2 columns
375-639		6 columns
640-1023	12 columns
1024-1439	12 columns
1440+		12 columns

*/

@media (min-width: 375px) {}
@media (min-width: 640px) {}
@media (min-width: 800px) {}
@media (min-width: 1024px) {}
@media (min-width: 1440px) {}

@media (max-width: 374px) {}
@media (max-width: 639px) {}
@media (max-width: 799px) {}
@media (max-width: 1023px) {}
@media (max-width: 1439px) {}

/* Wordpress Admin Bar Height-Change Breakpoints
––––––––––––––––––––––––––––––––––––––––––––––––––
0-782		46px tall
783-...		32px tall

*/

/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section__post-date-archive__title {
	text-align: center;
}
.section__post-date-archive__title .container {
	padding-top: 3rem;
	padding-bottom: 0rem;
}
.post-date-archive__title {
	padding-bottom: 3rem;
	border-bottom: 1px solid #E5E5E5;
}

@media (min-width: 640px) {
	.section__post-date-archive__title .container {
		padding-top: 5rem;
	}
}

@media (min-width: 1024px) {
	.section__post-date-archive__title .container {
		padding-top: 7rem;
	}
}


/* Options
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section__post-date-archive__options {}
.section__post-date-archive__options .container {
	padding-bottom: 0;
}
.post-date-archive__options {}
.post-date-archive__options__selects-wrapper {
	display: flex;
	width: 450px;
	max-width: 100%;
	margin: auto;
	justify-content: space-around;
}
.post-date-archive__options .bubble-selector {
	margin-top: 20px;
	display: none !important;
}

@media (min-width: 600px) {
	.post-date-archive__options .bubble-selector {
		display: flex !important;
	}
}

@media (min-width: 1024px) {
	.post-date-archive__options {
		display: flex;
	}
	.post-date-archive__options__selects-wrapper {
		padding-top: 10px;
		width: 150px;
		margin: initial;
	}
	.post-date-archive__options .bubble-selector {
		width: calc(100% - 150px);
		margin-top: 0;
	}
}


/* Section Listings
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section__post-date-archive__listing .image-excerpt-listing-block__date {}

/* Section Listings - Paged List CSS overrides
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.post-date-archive__listing .paged-list {}
.post-date-archive__listing .paged-list__items {
	display: table;
	width: 100%;
}
.post-date-archive__listing .paged-list__item {
	display: table-row;
}
.post-date-archive__listing .paged-list__nav {
	display: flex;
	justify-content: center;
}
.post-date-archive__listing .paged-list__nav-pages {}
.post-date-archive__listing .paged-list__nav-page {}
.post-date-archive__listing .paged-list__nav-page__selected {}
.post-date-archive__listing .paged-list__nav__toggle-all {
	display: none;
}