/**
 * MHRD public galleries
 */
	
	/* photo gallery */
	main > .content .RecExcite-pub-gallery {
		display: block;
		position: relative;
		width: 100%;
		
		text-align: left;
	}

		/* hide when no photos present */
		main > .content .RecExcite-pub-gallery:blank {
			display: none;
		}
		
			/* photo container */
			main > .content .RecExcite-pub-gallery > a {
				display: inline-block;
				position: relative;
				margin-top: 10px;
				
				overflow: hidden;
				opacity: .9;
				
				border: 2px solid rgba(100,50,115,.65);
			}
				/* hover on photo container */
				main:not(.is-mobile) > .content .RecExcite-pub-gallery > a:hover {
					border: 2px solid rgba(70,170,70,.65);
					opacity: 1;
					cursor: pointer;
				}
				
					/* photos */
					main > .content .RecExcite-pub-gallery > a > img {
						display: block;
						position: relative;
						width: 100%;
					}
			
			
				/* WIDE/DESKTOP VIEW */
			
				/* first photo container in wide view */
				main > .content aside.screen-wide > .RecExcite-pub-gallery > a:first-of-type {
					width: 100%;
					height: 225px;
				}
				
				/* additional photo containers in wide view */
				main > .content aside.screen-wide > .RecExcite-pub-gallery > a:not(:first-of-type) {
					margin-right: 10px;
					width: calc( 25% - 10px );
					height: 60px;
				}
				
				/* every 4th photo container in wide view */
				main > .content aside.screen-wide > .RecExcite-pub-gallery > a:nth-of-type(4n+1):not(:first-of-type) {
					margin-right: 0px;
					width: 25%;
				}