/*
 * Theme Name:		GWT-Wordpress 27.0.0
 * Theme URI:		https://bit.ly/gwtversions
 * Description:		Custom WordPress theme based on the draft Unified Web Content Policy 
 *					prepared by the PCDSPO, DOST-ASTI, and DOST-ICTO. Theme is built on 
 *					HTML5 responsive WordPress framework based on ZURB's Foundation.
 * Version:			27.0.0v2
 * Author:			J.K. | GWHS Team
 * Author URI:		https://github.com/GOSD-DICT
 * License:			MIT License
 * License URI:		http://www.opensource.org/licenses/mit-license.php
 * Tags: 			theme-options, rtl-language-support, featured-images, editor-style, custom-menu, 
 *					responsive-layout, right-sidebar, left-sidebar, one-column, two-columns, three-columns
 */


 /** Your style here **/ 

#image-banner-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  /* Make the upper margin shorter (reduced padding-top) */
  /* You can also use 'margin-top' if it was originally a margin */
  padding-top: 5px; /* Adjust this value to your desired short margin */
  /* To make the *container* bigger, you might increase its overall size. */
  /* 'height' or 'max-height' can make it visually taller */
  /* 'width' or 'max-width' can make it visually wider */
  /* If you want it to fill the available width, you can use: */
  width: 100%; 
  /* If you want it taller, adjust this: */
  min-height: 250px; /* Example: Increased from the default image height */
}

#image-banner-container img {
  /* To make the *images* themselves bigger (increasing the max-height) */
  max-height: 300px; /* Increased from 200px to make images taller */
  width: auto;
  display: block;
}