.elementor-26207 .elementor-element.elementor-element-3309cc4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );text-transform:var( --e-global-typography-primary-text-transform );font-style:var( --e-global-typography-primary-font-style );text-decoration:var( --e-global-typography-primary-text-decoration );line-height:var( --e-global-typography-primary-line-height );letter-spacing:var( --e-global-typography-primary-letter-spacing );word-spacing:var( --e-global-typography-primary-word-spacing );color:var( --e-global-color-primary );}.elementor-26207 .elementor-element.elementor-element-694c5a8 .elementor-heading-title{color:var( --e-global-color-twbb_button_inv );}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );letter-spacing:var( --e-global-typography-primary-letter-spacing );word-spacing:var( --e-global-typography-primary-word-spacing );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );letter-spacing:var( --e-global-typography-primary-letter-spacing );word-spacing:var( --e-global-typography-primary-word-spacing );}.elementor-26207 .elementor-element.elementor-element-694c5a8 > .elementor-widget-container{margin:28px 0px 0px 0px;}.elementor-26207 .elementor-element.elementor-element-694c5a8{text-align:center;}}/* Start custom CSS for shortcode, class: .elementor-element-657d27b */.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 per row */
  gap: 20px;
  margin: 30px 0;
}
/* Tablet view: 2 per row */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile view: 1 per row */
@media (max-width: 767px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}


/* Individual card */
.card {
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
}

/* Image fixed size */
.card-img {
  width: 400px;
  height: 300px !important;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Title */
.card-title {
  font-size: 1.4rem !important;
  margin: 15px 0 15px 0px;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.3;
  min-height: 38px;
}

/* Description */
.card-desc {
  font-size: 0.8rem;
  color: #ccc;
  line-height: 1.4;
  margin: 0 0 12px;
  word-break: break-word;
  overflow-wrap: anywhere;
  flex-grow: 1; /* makes the button align to the bottom */
}

/* Button */
.card-link {
  margin-top: auto;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  background: #e60000;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: background 0.2s ease;
}
.card-link:hover {
  background: #990000;
}/* End custom CSS */