/* Contenedor del bloque */
.offer-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .offer-item:hover {
    transform: translateY(-5px);
  }
  
  /* Contenido textual */


  .offer-text {
    padding: 2rem 1.5rem 1rem;
    text-align: left;
  }
.site-energystoragetom .OurOffer, site-energystorage .OurOffer {padding:0;}

.site-energystoragetom  .offer-text a {
  position:relative;
	padding-left:20px;
}
.site-energystorage  .offer-text a {
  position:relative;
	padding-left:20px;
}

 .site-energystoragetom  .offer-text a:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 0%;
    top: 50%;
    bottom: 3px;
    transform: translateY(-50%) rotate(-135deg);
    border-left: 2px solid #22394A;
    border-bottom: 2px solid #22394A;
    transition: all 0.3s linear;
}
 .site-energystorage  .offer-text a:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    left: 0%;
    top: 50%;
    bottom: 3px;
    transform: translateY(-50%) rotate(-135deg);
    border-left: 2px solid #22394A;
    border-bottom: 2px solid #22394A;
    transition: all 0.3s linear;  
}

.site-energystoragetom  .offer-text a:hover:before {
    border-left: 2px solid #00C18A;
    border-bottom: 2px solid #00C18A;
    transition: all 0.3s linear;
}
.site-energystorage  .offer-text a:hover:before {
    border-left: 2px solid #00C18A;
    border-bottom: 2px solid #00C18A;
    transition: all 0.3s linear;
}
  
  .offer-text .pretitle {
    display: block;
    color: #00C18A;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .offer-text h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #00C18A;
    margin: 0 0 0.5rem;
    line-height: 1.3;
    min-height: 55px;
  }
  
  .offer-text a {
    font-size: 0.85rem;
    text-decoration: none;
    color: #222;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  /* Icono dentro del bloque */
  .offer-text .icon {
    margin-top: 1rem;
    height: 50px;
    width: auto;
  }
  
  /* Imagen inferior */
  .bottom-image {
    width: 100%;
    height: auto !important;
    display: block;
    object-fit: cover;
    margin-top: auto;
  }
  
  /* Asegurar mismo alto en columnas */
  .gb-layout-columns-5 .gb-block-layout-column-inner {
    height: 100%;
    display: flex;
  }
  
  .gb-layout-columns-5 .offer-item {
    height: 100%;
  }
  
  /* Responsive: stack en móvil */
  @media (max-width: 768px) {
    .gb-layout-columns-5 {
      grid-template-columns: 1fr !important;
    }
  
    .gb-layout-column {
      margin-bottom: 2rem;
    }
    .gb-layout-columns-5 .gb-block-layout-column-inner {
      flex-direction: column;
      flex-wrap: wrap;
    }
  }
