.lingkar-box {
    width: 100%;
    margin-bottom: 20px;
}

.lingkar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    padding: 25px;
    background: #f5f5f5;
}

.lingkar-bg {
    position: absolute;
    inset: -10px;
   background-image: url('/index/image/axecutive.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.lingkar-panel {
    position: relative;
    margin-left: auto;
    width: 380px;
    max-height: 300px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.lingkar-panel h3 {
    font-size: 16px;
    font-weight: 700;
    color: #d40000;
    margin-bottom: 12px;
}

.lingkar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lingkar-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #222;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.lingkar-item:last-child {
    border-bottom: none;
}

.lingkar-text {
    flex: 1;
}

.lingkar-text:hover,
.lingkar-text:hover * {
    color: #DC0000;
}

.lingkar-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

.lingkar-text span {
    font-size: 12px;
    color: #777;
}

.lingkar-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.lingkar-panel::-webkit-scrollbar {
    width: 6px;
}

.lingkar-panel::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.lingkar-panel::-webkit-scrollbar-track {
    background: transparent;
}

@media (max-width: 847px) {
    .lingkar-wrapper {
        flex-direction: column;
        height: 500px;
        position: relative;
    }

    .lingkar-panel {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: auto;
        margin: 0;
    }
}

@media (max-width: 847px) {
    .lingkar-bg {
        background-size: contain;
        background-repeat: round;
    }
}