/* /assets/css/public/page/print/recipes/beverages/printgallonsizeunsweettea.css */

/* ------------> RECIPE GRID-CONTAINER STYLES <---------- */
#recipe.grid-container{   /* Recipe Global Grid Container Styles */
 display:grid;
 grid-template-columns:62.4% 37%;
 grid-template-rows:23% 19.5% 7.5% 48.5%;   
 grid-template-areas:
  'title img' /* 1st row */
  'ingredients equipment'  /* 2nd row */
  'prepreparation prepreparation'  /* 3rd row */
  'directions directions';  /* 4th row */
 grid-gap:4px;      
} 