/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
.grid-container{
	max-width: 100% !important;
/* Ensure row uses flex layout */
.post-items {
  display: flex;
  flex-wrap: wrap;
}

/* Make all cards inside columns take full height */
.post-items .col-lg-4,
.post-items .col-md-6 {
  display: flex;
  flex-direction: column;
}

/* Force post card to fill column height */
.elementskit-post-image-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Make sure the content inside card expands fully */
.elementskit-post-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
 @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

  .custom-short-description,
  .custom-long-description {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.5;
    padding-right: 5px;
    padding-left: 5px;
  }

  .custom-long-description {
    margin-top: 10px;
    font-size: 15px;
    color: #000;
    font-style: normal; /* Remove italic */
	  font-weight: 600;
  }

  .custom-short-description {
    margin-top: 10px;
    font-size: 15px;
    color: #444;
    font-weight: 600;
  }

  .custom-short-description p,
  .custom-long-description p {
    margin: 0 0 0px;
  }

  /* Responsive Styling for Mobile */
  @media (max-width: 768px) {
    .custom-short-description {
      font-size: 14px;
    }

    .custom-long-description {
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .custom-short-description {
      font-size: 13px;
    }

    .custom-long-description {
      font-size: 12px;
    }
  }