/* Media Queries Mixin
    Credits: http://www.impressivewebs.com/modular-css-media-queries-sass/
    Usage: @include media(MEDIA) { PROPRIEDADES }
*/

.hp--featured--row,
.hp--ideas--row {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.hp--featured--column,
.hp--ideas--column {
  display: table-cell;
}

@media only screen and (min-width: 768px) {
  .hp--featured--row,
  .hp--ideas--row {
    border-spacing: 50px 0;
  }
}