/*
Theme Name: Hub Child
Theme URI: http://hub.liquid-themes.com/
Author: Liquid Themes
Author URI: https://themeforest.net/user/liquidthemes
Template: hub
Description: Smart, Powerful and Unlimited Customizable WordPress Theme.
Version: 1.0
License: GNU General Public License
License URI: license.txt
Text Domain: hub-child
Tags: responsive, retina, rtl-language-support, blog, portfolio, custom-colors, live-editor
*/



/* Grid Layout */
.conference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(257px, 1fr));
  gap: 50px;
  justify-content: center;
  padding: 0;
}

/* Conference Card */
.conference-card {
  background: #F4F5F6;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20px;
}


/* Conference Image */
.conference-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.conference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Conference Content */
.conference-content {
  padding: 20px;
}

/* Date Label */
.conference-date {
    background-color: #FFFFFF;
  padding: 5px 12px 5px 12px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var( --e-global-color-secondary );
  border-radius: 60px 60px 60px 60px;
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  color: var( --e-global-color-secondary );
}

/* Title */
.conference-title a, .conference-title {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: var( --e-global-color-primary );
  margin-top: 20px;
  margin-bottom: 0;
}

/* Voir Plus Button */
.conference-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var( --e-global-color-primary );
    fill: var( --e-global-color-primary );
    gap: 6px;
}

.conference-footer {
  border-top: 1px solid rgba(47, 60, 73, 0.10);
  padding-top: 10px;
}

.load-more-conferences {
  display: block;
  padding: 12px 16px 12px 12px;
  border-radius: 750px;
  border: 1px solid rgba(47, 60, 73, 0.20);
  background: #FFF;
  color: var(--Primary, #2F3C49);
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px;
  margin: 80px auto 0 auto;
  max-width: 134px;
  width: 100%;
  
}

.load-more-conferences > div {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}