.tugas-wewenang-section {
    position: relative;
    overflow: hidden;
}

.section-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-header-custom {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.tugas-header {
    background: linear-gradient(135deg, var(--primary) 50%, #111827 100%);
    color: white;
}

.wewenang-header {
    background: linear-gradient(135deg, var(--primary) 50%, #111827 100%);
    color: white;
}

.header-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.card-title-custom {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.card-subtitle-custom {
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.card-body-custom {
    padding: 2rem;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-item {
    display: flex;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.list-item:last-child {
    margin-bottom: 0;
}

.list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-right: 1rem;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 1rem;
}

.tugas-list .list-icon {
    color: var(--primary);
    background: rgba(31, 41, 55, 0.1);
}

.wewenang-list .list-icon {
    color: var(--secondary);
    background: rgba(8, 58, 84, 0.1);
}

.list-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
    align-self: center;
}