.miko-custom-post{
    position: relative;
}
.miko-custom-post::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 87px);
    width: 3px;
    background-color: #00AEEF;
    left: calc(87px / 2);
}
.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all .3s ease-in-out;
    z-index: 1;
}
.timeline-item:hover{
    filter: drop-shadow(2px 4px 12px rgba(46, 49, 146, 0.25));
}
.timeline-item + .timeline-item {
    margin-top: 24px;
}

/* ===== CIRCLE ===== */
.timeline-circle {    
    position: relative;
}

.timeline-circle span {
    width: 87px;
    height: 87px;
    border: 12px solid #FAFAFA;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: #252775;
}
/* ===== NOTCH (lõm) ===== */
.timeline-circle::after {
    content: '';
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAA+CAYAAADNl/AZAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAADySURBVHja7NfBTQMxEAXQ+d61z5sOXEJK2A6gA9JB6CTpgHQSqACoIHRAbuP9exguRAKEQMnkOCP5+mx9/8uIOIfkMol/lm5hnue9FxhJmjePA0lLDmArIlVERMxsuAQgaacj0zQdSN6dkcHzV4Ck4RSMmb0B2AJ47fv+BcDRzIbW2tB13Q2AWzMbf8PhTldErlG2QAIJJJBAAgkkkEACCeSqyGNKaZVzrqUUlFKQc14AGEVk99fuYiT3qlr/u1FVK8mHn6uKtNbW5z6/tXb/Dbl0VHXlRj43sY0bMbOB5LvriwEcAezcPQHw5C6aqtaPAQCUFLdqgthrcwAAAABJRU5ErkJggg==);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: calc(100% - 8px);
    width: 17px;
    height: 62px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
/* ===== CARD ===== */
.timeline-box {
    position: relative;
    background: #FAFAFA;
    padding: 16px 24px;
    border-radius: 18px;
    width: 100%;
}

.timeline-box .title{
    color: #F58220;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 0.5rem;
}
.timeline-box .desc{
    font-size: 14px;
    color: #676767;
    line-height: normal;
}

.miko-item-custom{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: white;
    padding: 6px;
    border-radius: 4px;
    gap: 1rem;
}
.miko-item-custom .miko-item-image{
    border-radius: 4px;
    overflow: hidden;
}
.miko-item-custom .miko-item-title{
    color: #252775;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
}
.miko-item-custom .miko-item-description{
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: #000000;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.miko-item-custom .miko-item-link a{
    font-size: 14px;
    color: #676767;
    text-decoration: underline!important;
}
.elementor-widget-miko_custom_post .swiper-button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
}
.elementor-widget-miko_custom_post .swiper-button.swiper-next{
    right: -2.5rem;
}
.elementor-widget-miko_custom_post .swiper-button.swiper-prev{
    left: -2.5rem;
}

@media screen and (max-width: 1024px) {
    .elementor-widget-miko_custom_post .swiper-button.swiper-next{
        right: 0rem;
    }
    .elementor-widget-miko_custom_post .swiper-button.swiper-prev{
        left: 0rem;
    }
}
@media screen and (max-width: 767px) {
    .timeline-box .title{
        font-size: 20px;
    }
}