/* Custom Blocks Styles */

#custom-container {
  background-color: white;
  padding: 40px 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.customblock-item {
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customblock-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.customblock-item img {
  width: 44px;
  height: auto;
  margin-right: 16px;
    /*transition: transform 0.3s ease;*/
}

/*.customblock-item:hover img {
    transform: scale(1.05);
}*/

.customblock-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.customblock-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.custom-txt {
  /*position: absolute;
  left:20px;
  width: 250px;
  top: 50%;
  transform: translateY(-50%);*/
  line-height: 1.35;
  font-size: 14px;
}

/*.custom-txt h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.15;
}*/

.custom-txt strong {
  font-weight: 700;
  
}

.custom-txt p {
  font-weight: 500;
  
}

.customblock-item a:hover {
  color: unset;
}

/* Responsive */
@media (max-width: 767px) {
    .customblock-item {
        margin-bottom: 15px;
    }
    
    .customblock-title {
        font-size: 16px;
    }
}

#custom-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 32px;
}

#custom-blocks .customblock-item {
  color: #000;
}

.customblock-item::after {
    content: '';
    position: absolute;
    right: -16px; /* połowa gap (32px / 2) */
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background-color: #E5E5E5;
}

.customblock-item:last-child::after {
    display: none;
}