/* Hero Cards Block Styles */
.wp-block-agropex-hero-cards {
  width: 100%;
}

/* Desktop and Tablet Grid Layout */
.wp-block-agropex-hero-cards .agropex-hero-cards__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

@media (min-width: 768px) {
  .wp-block-agropex-hero-cards .agropex-hero-cards__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .wp-block-agropex-hero-cards .agropex-hero-cards__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
  }
}

/* Hide slider on desktop/tablet */
@media (min-width: 768px) {
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-container {
    display: none !important;
  }
}

/* Mobile Slider Layout */
@media (max-width: 767px) {
  .wp-block-agropex-hero-cards .agropex-hero-cards__grid {
    display: none !important;
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-container {
    display: block !important;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-item {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-prev,
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    color: #333;
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-prev:hover,
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-next:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-prev {
    left: 10px;
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-next {
    right: 10px;
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .wp-block-agropex-hero-cards .agropex-hero-cards__slider-dot.active {
    background: #007cba;
    transform: scale(1.2);
  }
}

/* Card hover effects */
.wp-block-agropex-hero-cards .agropex-hero-cards__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wp-block-agropex-hero-cards .agropex-hero-cards__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Aspect ratio container */
.wp-block-agropex-hero-cards .agropex-hero-cards__card-aspect-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 53.2%; /* 1000x532 aspect ratio */
  overflow: hidden;
  border-radius: 12px;
}

.wp-block-agropex-hero-cards .agropex-hero-cards__card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.wp-block-agropex-hero-cards .agropex-hero-cards__card:hover .agropex-hero-cards__card-image {
  transform: scale(1.05);
}

/* Placeholder styles */
.wp-block-agropex-hero-cards .agropex-hero-cards__card-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 14px;
}

/* Link overlay */
.wp-block-agropex-hero-cards .agropex-hero-cards__card-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  text-decoration: none;
}

.wp-block-agropex-hero-cards .agropex-hero-cards__card-link:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
  .wp-block-agropex-hero-cards .agropex-hero-cards__card-aspect-ratio {
    border-radius: 8px;
    padding-bottom: 60%; /* Slightly taller on mobile */
  }
}

