/**
 * Plugin: Genesis Widgetized Archive
 *
 * @package    Genesis Widgetized Archive
 * @subpackage Frontend Styles - HTML5
 * @author     David Decker - DECKERWEB
 * @copyright  Copyright (c) 2013, David Decker - DECKERWEB
 * @license    http://www.opensource.org/licenses/gpl-license.php GPL-2.0+
 * @link       http://genesisthemes.de/en/wp-plugins/genesis-widgetized-archive/
 * @link       http://deckerweb.de/twitter
 *
 * @since	   1.2.0
 * @version	   1.2.0
 */

/* Table of Contents

* Column Classes
* Widgets in Archive Page content
* Responsive Design (Media Queries)

*/

/* Column Classes
------------------------------------------------------------ */

.gwat-columns.one-half,
.gwat-columns.one-third {
	float: left;
}

.gwat-columns.one-half {
	width: 48%; /* 558px / 1152px */
}

.gwat-columns.one-third {
	width: 31%; /* 360px / 1152px */
}

.gwat-columns.first {
	clear: both;
	margin-left: 0;
}


/* Widgets in Archive Page content
------------------------------------------------------------ */

/* More bottom space after each widget */
.content .widget-area,
.content .gwat-before-widgetized {
	margin-bottom: 40px;
}


/* Responsive Design (Media Queries)
------------------------------------------------------------ */

@media only screen and (max-width: 640px) {

	.gwat-columns.one-half,
	.gwat-columns.one-third {
		float: none;
		width: 100%;
	}

}