/* 
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 */
.hero-news {
  padding: 48px 0;
  background: #f5f7fb;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 0 16px;
}
.hero-img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.hero-content { padding: 8px 0; }
.hero-title {
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
  margin: 0 0 14px;
  color: #113a8f; /* көгүш */
  font-weight: 800;
}
.hero-excerpt {
  color: #51607a;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
}
.hero-btn {
  display: inline-block;
  background: #0b45d1;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.hero-btn:hover { background: #0837a8; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(11,69,209,.25); }

/* Төмөнкү кичи карточкалар */
.hero-thumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.thumb-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .15s ease, transform .15s ease;
}
.thumb-item:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(16,24,40,.08); }
.thumb-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.thumb-title {
  font-size: 16px;
  line-height: 1.4;
  margin: 10px 12px 16px;
}
.thumb-title a {
  color: #0a214a;
  text-decoration: none;
}
.thumb-title a:hover { color: #0b45d1; }

/* Респонденттик көрүнүш */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-thumbs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-thumbs { grid-template-columns: 1fr; }
}



