/**
 * @file
 * program-landing panel layout
**/

.program-landing-content-row {
  padding: 1em;
}


.program-landing-content-region.left-region,
.program-landing-content-region.right-region {
  width: 50%;
}

.accomplishments-row .program-landing-content-region.left-region{
  width: calc(100% * 2 / 3);
}

.accomplishments-row .program-landing-content-region.right-region{
  width: calc(100% / 3);
}

.program-landing-content-region.left-region {
  float: left;
}

.program-landing-content-region.right-region {
  float: right;
}
/* iPhone [portrait + landscape] */
@media only screen and (max-width: 480px) {
  .program-landing-content-region.left-region,
  .program-landing-content-region.right-region {
    width: 100%;
    float: none;
  }
}
