.mk-separator-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    margin: 32px 0;
    gap: 16px;
}
.mk-separator-line {
    flex: 1 1 0;
    height: 2px;
    background: #b71c1c;
    opacity: 0.5;
}
/* .mk-separator-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #b71c1c;
    background: #000;
    position: relative;
} */

.mk-separator-circle {
  text-align: center;
  margin: 20px 0;
}

.separator-icon {
  width: 25px;  /* adjust to your need */
  height: auto;
  display: inline-block;
}

.mk-separator-inner {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #b71c1c;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} 