/**
 * 2007-2024 PrestaShop
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 *
 * @author    Régis Daum
 * @copyright 2007-2024
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

.johnsteel-homeblocks-container {
  margin: 40px 0;
}

.johnsteel-homeblocks-container .homeblock-item {
  padding: 60px 0;
  margin-bottom: 0;
  width: 100%;
}

.johnsteel-homeblocks-container .homeblock-item:nth-child(even) {
  background-color: #f8f9fa;
}

.johnsteel-homeblocks-container .homeblock-item:nth-child(odd) {
  background-color: #ffffff;
}

.johnsteel-homeblocks-container .homeblock-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.johnsteel-homeblocks-container
  .homeblock-item:nth-child(even)
  .homeblock-inner {
  flex-direction: row-reverse;
}

.johnsteel-homeblocks-container .homeblock-image {
  flex: 0 0 450px;
  max-width: 450px;
  text-align: center;
}

.johnsteel-homeblocks-container .homeblock-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.johnsteel-homeblocks-container .homeblock-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.johnsteel-homeblocks-container .homeblock-content {
  flex: 1;
  min-width: 0;
}

.johnsteel-homeblocks-container .homeblock-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
}

.johnsteel-homeblocks-container .homeblock-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.johnsteel-homeblocks-container .homeblock-description p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.johnsteel-homeblocks-container .homeblock-description p:last-child {
  margin-bottom: 0;
}

.johnsteel-homeblocks-container .homeblock-description ul,
.johnsteel-homeblocks-container .homeblock-description ol {
  margin-bottom: 15px;
  padding-left: 30px;
}

.johnsteel-homeblocks-container .homeblock-description li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .johnsteel-homeblocks-container .homeblock-item {
    padding: 40px 0;
  }

  .johnsteel-homeblocks-container .homeblock-inner {
    flex-direction: column !important;
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .johnsteel-homeblocks-container .homeblock-content {
    padding: 0;
  }

  .johnsteel-homeblocks-container .homeblock-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .johnsteel-homeblocks-container .homeblock-description {
    font-size: 1rem;
  }

  .johnsteel-homeblocks-container .homeblock-image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
}
