/*!
Theme Name: Gainioz
Theme URI: https://weblearnbd.net/wp/gainioz
Author: Theme_Pure
Author URI: https://themeforest.net/user/theme_pure/portfolio
Description: Gainioz - Charity & Donation WordPress Theme
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: gainioz
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

.events-overview.container {
  padding: 60px 15px;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
  gap: 30px;
}

.event-card {
  display: flex;
  flex-direction: column;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); /* Elevated look */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.card-thumb {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.event-card h3 {
  font-size: 20px;
  margin: 15px 15px 5px;
  text-align: left;
  color: #0f537a;
}

.event-card time {
  margin: 0 15px 5px;
  font-size: 14px;
  color: #777;
  text-align: left;
  display: block;
}

.card-location {
  margin: 0 15px 15px;
  font-size: 14px;
  color: #f7a30f;
  text-align: left;
}




