/* 
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 */


.esep-filter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.esep-filter-form input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.esep-filter-form button {
  padding: 8px 14px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.esep-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .esep-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .esep-courses-grid {
    grid-template-columns: 1fr;
  }
}

.esep-course-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.esep-course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.esep-card-inner {
  padding: 16px;
}
.esep-card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.esep-card-meta span {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.esep-card-sessions ul {
  margin: 6px 0 0;
  padding-left: 18px;
}
.esep-card-sessions li {
  font-size: 0.9rem;
  color: #333;
}
.esep-card-action {
  margin-top: 12px;
  font-weight: bold;
  color: #0073aa;
}
