#content {
  background: #f0f0f0;
  background: #fff;
}
.section.hero {
  padding: 75px 0 0;
}
.filter-area {
  display: flex;
  justify-content: space-between;
}
.filter {
  position: relative;
  width:300px;
}
.filter .loading {
    width: 20px;
    height: 20px;
    position: absolute;
    background: url(/wp-content/themes/archstonedigital/assets/images/loading.svg) center / 100%;
    top: 11px;
    right: -30px;
	opacity:0;
}
.filter .loading.active {
	opacity:1;
}
#filter {
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #aaa;
  cursor: pointer;
}
#filter:before {
  content: "";
  position: fixed;
  inset: 0;
  /* background: #000; */
  z-index: 3;
  display:none;
}
#filter.open:before {
  display:block;
}
#filter:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg) scale(0.7);
  right: 20px;
  top: 13px;
}
.filter-option {
  position: absolute;
  width: 100%;
  display: none;
  flex-flow: column;
  background: #edeff1;
  padding: 10px 0;
  z-index: 4;
  border-radius: 0 0 4px 4px;
}
#filter.open + .filter-option {
  display: flex;
}
.filter-option span {
  font-size: 16px;
  padding: 10px 20px;
  background: #edeff1;
  color: #000;
  transition: all 250ms ease;
  cursor: pointer;
}
.filter-option span:hover {
  background: #00509E;
  color: #fff;
}



#main-resource-list {
  display: flex;
  flex-flow: row wrap;
  gap: 32px;
  margin: 48px 0 0;
}
.singles {
  width: 416px;
  text-decoration: none;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 0 10px #ccc;
}
.singles .thumb {
  height: 192px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2841b2;
  overflow: hidden;
  border-radius: 7px 7px 0 0;
  position: relative;
  background-position: center;
  background-size: 100% auto;
  transition: all 350ms ease;
}
.singles:hover .thumb {
  background-size: 115% auto;
}
.singles .thumb[data-type="Guides"]{
  background-color: #3d8559;
}
.singles .thumb[data-type="Whitepapers"]{
  background-color: #4b5569;
}
.singles .thumb:before{
  content:"";
  position:absolute;
  inset:0;
  background: #2841b2a6;
  z-index:1;
}
.singles .thumb[data-type="Guides"]:before{
  background: #3d8559a6;
}
.singles .thumb[data-type="Whitepapers"]:before{
  background: #4b5569a6;
}
.singles .title {
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin: 20px;
}

.singles .desc {
  margin: 20px;
  font-size: 16px;
  max-height: 72px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-transform: uppercase;
}

.more {
  text-align: center;
  margin: 50px 0 0;
}
.more:has(button[style*="none"]){
  display:none;
}
.more .cta{
	position:relative;
}
.more .cta:after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    background: url(/wp-content/themes/archstonedigital/assets/images/loading.svg) center / 100%;
    top: 8px;
    right: -30px;
	opacity:0;
}
.more .cta.loading:after {
	opacity:1;
}
@media(max-width:1349px){
	.singles {
		width: calc(33.3% - 22px);
	}
  .section.hero {
    padding: 60px 0 0;
  }
}
@media(max-width:991px){
	.singles {
		width: 330px;
		max-width:100%;
		margin:0 auto;
	}
}
@media(max-width:767px){
	.filter-area {
		flex-flow: column;
		margin: 0 auto;
		width: 300px;
		gap: 20px;
	}
}