/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 14 2026 | 13:18:25 */
.blog-list ol {
  list-style: none;
  counter-reset: item;
  padding: 0;
}

.blog-list li {
  counter-increment: item;
  position: relative;
  padding-left: 60px;
  margin-bottom: 25px;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.blog-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  
  width: 36px;
  height: 36px;
  background: #d90a2c; /* marker color */
  color: #fff;
  font-weight: bold;
  font-size: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index:6;
  clip-path: polygon(
    50% 0%, 
    100% 38%, 
    82% 100%, 
    18% 100%, 
    0% 38%
  );
}
.blog-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
    top: 20px;
    width: 4px;
    height: calc(100% + 15px);
    background: #f9a6b3;
    z-index: 0;
}
