/**
 * Featured Cash Products Styles
 * Shortcode: [featured_cash_products]
 */

.featured-cash-products {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 20px;
}

.featured-cash__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 32px;
  text-align: left;
}

.featured-cash__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.featured-cash-card {
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-cash-card:hover {
  border-color: #389F70;
  box-shadow: 0 6px 20px rgba(56,159,112,0.15);
  transform: translateY(-4px);
}

.featured-cash-link {
  display: block;
  text-decoration: none;
  text-align: center;
}

.featured-cash-logo {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  border-radius: 6px;
  overflow: hidden;

}

.featured-cash-logo img {
  width: 100%;
  object-fit: contain;
}

.featured-cash-info {
  margin-top: 12px;
}

.featured-cash-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .featured-cash__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .featured-cash__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }



  .featured-cash-logo {
    height: 60px;
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
  }

  .featured-cash-subtitle {
    font-size: 0.85rem;
  }
}

@media only screen and (max-width: 480px) {
  .featured-cash-products {
    margin-top: 20px
  }

  .featured-cash__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .featured-cash__title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .featured-cash-card {
    border-width: 1px;
  }



  .featured-cash-logo {
    height: 120px;
  }
}
