/*------------------------------------------------------------------
resources.css
Last edited: 1/12/21
[Table of contents]

100. MEDIA QUERIES
    100a. EXTRA SMALL DEVICES (phones 576px and up)
    100b. SMALL DEVICES (tablets, 768px and up)
    100c. MEDIUM DEVICES (desktops, 992px and up)
    100d. LARGE DEVICES (large desktops, 1200px and up)
    100e. EXTRA LARGE DEVICES (large desktops, 1400px and up)

[Notes]


-------------------------------------------------------------------*/

.band-resources h2, .band-resources .view-more {
	text-align: center;
}
.band-resources h2 {
	margin: 0 0 22px;
}
.band-resources .resource-wrapper {
	display: block;
	margin: 0 auto 30px;
	max-width: 360px;
}
.band-resources .resource-thumb {
  	display: inline-block;
	margin: 0 0 15px;
  	position: relative;
}
.band-resources .resource-thumb::after {
	bottom: 0;
  	content: '';
	left: 0;
 	position: absolute;
  	right: 0;
  	top: 0;
	transition: box-shadow .3s ease;
	-webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
	-moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
  	box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
.band-resources a:hover .resource-thumb::after {
	-webkit-box-shadow: inset 0 0 0 10px rgba(255,255,255,.5);
	-moz-box-shadow: inset 0 0 0 10px rgba(255,255,255,.5);
  	box-shadow: inset 0 0 0 6px rgba(255,255,255,.5);
}
.band-resources .resource-thumb img {
	display: block;
	position: relative;
}
.band-resources a .resource-wrapper h3, 
.band-resources a .resource-wrapper p, 
.band-resources a .resource-wrapper span {
	color: #333333;
}
.band-resources a:hover, 
.band-resources a:active,
.band-resources a:focus,
.band-resources a:visited  {
	text-decoration: none;
} 
.band-resources a:hover .resource-wrapper h3 {
	color: #8bb929;
}
.band-resources .no-result {
	text-align: center;
}

/* add mobile CSS here */

/*------------------------------------------------------------------
100. MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
100a. EXTRA SMALL DEVICES (phones 576px and up)
-------------------------------------------------------------------*/
@media (min-width: 576px) {
    
}
/*------------------------------------------------------------------
100b. SMALL DEVICES (tablets, 768px and up)
-------------------------------------------------------------------*/
@media (min-width: 768px) {
.band-resources .resource-wrapper {
    max-width: none;
}   
}

/*------------------------------------------------------------------
100c. MEDIUM DEVICES (desktops, 992px and up)
-------------------------------------------------------------------*/
@media (min-width: 992px) {

}

/*------------------------------------------------------------------
100d. LARGE DEVICES (large desktops, 1200px and up)
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
	
}

/*------------------------------------------------------------------
100e. EXTRA LARGE DEVICES (large desktops, 1400px and up)
-------------------------------------------------------------------*/
@media screen and (min-width: 1450px) {
   
}