/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.home-news-section {
  width: 100%;
  padding: 0px;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
	column-gap:30px;
	
}

.home-news-item {
  border-top: 1px solid #000;
  padding-top: 10px;
}

.home-news-item h3 {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.home-news-item h3 a {
  color: #000;
  text-decoration: none;
}

.home-news-item p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  max-width: 95%;
	margin:0px;
}

@media (max-width: 768px) {
  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-news-section {
    padding: 0px;
  }
}


.news-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}